Skip to content

Commit bb6eb11

Browse files
committed
config fixed
1 parent fd03237 commit bb6eb11

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

models/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class Config:
7373
grid_sizes: Tuple[int, ...] = (100, 200, 500, 1000)
7474

7575
# Default/fixed parameters
76-
prey_birth: float = 0.25
76+
prey_birth: float = 0.2
7777
prey_death: float = 0.05
7878
predator_birth: float = 0.8 # FIXME: Default predator death rate
7979
predator_death: float = 0.05 # FIXME: Default predator death rate
@@ -194,7 +194,7 @@ def estimate_runtime(self, n_cores: int = 32) -> str:
194194
n_prey_death=20,
195195
prey_birth=0.2,
196196
prey_death_range=(0.0, 0.20),
197-
predator_birth=0.8, #
197+
predator_birth=0.8,
198198
predator_death=0.05,
199199
n_replicates=30,
200200
warmup_steps=300,

scripts/experiments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ def run_phase1(cfg: Config, output_dir: Path, logger: logging.Logger) -> List[Di
337337
"""
338338
Phase 1: Parameter sweep to find critical point.
339339
340-
- 2D sweep of prey_birth × prey_death
340+
- 2D sweep of prey_birth prey_death
341341
- Both with and without evolution
342342
- Outputs: bifurcation data, cluster distributions
343343
"""

0 commit comments

Comments
 (0)