Interface GeneticSearchInterface<TGenome>

A genetic search algorithm interface.

interface GeneticSearchInterface<TGenome extends BaseGenome> {
    bestGenome: TGenome;
    cache: PhenomeCacheInterface;
    generation: number;
    partitions: [number, number, number];
    population: Population<TGenome>;
    clearCache(): void;
    fit(config: GeneticSearchFitConfig<TGenome>): Promise<void>;
    fitStep(
        scheduler?: SchedulerInterface<TGenome>,
    ): Promise<GenerationFitnessColumn>;
    getPopulationSummary(roundPrecision?: number): PopulationSummary;
    refreshPopulation(): void;
    setPopulation(
        population: Population<TGenome>,
        resetIdGenerator: boolean,
    ): void;
}

Type Parameters

  • TGenome extends BaseGenome

    The type of genome objects in the population.

Implemented by

Properties

bestGenome: TGenome

Current best genome in the population.

Phenome cache.

generation: number

Current generation number.

partitions: [number, number, number]

Partition sizes of the population.

The first element is the size of the elite population, the second element is the size of the crossover population, and the third element is the size of the mutation population.

population: Population<TGenome>

Current population.

Methods

  • Refreshes the population.

    Returns void

  • Sets the current population.

    Parameters

    • population: Population<TGenome>

      new population.

    • resetIdGenerator: boolean

      Whether to reset the ID generator.

    Returns void