rht
rht
test2
Ignore this PR. I am experimenting with speeding up the CI pip install caching.
In the examples, currently it looks like this ```python server = ModularServer( BoltzmannWealthModelNetwork, [grid, chart], "Money Model", model_params ) server.port = 8521 ``` It would be cleaner as ```python server...
Consider if we can do this for Mesa examples: ```python import mesa.examples schelling = mesa.examples.Schelling schelling.ensure_dependencies() # will pip install the requirements schelling.run() # Without GUI schelling.run(gui=False) ```
If you look at https://github.com/projectmesa/mesa/graphs/traffic, #315 is the 3rd most visited page. This means that the readme of the examples are not clear enough to indicate that they must be...
In most cases, models are run with explicit, N number of steps. In case where it has a halting condition, it is easy to override `model.run_model` like this. E.g. for...
setup.py: We should use distutils.command.build and distutils.command.develop for the JS files setup
See https://github.com/projectmesa/mesa-geo/blob/aea39d4c33f7039d67680b0227ea0d058e5b8959/setup.py#L22-L35
run.py always contains a few lines of code. Should we merge it into server.py to simplify the coding convention? If people need to call `server.launch` from a different files (e.g....
Edit: even earlier question by @Holzhauer > Is there any way to prevent certain agents from being redrawn each tick on the CanvasGrid? I have e.g. wall and furniture agents...
**What's the problem this feature will solve?** The CI for PyPy has been always failing since the requirements update. I remembered that PyPy install, if not yet cache, takes a...
So that https://github.com/projectmesa/mesa/pull/1246#issuecomment-1088569868= can be automated in the CI.