Interface MutationStrategyInterface<TGenome>

An interface for a mutation strategy.

Used in GeneticSearchStrategyConfig.

interface MutationStrategyInterface<TGenome extends BaseGenome> {
    mutate(genome: TGenome, newGenomeId: number): TGenome;
}

Type Parameters

  • TGenome extends BaseGenome

    The type of genome objects in the population.

Implemented by

Methods

Methods