Type Alias SchedulerConfig<TGenome, TConfig>

SchedulerConfig: {
    actions: SchedulerAction<TGenome, TConfig>[];
    config: TConfig;
    maxHistoryLength: number;
    runner: GeneticSearchInterface<TGenome>;
}

The configuration for the Scheduler.

Type Parameters

  • TGenome extends BaseGenome

    The type of genome objects in the population.

  • TConfig

    The type of configuration object of macro parameters, which the scheduler will be able to manipulate.

Type declaration

  • actions: SchedulerAction<TGenome, TConfig>[]

    The actions for the scheduler.

  • config: TConfig

    The configuration object of macro parameters, which the scheduler will be able to manipulate.

  • maxHistoryLength: number

    The maximum length of the generations history summaries array.

  • runner: GeneticSearchInterface<TGenome>

    The runner for the genetic search algorithm.