├── .coderabbit.yaml ├── .codespellignore ├── .coveragerc ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ └── feature-request.md ├── PULL_REQUEST_TEMPLATE │ ├── bug.md │ └── feature.md ├── dependabot.yml ├── pull_request_template.md ├── release.yml └── workflows │ ├── benchmarks.yml │ ├── build_lint.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── HISTORY.md ├── LICENSE ├── NOTICE ├── README.md ├── benchmarks ├── README.md ├── compare_timings.py ├── configurations.py └── global_benchmark.py ├── binder └── environment.yml ├── codecov.yaml ├── docker-compose.yml ├── docs ├── GSoC.md ├── Makefile ├── README.md ├── apis │ ├── agent.md │ ├── api_main.md │ ├── batchrunner.md │ ├── datacollection.md │ ├── discrete_space.md │ ├── experimental.md │ ├── mesa_logging.md │ ├── model.md │ ├── space.md │ └── visualization.md ├── best-practices.md ├── conf.py ├── example_template.txt ├── examples_overview_template.txt ├── getting_started.md ├── images │ ├── Discrete_Space.drawio.png │ ├── mesa_logo.ico │ ├── mesa_logo.png │ └── wolf_sheep.png ├── index.md ├── make.bat ├── mesa.md ├── mesa_extension.md ├── migration_guide.md ├── overview.md └── tutorials │ ├── 0_first_model.ipynb │ ├── 10_comparing_scenarios.ipynb │ ├── 1_adding_space.ipynb │ ├── 2_collecting_data.ipynb │ ├── 3_agentset.ipynb │ ├── 4_visualization_basic.ipynb │ ├── 5_visualization_dynamic_agents.ipynb │ ├── 6_visualization_rendering_with_space_renderer.ipynb │ ├── 7_visualization_propertylayer_visualization.ipynb │ ├── 8_visualization_custom.ipynb │ └── 9_batch_run.ipynb ├── flake.lock ├── flake.nix ├── maintenance └── fetch_unlabeled_prs.py ├── mesa ├── __init__.py ├── agent.py ├── batchrunner.py ├── datacollection.py ├── discrete_space │ ├── __init__.py │ ├── cell.py │ ├── cell_agent.py │ ├── cell_collection.py │ ├── discrete_space.py │ ├── grid.py │ ├── network.py │ ├── property_layer.py │ └── voronoi.py ├── examples │ ├── README.md │ ├── __init__.py │ ├── advanced │ │ ├── __init__.py │ │ ├── alliance_formation │ │ │ ├── Readme.md │ │ │ ├── __init__ .py │ │ │ ├── agents.py │ │ │ ├── app.py │ │ │ └── model.py │ │ ├── epstein_civil_violence │ │ │ ├── Epstein Civil Violence.ipynb │ │ │ ├── Readme.md │ │ │ ├── __init__.py │ │ │ ├── agents.py │ │ │ ├── app.py │ │ │ └── model.py │ │ ├── pd_grid │ │ │ ├── Readme.md │ │ │ ├── __init__.py │ │ │ ├── agents.py │ │ │ ├── analysis.ipynb │ │ │ ├── app.py │ │ │ └── model.py │ │ ├── sugarscape_g1mt │ │ │ ├── Readme.md │ │ │ ├── __init__.py │ │ │ ├── agents.py │ │ │ ├── app.py │ │ │ ├── model.py │ │ │ └── sugar-map.txt │ │ └── wolf_sheep │ │ │ ├── Readme.md │ │ │ ├── __init__.py │ │ │ ├── agents.py │ │ │ ├── app.py │ │ │ └── model.py │ └── basic │ │ ├── __init__.py │ │ ├── boid_flockers │ │ ├── Readme.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── app.py │ │ └── model.py │ │ ├── boltzmann_wealth_model │ │ ├── Readme.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── app.py │ │ ├── model.py │ │ └── st_app.py │ │ ├── conways_game_of_life │ │ ├── Readme.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── app.py │ │ ├── model.py │ │ └── st_app.py │ │ ├── schelling │ │ ├── Readme.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── analysis.ipynb │ │ ├── app.py │ │ ├── model.py │ │ └── resources │ │ │ ├── blue_happy.png │ │ │ ├── blue_unhappy.png │ │ │ ├── orange_happy.png │ │ │ └── orange_unhappy.png │ │ └── virus_on_network │ │ ├── Readme.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── app.py │ │ └── model.py ├── experimental │ ├── __init__.py │ ├── cell_space │ │ └── __init__.py │ ├── continuous_space │ │ ├── __init__.py │ │ ├── continuous_space.py │ │ └── continuous_space_agents.py │ ├── devs │ │ ├── __init__.py │ │ ├── eventlist.py │ │ └── simulator.py │ ├── mesa_signals │ │ ├── __init__.py │ │ ├── mesa_signal.py │ │ ├── observable_collections.py │ │ └── signals_util.py │ └── meta_agents │ │ ├── __init__.py │ │ └── meta_agent.py ├── mesa_logging.py ├── model.py ├── space.py └── visualization │ ├── __init__.py │ ├── backends │ ├── __init__.py │ ├── abstract_renderer.py │ ├── altair_backend.py │ └── matplotlib_backend.py │ ├── command_console.py │ ├── components │ ├── __init__.py │ ├── altair_components.py │ ├── matplotlib_components.py │ └── portrayal_components.py │ ├── mpl_space_drawing.py │ ├── solara_viz.py │ ├── space_drawers.py │ ├── space_renderer.py │ ├── user_param.py │ └── utils.py ├── mypy.ini ├── pyproject.toml ├── tests ├── __init__.py ├── read_requirements.py ├── test_agent.py ├── test_backends.py ├── test_batch_run.py ├── test_components_matplotlib.py ├── test_continuous_space.py ├── test_datacollector.py ├── test_devs.py ├── test_discrete_space.py ├── test_end_to_end_viz.sh ├── test_examples.py ├── test_examples_viz.py ├── test_grid.py ├── test_import_namespace.py ├── test_lifespan.py ├── test_mesa_logging.py ├── test_mesa_signals.py ├── test_meta_agents.py ├── test_model.py ├── test_portrayal_components.py ├── test_solara_viz.py ├── test_solara_viz_updated.py ├── test_space.py ├── test_space_drawer.py └── test_space_renderer.py └── uv.lock /.coderabbit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/.coderabbit.yaml -------------------------------------------------------------------------------- /.codespellignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/.codespellignore -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/.github/PULL_REQUEST_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/.github/PULL_REQUEST_TEMPLATE/feature.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/benchmarks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/.github/workflows/benchmarks.yml -------------------------------------------------------------------------------- /.github/workflows/build_lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/.github/workflows/build_lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/Dockerfile -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/benchmarks/README.md -------------------------------------------------------------------------------- /benchmarks/compare_timings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/benchmarks/compare_timings.py -------------------------------------------------------------------------------- /benchmarks/configurations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/benchmarks/configurations.py -------------------------------------------------------------------------------- /benchmarks/global_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/benchmarks/global_benchmark.py -------------------------------------------------------------------------------- /binder/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/binder/environment.yml -------------------------------------------------------------------------------- /codecov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/codecov.yaml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/GSoC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/GSoC.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/apis/agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/apis/agent.md -------------------------------------------------------------------------------- /docs/apis/api_main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/apis/api_main.md -------------------------------------------------------------------------------- /docs/apis/batchrunner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/apis/batchrunner.md -------------------------------------------------------------------------------- /docs/apis/datacollection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/apis/datacollection.md -------------------------------------------------------------------------------- /docs/apis/discrete_space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/apis/discrete_space.md -------------------------------------------------------------------------------- /docs/apis/experimental.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/apis/experimental.md -------------------------------------------------------------------------------- /docs/apis/mesa_logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/apis/mesa_logging.md -------------------------------------------------------------------------------- /docs/apis/model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/apis/model.md -------------------------------------------------------------------------------- /docs/apis/space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/apis/space.md -------------------------------------------------------------------------------- /docs/apis/visualization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/apis/visualization.md -------------------------------------------------------------------------------- /docs/best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/best-practices.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/example_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/example_template.txt -------------------------------------------------------------------------------- /docs/examples_overview_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/examples_overview_template.txt -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/images/Discrete_Space.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/images/Discrete_Space.drawio.png -------------------------------------------------------------------------------- /docs/images/mesa_logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/images/mesa_logo.ico -------------------------------------------------------------------------------- /docs/images/mesa_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/images/mesa_logo.png -------------------------------------------------------------------------------- /docs/images/wolf_sheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/images/wolf_sheep.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/mesa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/mesa.md -------------------------------------------------------------------------------- /docs/mesa_extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/mesa_extension.md -------------------------------------------------------------------------------- /docs/migration_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/migration_guide.md -------------------------------------------------------------------------------- /docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/overview.md -------------------------------------------------------------------------------- /docs/tutorials/0_first_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/tutorials/0_first_model.ipynb -------------------------------------------------------------------------------- /docs/tutorials/10_comparing_scenarios.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/tutorials/10_comparing_scenarios.ipynb -------------------------------------------------------------------------------- /docs/tutorials/1_adding_space.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/tutorials/1_adding_space.ipynb -------------------------------------------------------------------------------- /docs/tutorials/2_collecting_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/tutorials/2_collecting_data.ipynb -------------------------------------------------------------------------------- /docs/tutorials/3_agentset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/tutorials/3_agentset.ipynb -------------------------------------------------------------------------------- /docs/tutorials/4_visualization_basic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/tutorials/4_visualization_basic.ipynb -------------------------------------------------------------------------------- /docs/tutorials/5_visualization_dynamic_agents.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/tutorials/5_visualization_dynamic_agents.ipynb -------------------------------------------------------------------------------- /docs/tutorials/6_visualization_rendering_with_space_renderer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/tutorials/6_visualization_rendering_with_space_renderer.ipynb -------------------------------------------------------------------------------- /docs/tutorials/7_visualization_propertylayer_visualization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/tutorials/7_visualization_propertylayer_visualization.ipynb -------------------------------------------------------------------------------- /docs/tutorials/8_visualization_custom.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/tutorials/8_visualization_custom.ipynb -------------------------------------------------------------------------------- /docs/tutorials/9_batch_run.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/docs/tutorials/9_batch_run.ipynb -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/flake.nix -------------------------------------------------------------------------------- /maintenance/fetch_unlabeled_prs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/maintenance/fetch_unlabeled_prs.py -------------------------------------------------------------------------------- /mesa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/__init__.py -------------------------------------------------------------------------------- /mesa/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/agent.py -------------------------------------------------------------------------------- /mesa/batchrunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/batchrunner.py -------------------------------------------------------------------------------- /mesa/datacollection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/datacollection.py -------------------------------------------------------------------------------- /mesa/discrete_space/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/discrete_space/__init__.py -------------------------------------------------------------------------------- /mesa/discrete_space/cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/discrete_space/cell.py -------------------------------------------------------------------------------- /mesa/discrete_space/cell_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/discrete_space/cell_agent.py -------------------------------------------------------------------------------- /mesa/discrete_space/cell_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/discrete_space/cell_collection.py -------------------------------------------------------------------------------- /mesa/discrete_space/discrete_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/discrete_space/discrete_space.py -------------------------------------------------------------------------------- /mesa/discrete_space/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/discrete_space/grid.py -------------------------------------------------------------------------------- /mesa/discrete_space/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/discrete_space/network.py -------------------------------------------------------------------------------- /mesa/discrete_space/property_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/discrete_space/property_layer.py -------------------------------------------------------------------------------- /mesa/discrete_space/voronoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/discrete_space/voronoi.py -------------------------------------------------------------------------------- /mesa/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/README.md -------------------------------------------------------------------------------- /mesa/examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/__init__.py -------------------------------------------------------------------------------- /mesa/examples/advanced/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mesa/examples/advanced/alliance_formation/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/advanced/alliance_formation/Readme.md -------------------------------------------------------------------------------- /mesa/examples/advanced/alliance_formation/__init__ .py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mesa/examples/advanced/alliance_formation/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/advanced/alliance_formation/agents.py -------------------------------------------------------------------------------- /mesa/examples/advanced/alliance_formation/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/advanced/alliance_formation/app.py -------------------------------------------------------------------------------- /mesa/examples/advanced/alliance_formation/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/advanced/alliance_formation/model.py -------------------------------------------------------------------------------- /mesa/examples/advanced/epstein_civil_violence/Epstein Civil Violence.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/advanced/epstein_civil_violence/Epstein Civil Violence.ipynb -------------------------------------------------------------------------------- /mesa/examples/advanced/epstein_civil_violence/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/advanced/epstein_civil_violence/Readme.md -------------------------------------------------------------------------------- /mesa/examples/advanced/epstein_civil_violence/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mesa/examples/advanced/epstein_civil_violence/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/advanced/epstein_civil_violence/agents.py -------------------------------------------------------------------------------- /mesa/examples/advanced/epstein_civil_violence/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/advanced/epstein_civil_violence/app.py -------------------------------------------------------------------------------- /mesa/examples/advanced/epstein_civil_violence/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/advanced/epstein_civil_violence/model.py -------------------------------------------------------------------------------- /mesa/examples/advanced/pd_grid/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/advanced/pd_grid/Readme.md -------------------------------------------------------------------------------- /mesa/examples/advanced/pd_grid/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mesa/examples/advanced/pd_grid/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/advanced/pd_grid/agents.py -------------------------------------------------------------------------------- /mesa/examples/advanced/pd_grid/analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/advanced/pd_grid/analysis.ipynb -------------------------------------------------------------------------------- /mesa/examples/advanced/pd_grid/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/advanced/pd_grid/app.py -------------------------------------------------------------------------------- /mesa/examples/advanced/pd_grid/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/advanced/pd_grid/model.py -------------------------------------------------------------------------------- /mesa/examples/advanced/sugarscape_g1mt/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/advanced/sugarscape_g1mt/Readme.md -------------------------------------------------------------------------------- /mesa/examples/advanced/sugarscape_g1mt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mesa/examples/advanced/sugarscape_g1mt/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/advanced/sugarscape_g1mt/agents.py -------------------------------------------------------------------------------- /mesa/examples/advanced/sugarscape_g1mt/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/advanced/sugarscape_g1mt/app.py -------------------------------------------------------------------------------- /mesa/examples/advanced/sugarscape_g1mt/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/advanced/sugarscape_g1mt/model.py -------------------------------------------------------------------------------- /mesa/examples/advanced/sugarscape_g1mt/sugar-map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/advanced/sugarscape_g1mt/sugar-map.txt -------------------------------------------------------------------------------- /mesa/examples/advanced/wolf_sheep/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/advanced/wolf_sheep/Readme.md -------------------------------------------------------------------------------- /mesa/examples/advanced/wolf_sheep/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mesa/examples/advanced/wolf_sheep/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/advanced/wolf_sheep/agents.py -------------------------------------------------------------------------------- /mesa/examples/advanced/wolf_sheep/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/advanced/wolf_sheep/app.py -------------------------------------------------------------------------------- /mesa/examples/advanced/wolf_sheep/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/advanced/wolf_sheep/model.py -------------------------------------------------------------------------------- /mesa/examples/basic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mesa/examples/basic/boid_flockers/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/boid_flockers/Readme.md -------------------------------------------------------------------------------- /mesa/examples/basic/boid_flockers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mesa/examples/basic/boid_flockers/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/boid_flockers/agents.py -------------------------------------------------------------------------------- /mesa/examples/basic/boid_flockers/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/boid_flockers/app.py -------------------------------------------------------------------------------- /mesa/examples/basic/boid_flockers/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/boid_flockers/model.py -------------------------------------------------------------------------------- /mesa/examples/basic/boltzmann_wealth_model/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/boltzmann_wealth_model/Readme.md -------------------------------------------------------------------------------- /mesa/examples/basic/boltzmann_wealth_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mesa/examples/basic/boltzmann_wealth_model/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/boltzmann_wealth_model/agents.py -------------------------------------------------------------------------------- /mesa/examples/basic/boltzmann_wealth_model/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/boltzmann_wealth_model/app.py -------------------------------------------------------------------------------- /mesa/examples/basic/boltzmann_wealth_model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/boltzmann_wealth_model/model.py -------------------------------------------------------------------------------- /mesa/examples/basic/boltzmann_wealth_model/st_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/boltzmann_wealth_model/st_app.py -------------------------------------------------------------------------------- /mesa/examples/basic/conways_game_of_life/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/conways_game_of_life/Readme.md -------------------------------------------------------------------------------- /mesa/examples/basic/conways_game_of_life/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mesa/examples/basic/conways_game_of_life/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/conways_game_of_life/agents.py -------------------------------------------------------------------------------- /mesa/examples/basic/conways_game_of_life/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/conways_game_of_life/app.py -------------------------------------------------------------------------------- /mesa/examples/basic/conways_game_of_life/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/conways_game_of_life/model.py -------------------------------------------------------------------------------- /mesa/examples/basic/conways_game_of_life/st_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/conways_game_of_life/st_app.py -------------------------------------------------------------------------------- /mesa/examples/basic/schelling/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/schelling/Readme.md -------------------------------------------------------------------------------- /mesa/examples/basic/schelling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mesa/examples/basic/schelling/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/schelling/agents.py -------------------------------------------------------------------------------- /mesa/examples/basic/schelling/analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/schelling/analysis.ipynb -------------------------------------------------------------------------------- /mesa/examples/basic/schelling/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/schelling/app.py -------------------------------------------------------------------------------- /mesa/examples/basic/schelling/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/schelling/model.py -------------------------------------------------------------------------------- /mesa/examples/basic/schelling/resources/blue_happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/schelling/resources/blue_happy.png -------------------------------------------------------------------------------- /mesa/examples/basic/schelling/resources/blue_unhappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/schelling/resources/blue_unhappy.png -------------------------------------------------------------------------------- /mesa/examples/basic/schelling/resources/orange_happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/schelling/resources/orange_happy.png -------------------------------------------------------------------------------- /mesa/examples/basic/schelling/resources/orange_unhappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/schelling/resources/orange_unhappy.png -------------------------------------------------------------------------------- /mesa/examples/basic/virus_on_network/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/virus_on_network/Readme.md -------------------------------------------------------------------------------- /mesa/examples/basic/virus_on_network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mesa/examples/basic/virus_on_network/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/virus_on_network/agents.py -------------------------------------------------------------------------------- /mesa/examples/basic/virus_on_network/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/virus_on_network/app.py -------------------------------------------------------------------------------- /mesa/examples/basic/virus_on_network/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/examples/basic/virus_on_network/model.py -------------------------------------------------------------------------------- /mesa/experimental/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/experimental/__init__.py -------------------------------------------------------------------------------- /mesa/experimental/cell_space/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/experimental/cell_space/__init__.py -------------------------------------------------------------------------------- /mesa/experimental/continuous_space/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/experimental/continuous_space/__init__.py -------------------------------------------------------------------------------- /mesa/experimental/continuous_space/continuous_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/experimental/continuous_space/continuous_space.py -------------------------------------------------------------------------------- /mesa/experimental/continuous_space/continuous_space_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/experimental/continuous_space/continuous_space_agents.py -------------------------------------------------------------------------------- /mesa/experimental/devs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/experimental/devs/__init__.py -------------------------------------------------------------------------------- /mesa/experimental/devs/eventlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/experimental/devs/eventlist.py -------------------------------------------------------------------------------- /mesa/experimental/devs/simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/experimental/devs/simulator.py -------------------------------------------------------------------------------- /mesa/experimental/mesa_signals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/experimental/mesa_signals/__init__.py -------------------------------------------------------------------------------- /mesa/experimental/mesa_signals/mesa_signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/experimental/mesa_signals/mesa_signal.py -------------------------------------------------------------------------------- /mesa/experimental/mesa_signals/observable_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/experimental/mesa_signals/observable_collections.py -------------------------------------------------------------------------------- /mesa/experimental/mesa_signals/signals_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/experimental/mesa_signals/signals_util.py -------------------------------------------------------------------------------- /mesa/experimental/meta_agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/experimental/meta_agents/__init__.py -------------------------------------------------------------------------------- /mesa/experimental/meta_agents/meta_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/experimental/meta_agents/meta_agent.py -------------------------------------------------------------------------------- /mesa/mesa_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/mesa_logging.py -------------------------------------------------------------------------------- /mesa/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/model.py -------------------------------------------------------------------------------- /mesa/space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/space.py -------------------------------------------------------------------------------- /mesa/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/visualization/__init__.py -------------------------------------------------------------------------------- /mesa/visualization/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/visualization/backends/__init__.py -------------------------------------------------------------------------------- /mesa/visualization/backends/abstract_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/visualization/backends/abstract_renderer.py -------------------------------------------------------------------------------- /mesa/visualization/backends/altair_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/visualization/backends/altair_backend.py -------------------------------------------------------------------------------- /mesa/visualization/backends/matplotlib_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/visualization/backends/matplotlib_backend.py -------------------------------------------------------------------------------- /mesa/visualization/command_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/visualization/command_console.py -------------------------------------------------------------------------------- /mesa/visualization/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/visualization/components/__init__.py -------------------------------------------------------------------------------- /mesa/visualization/components/altair_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/visualization/components/altair_components.py -------------------------------------------------------------------------------- /mesa/visualization/components/matplotlib_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/visualization/components/matplotlib_components.py -------------------------------------------------------------------------------- /mesa/visualization/components/portrayal_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/visualization/components/portrayal_components.py -------------------------------------------------------------------------------- /mesa/visualization/mpl_space_drawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/visualization/mpl_space_drawing.py -------------------------------------------------------------------------------- /mesa/visualization/solara_viz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/visualization/solara_viz.py -------------------------------------------------------------------------------- /mesa/visualization/space_drawers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/visualization/space_drawers.py -------------------------------------------------------------------------------- /mesa/visualization/space_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/visualization/space_renderer.py -------------------------------------------------------------------------------- /mesa/visualization/user_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/visualization/user_param.py -------------------------------------------------------------------------------- /mesa/visualization/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mesa/visualization/utils.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/mypy.ini -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """init of tests.""" 2 | -------------------------------------------------------------------------------- /tests/read_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/read_requirements.py -------------------------------------------------------------------------------- /tests/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_agent.py -------------------------------------------------------------------------------- /tests/test_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_backends.py -------------------------------------------------------------------------------- /tests/test_batch_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_batch_run.py -------------------------------------------------------------------------------- /tests/test_components_matplotlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_components_matplotlib.py -------------------------------------------------------------------------------- /tests/test_continuous_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_continuous_space.py -------------------------------------------------------------------------------- /tests/test_datacollector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_datacollector.py -------------------------------------------------------------------------------- /tests/test_devs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_devs.py -------------------------------------------------------------------------------- /tests/test_discrete_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_discrete_space.py -------------------------------------------------------------------------------- /tests/test_end_to_end_viz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_end_to_end_viz.sh -------------------------------------------------------------------------------- /tests/test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_examples.py -------------------------------------------------------------------------------- /tests/test_examples_viz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_examples_viz.py -------------------------------------------------------------------------------- /tests/test_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_grid.py -------------------------------------------------------------------------------- /tests/test_import_namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_import_namespace.py -------------------------------------------------------------------------------- /tests/test_lifespan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_lifespan.py -------------------------------------------------------------------------------- /tests/test_mesa_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_mesa_logging.py -------------------------------------------------------------------------------- /tests/test_mesa_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_mesa_signals.py -------------------------------------------------------------------------------- /tests/test_meta_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_meta_agents.py -------------------------------------------------------------------------------- /tests/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_model.py -------------------------------------------------------------------------------- /tests/test_portrayal_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_portrayal_components.py -------------------------------------------------------------------------------- /tests/test_solara_viz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_solara_viz.py -------------------------------------------------------------------------------- /tests/test_solara_viz_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_solara_viz_updated.py -------------------------------------------------------------------------------- /tests/test_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_space.py -------------------------------------------------------------------------------- /tests/test_space_drawer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_space_drawer.py -------------------------------------------------------------------------------- /tests/test_space_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/tests/test_space_renderer.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectmesa/mesa/HEAD/uv.lock --------------------------------------------------------------------------------