Type Alias GeneticSearchFitConfig<TGenome>

GeneticSearchFitConfig: {
    afterStep?: GenerationAfterCallback;
    beforeStep?: GenerationBeforeCallback;
    generationsCount?: number;
    scheduler?: SchedulerInterface<TGenome>;
    stopCondition?: (scores: GenerationFitnessColumn) => boolean;
}

The configuration for running a genetic search algorithm.

Used in GeneticSearchInterface.

Type Parameters

  • TGenome extends BaseGenome

    The type of genome objects in the population.

Type declaration

  • OptionalafterStep?: GenerationAfterCallback

    A callback function that is called after each generation.

    The current generation number.

    The fitness scores of the current generation.

  • OptionalbeforeStep?: GenerationBeforeCallback

    A callback function that is called before each generation.

    The current generation number.

  • OptionalgenerationsCount?: number

    The number of generations to run the algorithm for.

    Defaults to Infinity.

  • Optionalscheduler?: SchedulerInterface<TGenome>

    The scheduler to use to schedule the algorithm.

  • OptionalstopCondition?: (scores: GenerationFitnessColumn) => boolean

    A callback function that is called after each generation and can cause the algorithm to stop.