Skip to content

Commit e205c98

Browse files
committed
fixed n_death_range
1 parent 4e733a8 commit e205c98

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

models/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class Config:
6666
"""Central configuration for all experiments."""
6767

6868
# Grid settings
69-
grid_size: int = 1000 #FIXME: Decide default configuration
69+
grid_size: int = 100 #FIXME: Decide default configuration
7070
densities: Tuple[float, float] = (0.30, 0.15) # (prey, predator) #FIXME: Default densities
7171

7272
# For FSS experiments: multiple grid sizes
@@ -193,7 +193,7 @@ def estimate_runtime(self, n_cores: int = 32) -> str:
193193
PHASE1_CONFIG = Config(
194194
grid_size=100,
195195
n_prey_birth=15,
196-
n_prey_death=15,
196+
n_prey_death=20,
197197
prey_birth_range=(0.10, 0.35),
198198
prey_death_range=(0.0, 0.20),
199199
n_replicates=30,

0 commit comments

Comments
 (0)