Skip to content

Commit

Permalink
remove schedulers from benchmark models.
Browse files Browse the repository at this point in the history
  • Loading branch information
quaquel committed Sep 21, 2024
1 parent 7d29326 commit b6956f8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
1 change: 0 additions & 1 deletion benchmarks/BoltzmannWealth/boltzmann_wealth.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ def __init__(self, seed=None, n=100, width=10, height=10):
super().__init__(seed)
self.num_agents = n
self.grid = mesa.space.MultiGrid(width, height, True)
self.schedule = mesa.time.RandomActivation(self)
self.datacollector = mesa.DataCollector(
model_reporters={"Gini": compute_gini}, agent_reporters={"Wealth": "wealth"}
)
Expand Down
5 changes: 1 addition & 4 deletions benchmarks/Flocking/flocking.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ def __init__(
self.height = height
self.simulator = simulator

self.schedule = mesa.time.RandomActivation(self)
self.space = mesa.space.ContinuousSpace(self.width, self.height, True)
self.factors = {
"cohere": cohere,
Expand All @@ -138,12 +137,10 @@ def __init__(
**self.factors,
)
self.space.place_agent(boid, pos)
self.schedule.add(boid)

def step(self):
"""Run the model for one step."""
self.schedule.step()

self.agents.shuffle_do("step")

if __name__ == "__main__":
import time
Expand Down
4 changes: 1 addition & 3 deletions benchmarks/Schelling/schelling.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ def __init__(
self.minority_pc = minority_pc
self.simulator = simulator

self.schedule = RandomActivation(self)
self.grid = OrthogonalMooreGrid(
[height, width],
torus=True,
Expand All @@ -84,12 +83,11 @@ def __init__(
agent_type = 1 if self.random.random() < self.minority_pc else 0
agent = SchellingAgent(self, agent_type, radius, homophily)
agent.move_to(cell)
self.schedule.add(agent)

def step(self):
"""Run one step of the model."""
self.happy = 0 # Reset counter of happy agents
self.schedule.step()
self.agents.shuffle_do("step")


if __name__ == "__main__":
Expand Down

0 comments on commit b6956f8

Please sign in to comment.