Cellular Config Scope
Implementation of CellularConfig 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, cached neighborhood indices and evaluates all chromosomes.
Callback before evolution process. Executed only once at launch if GA.iteration is 0.
Cellular type for CellularGA.
Flag for elitism in CellularGA.
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.
Neighborhood for CellularGA.
Parallelism configuration associated with GA.
Override base population as CellularPopulation for CellularGA.
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 CellularGA (Cellular Genetic Algorithm) as evolution function in CellularEvolveScope 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 CellularConfig.
Creates StatisticsConfig with StatisticsConfigScope and apply it to the current Config.