Interface SortStrategyInterface<TGenome>

An interface for a sorting strategy.

Used in GeneticSearchStrategyConfig.

interface SortStrategyInterface<TGenome extends BaseGenome> {
    sort(input: EvaluatedGenome<TGenome>[]): EvaluatedGenome<TGenome>[];
}

Type Parameters

  • TGenome extends BaseGenome

    The type of genome objects in the population.

Implemented by

Methods

Methods