David Masad

Results 10 comments of David Masad

This seems like a useful addition. A couple quick requests: - It looks like this was developed just before the recent change that added type annotations to the space module....

I like the way [tornado does it](https://github.com/tornadoweb/tornado), where the examples are part of the repo but not the manifest that gets packaged up for pypi.

It is possible, but we don't have a clear guide / tool on to how to do that now. The basic idea is that you need to deploy the model...

@LelandYan Have you made sure to force-refresh the page when it reruns (e.g. Ctrl/Cmd-F5)? Sometimes browsers cache some of the underlying JavaScript, and use the older version even when you've...

My suggestion for an alternative API is to make it explicit what's being returned. So `get_neighbors` would become `get_neighboring_agents` and `get_neighborhood` would become `get_neighboring_coordinates`. We could keep the old signatures...

My main concern with putting examples in a submodule is that submodules are hard to use even for moderately-experienced Git / GitHub users. Since the examples serve as de-facto tests,...

That's an interesting question. My inclination is to say that since the scheduler keeps track of time in a model, models should have just one scheduler. Check out the [custom...

Will create, add weighted selection.

My sense is that the median Mesa user will want the 'batteries included' installation with all the dependencies. Instead of asking users to specify `pip install mesa[all]` to get that...

I've started testing a solution with a settable number of actions per step, where available actions are added to an array and then chosen at random: https://github.com/dmasad/seaduck/blob/n.actions/seaduck.js#L171 The problem so...