mirror of
https://github.com/gsi-upm/soil
synced 2024-11-14 15:32:29 +00:00
22 lines
418 B
Python
22 lines
418 B
Python
|
from soil import BaseAgent, Environment, Simulation
|
||
|
|
||
|
|
||
|
class NoopAgent(BaseAgent):
|
||
|
num_calls = 0
|
||
|
|
||
|
def step(self):
|
||
|
self.num_calls += 1
|
||
|
|
||
|
class NoopEnvironment(Environment):
|
||
|
num_agents = 100
|
||
|
|
||
|
def init(self):
|
||
|
self.add_agents(NoopAgent, k=self.num_agents)
|
||
|
self.add_agent_reporter("num_calls")
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
from _config import *
|
||
|
|
||
|
run_sim(model=NoopEnvironment)
|