ShrutiAppiah / Simulating-an-Economy-ABM

Simulation of reward tokens in a DAO ⚡️Employs multi-agent simulations and discrete-time Markov random fields.
MIT License
93 stars 19 forks source link

The network structure could be modeled with a graph instead of a square grid #7

Open rht opened 5 years ago

rht commented 5 years ago

With a random graph, this would better reflect the fact that DAO usually happens in the cyberspace.

ShrutiAppiah commented 3 years ago

That is certainly a possibility. Agent-based simulations can take many forms of representation - as a graph, as a population over a square grid, or not have a visual representation at all.

Check out https://github.com/ShrutiAppiah/rumor-mill for a system modelled as a graph

rht commented 3 years ago

Mesa has NetworkGrid (https://github.com/projectmesa/mesa/blob/d376920146ca0ec422286cb8434d86b74e64b2fa/mesa/space.py#L834), where it could be plugged into this repo without starting over from scratch.