Skip to content

Commit 324d1c7

Browse files
committed
fixed prey death and birth
1 parent e205c98 commit 324d1c7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

models/config.py

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

7575
# Default/fixed parameters
76-
prey_birth: float = 0.80
76+
prey_birth: float = 0.25
7777
prey_death: float = 0.05
78-
predator_birth: float = 0.2 # FIXME: Default predator death rate
79-
predator_death: float = 0.1 # FIXME: Default predator death rate
78+
predator_birth: float = 0.8 # FIXME: Default predator death rate
79+
predator_death: float = 0.05 # FIXME: Default predator death rate
8080

8181
# Critical point (UPDATE AFTER PHASE 1)
8282
critical_prey_birth: float = 0.22 # FIXME: Change after obtaining results

0 commit comments

Comments
 (0)