The type of genome objects in the population.
Constructs a new instance of the ComposedGeneticSearch class.
The configuration for the composed genetic search algorithm.
The strategy configuration for genetic operations.
Optional
idGenerator: IdGenerator<TGenome>An optional ID generator for the genomes.
Protected
bestGets the best genomes from the eliminators.
The best genomes from the eliminators.
This method returns the best genomes from each eliminator. The best genomes are the genomes that have the highest fitness score. The best genomes are determined by calling GeneticSearch.bestGenome on each eliminator.
Retrieves the phenome cache used by the genetic search algorithm.
The phenome cache instance.
The current generation number.
The current generation number.
Calculates and returns the partitions of the population for the genetic operations.
A tuple containing:
Runs the genetic search algorithm.
The configuration for the genetic search algorithm.
A promise that resolves when the algorithm has finished running.
Runs a single step of the genetic search algorithm.
Optional
scheduler: SchedulerInterface<TGenome>Optional. The scheduler to use for the genetic search algorithm.
A promise that resolves with the fitness of the best genome in the population.
Retrieves the population summary, optionally rounding the statistics to a specified precision.
Optional
roundPrecision: numberOptional. The number of decimal places to round the summary statistics to. If not provided, no rounding is applied.
The population summary, with statistics rounded to the specified precision if provided.
Sets the current population of genomes.
The new population of genomes.
Whether to reset the ID generator. Defaults to true.
A composed genetic search algorithm that combines multiple genetic search strategies.
Remarks
This class implements a composite genetic search algorithm that utilizes multiple genetic search strategies, including eliminators and a final strategy. The algorithm is configured using the [[ComposedGeneticSearchConfig]] object.
The algorithm integrates the following components, which can be customized by providing custom implementations: