Type Alias SchedulerActionInput<TGenome, TConfig>

SchedulerActionInput: {
    config: TConfig;
    evaluatedPopulation: EvaluatedGenome<TGenome>[];
    evaluatedPopulationManager: EvaluatedPopulationManagerInterface<TGenome>;
    history: PopulationSummary[];
    logger: (message: string) => void;
    runner: GeneticSearchInterface<TGenome>;
}

The input for a SchedulerAction.

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

  • config: TConfig

    The configuration for the genetic search algorithm.

  • evaluatedPopulation: EvaluatedGenome<TGenome>[]

    The current sorted population with stats.

  • evaluatedPopulationManager: EvaluatedPopulationManagerInterface<TGenome>

    The manager for the evaluated population.

  • history: PopulationSummary[]

    The history of population summaries.

  • logger: (message: string) => void

    The logger function.

  • runner: GeneticSearchInterface<TGenome>

    The genetic search algorithm.