Skip to content

Commit

Permalink
Note misleading DEATH_PROB config description
Browse files Browse the repository at this point in the history
  • Loading branch information
mmore500 authored Feb 15, 2024
1 parent 2d60fdf commit 7493c4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion avida-core/source/main/cAvidaConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ class cAvidaConfig {
CONFIG_ADD_VAR(PREFER_EMPTY, int, 1, "Overide BIRTH_METHOD to preferentially choose empty cells for offsping?");
CONFIG_ADD_VAR(ALLOW_PARENT, int, 1, "Should parents be considered when deciding where to place offspring?");
CONFIG_ADD_VAR(DISPERSAL_RATE, double, 0.0, "Rate of dispersal under birth method 11\n(poisson distributed random connection list hops)");
CONFIG_ADD_VAR(DEATH_PROB, double, 0.0, "Probability of death when dividing.");
CONFIG_ADD_VAR(DEATH_PROB, double, 0.0, "Probability of death when dividing. (@MAM: actually seems to be applied per-update?)");
CONFIG_ADD_VAR(DEATH_METHOD, int, 2, "When should death by old age occur?\n0 = Never\n1 = When executed AGE_LIMIT (+deviation) total instructions\n2 = When executed genome_length * AGE_LIMIT (+dev) instructions");
CONFIG_ADD_VAR(AGE_LIMIT, int, 20, "See DEATH_METHOD");
CONFIG_ADD_VAR(AGE_DEVIATION, int, 0, "Creates a normal distribution around AGE_LIMIT for time of death");
Expand Down

0 comments on commit 7493c4b

Please sign in to comment.