Panmictic Config Scope
Implementation of PanmicticConfig based on AbstractConfigScope. Params population and fitnessFunction are considered mandatory.
Properties
Callback after evolution process. Executed at launch when GA.state is going to be State.FINISHED.
Fills population if needed and evaluates all chromosomes (include elite ones).
Callback before evolution process. Executed only once at launch if GA.iteration is 0.
Fitness function - A function that evaluates the quality or "fitness" of each individual (chromosome) in a population. The fitness function determines how well a particular solution matches the target problem.
Parallelism configuration associated with GA.
Override base population as PanmicticPopulation for PanmicticGA.
Statistics configuration associated with GA.
Store for all TimeMarkers of GA.
Functions
Callback after evolution process which will be invoked when GA.state is going to be State.FINISHED.
Callback before evolution process which will be invoked if GA.iteration is 0.
Applies evolutionary strategy
for PanmicticGA (Classical Genetic Algorithm) as evolution function in PanmicticEvolveScope that includes the process of changing the population for one iteration.
Creates ParallelismConfig with ParallelismConfigScope and apply it to the current Config.
Creates ParallelismConfig with ParallelismConfigScope and apply it to the current PanmicticConfig.
Creates StatisticsConfig with StatisticsConfigScope and apply it to the current Config.