From ab1376d28842efe3cf8678eea6b6c56c1ce9dfc7 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 b582e7af585..6f0cef494af 100644 --- a/benchmarks/Schelling/schelling.py +++ b/benchmarks/Schelling/schelling.py @@ -1,5 +1,5 @@ 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 ceb6efef8b8..3ea00f2c0d7 100644 --- a/benchmarks/WolfSheep/wolf_sheep.py +++ b/benchmarks/WolfSheep/wolf_sheep.py @@ -12,7 +12,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