The type of genome objects in the population.
Optional
afterStep?: GenerationAfterCallbackA callback function that is called after each generation.
Optional
beforeStep?: GenerationBeforeCallbackA callback function that is called before each generation.
Optional
generationsCount?: numberThe number of generations to run the algorithm for.
Defaults to Infinity.
Optional
scheduler?: SchedulerInterface<TGenome>The scheduler to use to schedule the algorithm.
Optional
stopCondition?: (scores: GenerationFitnessColumn) => booleanA callback function that is called after each generation and can cause the algorithm to stop.
The configuration for running a genetic search algorithm.
Used in GeneticSearchInterface.