Interface PhenomeStrategyInterface<TGenome>

An interface for a phenome strategy.

Used in GeneticSearchStrategyConfig.

interface PhenomeStrategyInterface<TGenome extends BaseGenome> {
    collect(
        population: Population<TGenome>,
        cache: PhenomeCacheInterface,
    ): Promise<GenerationPhenomeMatrix>;
}

Type Parameters

  • TGenome extends BaseGenome

    The type of genome objects in the population.

Implemented by

Methods

Methods