From 2a04e7917a4f3b71a78207f1912871bdbbba6976 Mon Sep 17 00:00:00 2001 From: Sam Date: Mon, 16 Jun 2025 15:56:12 -0500 Subject: [PATCH] Change mutation frequency in behavioral model to every 100 ticks for improved performance --- world/objects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/world/objects.py b/world/objects.py index 2ec8f4b..86181d9 100644 --- a/world/objects.py +++ b/world/objects.py @@ -273,7 +273,7 @@ class DefaultCell(BaseEntity): :return: Self. """ self.tick_count += 1 - if self.tick_count % 2 == 0: + if self.tick_count % 100 == 0: self.behavioral_model = self.behavioral_model.mutate(1) if interactable is None: