Interface PopulationSummaryManagerInterface<TGenome>

Interface for managing population summaries in a genetic algorithm.

interface PopulationSummaryManagerInterface<TGenome extends BaseGenome> {
    get(): PopulationSummary;
    getRounded(precision: number): PopulationSummary;
    update(sortedPopulation: Population<TGenome>): void;
}

Type Parameters

  • TGenome extends BaseGenome

    The type of genome objects in the population.

Implemented by

Methods

  • Retrieves the population summary with rounded statistics.

    Parameters

    • precision: number

      The number of decimal places to round to.

    Returns PopulationSummary

    The rounded population summary.