AureumChaos / LEAP

A general purpose Library for Evolutionary Algorithms in Python.
Academic Free License v3.0
83 stars 19 forks source link

Fix viable individuals being double counted in steady_state #275

Closed lukepmccombs closed 1 year ago

lukepmccombs commented 1 year ago

When individuals are born, they are already added to the birth counter. When checking for viability, non-viable individuals are counted down (if told to do such), but viable individuals were counted again.

SigmaX commented 1 year ago

Just noting for now that this complements #273, which addresses a different manifestation of a similar issue.