Interface CrossoverStrategyInterface<TGenome>

An interface for a crossover strategy.

Used in GeneticSearchStrategyConfig.

interface CrossoverStrategyInterface<TGenome extends BaseGenome> {
    cross(parents: TGenome[], newGenomeId: number): TGenome;
}

Type Parameters

  • TGenome extends BaseGenome

    The type of genome objects in the population.

Methods

Methods

  • Cross two genomes.

    Parameters

    • parents: TGenome[]

      The parents to cross.

    • newGenomeId: number

      The ID to assign to the new genome.

    Returns TGenome