You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is just the 1st step in supporting splitting of tribes: add the config file parameters that control its behavior and the model structure for supporting more than 1 model of when/how to split.
Add new parameters to config/Config struct and to mendel-defaults.ini:
popSizeToSplit
minGenToSplit
maxGenToSplit
SplitToNumPops
popSplitModel
Add skeleton code for split model implementation in pop/models.go and pop/population.go
Implement Population.ReadyToSplit():
returns total number of populations to split into (including itself), if:
current pop size >= popSizeToSplit and current gen >= minGenToSplit
or current gen >= maxGenToSplit
The text was updated successfully, but these errors were encountered:
This is just the 1st step in supporting splitting of tribes: add the config file parameters that control its behavior and the model structure for supporting more than 1 model of when/how to split.
config/Config
struct and tomendel-defaults.ini
:popSizeToSplit
minGenToSplit
maxGenToSplit
SplitToNumPops
popSplitModel
Population.ReadyToSplit()
:popSizeToSplit
and current gen >=minGenToSplit
maxGenToSplit
The text was updated successfully, but these errors were encountered: