Class WeightedAgeAveragePhenomeCache

A phenome cache implementation that stores the phenome for each genome as a weighted average of all phenome that have been set for that genome.

The closer the genome age is to 0, the closer the phenome are to the average phenome of the population, which helps to combat outliers for new genomes.

Hierarchy (View Summary)

Constructors

Properties

Methods

Constructors

Properties

cache: Map<number, [PhenomeRow, number]> = ...

A map of genome IDs to their respective phenome and the number of times they have been set.

The key is the genome ID, and the value is an array with two elements. The first element is the current phenome for the genome, and the second element is the number of times the phenome have been set.

Methods

  • Clears the cache, excluding the specified genome IDs.

    Parameters

    • excludeGenomeIds: number[]

      The IDs of the genomes to exclude from the clear operation.

    Returns void

  • Gets the phenome of a genome.

    Parameters

    • genomeId: number

      The ID of the genome.

    • OptionaldefaultValue: PhenomeRow

      The default value to return if the genome is not found.

    Returns undefined | PhenomeRow

    The phenome of the genome, or the default value if the genome phenome is not found.