Type Alias BaseGenome

BaseGenome: { id: number; stats?: GenomeStats }

The base interface for a genome.

A genome is a candidate solution in a genetic search.

Type declaration

  • id: number

    The unique identifier of the genome.

  • Optionalstats?: GenomeStats

    The statistics of the genome, which is automatically generated when the genome participates in the genetic algorithm.