Class GeneticSearch<TGenome>

A genetic search algorithm.

This class implements the genetic search algorithm. The algorithm is configured using the [[GeneticSearchConfig]] object.

The algorithm uses the following components, which can be customized by providing a custom implementation:

  • A [[PopulateStrategyInterface]] to generate the initial population.
  • A [[MutationStrategyInterface]] to mutate the population.
  • A [[CrossoverStrategyInterface]] to cross over the population.
  • A [[PhenomeStrategyInterface]] to calculate the phenome of the population.
  • A [[FitnessStrategyInterface]] to calculate the fitness of the population.
  • A [[PhenomeCacheInterface]] to cache the phenome of the population.

Type Parameters

  • TGenome extends BaseGenome

    The type of genome objects in the population.

Implements

Constructors

Properties

_generation: number = 1
_population: Population<TGenome>
_populationBuffer: Population<TGenome> = []
populationSummaryManager: PopulationSummaryManagerInterface<TGenome>

Accessors

  • 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.