Interface SelectionStrategyInterface<TGenome>

An interface for selection strategy.

Used in GeneticSearchStrategyConfig.

interface SelectionStrategyInterface<TGenome extends BaseGenome> {
    selectForCrossover(
        input: EvaluatedGenome<TGenome>[],
        count: number,
    ): TGenome[][];
    selectForMutation(
        input: EvaluatedGenome<TGenome>[],
        count: number,
    ): TGenome[];
}

Type Parameters

  • TGenome extends BaseGenome

    The type of genome objects in the population.

Implemented by

Methods

  • Selects parents pairs for crossover.

    Parameters

    • input: EvaluatedGenome<TGenome>[]

      The population extended with fitness scores and phenome to select parents from.

    • count: number

      The number of parents to select.

    Returns TGenome[][]

    An array of parent pairs.