Interface GenomeStatsManagerInterface<TGenome>

An interface for a genome stats manager.

A genome stats manager is used to manage the statistics of a population of genomes.

interface GenomeStatsManagerInterface<TGenome extends BaseGenome> {
    init(population: Population<TGenome>, origin: GenomeOrigin): void;
    initItem(
        genome: BaseGenome,
        origin: GenomeOrigin,
        parents?: BaseGenome[],
    ): GenomeStats;
    update(
        population: Population<TGenome>,
        phenomeMatrix: GenerationPhenomeMatrix,
        fitnessColumn: GenerationFitnessColumn,
    ): void;
}

Type Parameters

Implemented by

Methods