Class ComposedGeneticSearch<TGenome>

A composed genetic search algorithm that combines multiple genetic search strategies.

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:

  • A [[GeneticSearchStrategyConfig]] to define the strategy for the genetic operations.
  • An [[IdGeneratorInterface]] to generate unique IDs for the genomes.

Type Parameters

  • TGenome extends BaseGenome

    The type of genome objects in the population.

Implements

Constructors

Accessors

  • get bestGenomes(): Population<TGenome>

    Gets the best genomes from the eliminators.

    Returns Population<TGenome>

    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.

  • get partitions(): [number, number, number]

    Calculates and returns the partitions of the population for the genetic operations.

    Returns [number, number, number]

    A tuple containing:

    • The number of genomes that will survive.
    • The number of genomes that will be created by crossover.
    • The number of genomes that will be created by mutation.

Methods

  • Clears the cache.

    Returns void

    This method clears the cache, which is used to store the phenome of the genomes. The cache is used to avoid re-calculating the phenome of the genomes if they remain unchanged.

  • Retrieves the population summary, optionally rounding the statistics to a specified precision.

    Parameters

    • OptionalroundPrecision: number

      Optional. The number of decimal places to round the summary statistics to. If not provided, no rounding is applied.

    Returns PopulationSummary

    The population summary, with statistics rounded to the specified precision if provided.

  • Refreshes the population.

    Returns void

    This method is used to refresh the population, which is the array of genomes that are currently being evaluated. The population is refreshed by swapping the current population with the population buffer.