mirror of
https://github.com/gsi-upm/soil
synced 2024-11-14 23:42:29 +00:00
8 lines
270 B
Python
8 lines
270 B
Python
from soil import Simulation
|
|
from social_wealth import MoneyEnv, graph_generator
|
|
|
|
sim = Simulation(name="mesa_sim", dump=False, max_steps=10, model=MoneyEnv, parameters=dict(generator=graph_generator, N=10, width=50, height=50))
|
|
|
|
if __name__ == "__main__":
|
|
sim.run()
|