Class Scheduler<TGenome, TConfig>

A scheduler for a genetic search algorithm.

The scheduler is responsible for executing scheduled tasks or operations in the genetic search algorithm.

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.

Implements

Constructors

Properties

The rules applied by the scheduler.

config: TConfig

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

history: PopulationSummary[] = []

The history of population summaries.

logger: (message: string) => void

A function to log messages.

Type declaration

    • (message: string): void
    • Parameters

      • message: string

        The message to log.

      Returns void

logs: string[] = []

An array of log messages generated by the scheduler.

maxHistoryLength: number

The maximum length of the history array.

The genetic search runner.

Methods

  • Clears all the logs stored in the scheduler.

    Returns void

  • Handles the history of population summaries.

    Adds the current population summary to the history. If the history exceeds the maximum allowed length, it trims the oldest entries.

    Returns void