last changes

This commit is contained in:
2026-02-21 10:58:05 +01:00
parent 841bc7c805
commit 0902732f60
136 changed files with 10387 additions and 2015 deletions

17
mathema/settings.py Normal file
View File

@@ -0,0 +1,17 @@
"""
global parameters and settings for the
neuroevolutionary system.
"""
# default if not otherwise specified
INIT_POPULATION_ID: str = "test"
EFF: float = 0.05
SURVIVAL_PERCENTAGE: float = 0.5
SPECIE_SIZE_LIMIT: int = 10
INIT_SPECIE_SIZE: int = 10
GENERATION_LIMIT: int = 1000
EVALUATIONS_LIMIT: int = 100_000
FITNESS_GOAL: float = 6000