Interface IdGeneratorInterface<TGenome>

Interface for generating unique identifiers for genomes.

interface IdGeneratorInterface<TGenome extends BaseGenome> {
    nextId(): number;
    reset(population: TGenome[]): void;
}

Type Parameters

  • TGenome extends BaseGenome

    The type of genome objects.

Implemented by

Methods

Methods

  • Generates the next unique identifier.

    Returns number

    The next unique identifier as a number.

  • Resets the ID generator based on the provided population.

    Parameters

    • population: TGenome[]

      The population of genomes to reset the ID generator with.

    Returns void