From e43ff64c4052d329c3c373c1fd8417740b65ce16 Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Mon, 11 Nov 2024 14:17:34 +0100 Subject: [PATCH] examples: Fix schelling viz Fix the Schelling visualisation --- mesa/examples/basic/schelling/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesa/examples/basic/schelling/app.py b/mesa/examples/basic/schelling/app.py index 73492fa07b6..933b3c2703d 100644 --- a/mesa/examples/basic/schelling/app.py +++ b/mesa/examples/basic/schelling/app.py @@ -26,7 +26,7 @@ def agent_portrayal(agent): "height": 20, } -model1 = Schelling(20, 20, 0.8, 0.2, 3) +model1 = Schelling() HappyPlot = make_plot_component({"happy": "tab:green"})