From 72d32f472d47ab7572805925e459670b885870b7 Mon Sep 17 00:00:00 2001 From: Jan Kwakkel Date: Mon, 9 Sep 2024 09:00:22 +0200 Subject: [PATCH] fix benchmarks --- benchmarks/Schelling/schelling.py | 2 +- benchmarks/WolfSheep/wolf_sheep.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmarks/Schelling/schelling.py b/benchmarks/Schelling/schelling.py index 47bf521e057..669c1477dd0 100644 --- a/benchmarks/Schelling/schelling.py +++ b/benchmarks/Schelling/schelling.py @@ -1,7 +1,7 @@ """Schelling separation for performance benchmarking.""" from mesa import Model -from mesa.experimental.cell_space import CellAgent, OrthogonalMooreGrid +from mesa.spaces import CellAgent, OrthogonalMooreGrid from mesa.time import RandomActivation diff --git a/benchmarks/WolfSheep/wolf_sheep.py b/benchmarks/WolfSheep/wolf_sheep.py index 0999fc77842..14863e0db30 100644 --- a/benchmarks/WolfSheep/wolf_sheep.py +++ b/benchmarks/WolfSheep/wolf_sheep.py @@ -10,7 +10,7 @@ import math from mesa import Model -from mesa.experimental.cell_space import CellAgent, OrthogonalVonNeumannGrid +from mesa.spaces import CellAgent, OrthogonalVonNeumannGrid from mesa.experimental.devs import ABMSimulator