Interface PopulateStrategyInterface<TGenome>

An interface for a population generator.

Used in GeneticSearchStrategyConfig.

interface PopulateStrategyInterface<TGenome extends BaseGenome> {
    populate(
        size: number,
        idGenerator: IdGeneratorInterface<TGenome>,
    ): Population<TGenome>;
}

Type Parameters

  • TGenome extends BaseGenome

    The type of genome objects in the population.

Methods

Methods