Type Alias GenomeStats

GenomeStats: {
    age: number;
    fitness: number;
    origin: GenomeOrigin;
    originCounters: { crossover: number; mutation: number };
    parentIds: number[];
    phenome: PhenomeRow;
}

Represents the statistics of a genome.

Type declaration

  • age: number

    The age of the genome.

  • fitness: number

    The fitness score of the genome.

  • origin: GenomeOrigin

    The origin of the genome, indicating how it was created.

  • originCounters: { crossover: number; mutation: number }

    The number of times the genome was created through crossover and mutation.

  • parentIds: number[]

    The IDs of the parents of the genome.

  • phenome: PhenomeRow

    The phenome associated with the genome.