Type Alias GeneticSearchStrategyConfig<TGenome>

GeneticSearchStrategyConfig: {
    cache: PhenomeCacheInterface;
    crossover: CrossoverStrategyInterface<TGenome>;
    fitness: FitnessStrategyInterface;
    mutation: MutationStrategyInterface<TGenome>;
    phenome: PhenomeStrategyInterface<TGenome>;
    populate: PopulateStrategyInterface<TGenome>;
    selection: SelectionStrategyInterface<TGenome>;
    sorting: SortStrategyInterface<TGenome>;
}

The configuration for GeneticSearch and ComposedGeneticSearch strategies.

This configuration is used to define the behavior of a genetic search algorithm.

Type Parameters

  • TGenome extends BaseGenome

    The type of genome objects in the population.

Type declaration