Interface GeneticSearchConfig

The main configuration for GeneticSearch.

interface GeneticSearchConfig {
    crossoverRate: number;
    populationSize: number;
    survivalRate: number;
}

Properties

crossoverRate: number

The rate of crossover for the difference between the total population and the survivors.

populationSize: number

The size of the population of genomes.

survivalRate: number

The rate of survival for the genomes in the population.