Interface SchedulerInterface<TGenome>

Interface for a scheduler.

This interface defines the structure and behavior of a scheduler, which is responsible for executing scheduled tasks or operations.

interface SchedulerInterface<TGenome extends BaseGenome> {
    logs: string[];
    step(evaluatedPopulation: EvaluatedGenome<TGenome>[]): void;
}

Type Parameters

Implemented by

Properties

Methods

Properties

logs: string[]

An array of log messages generated by the scheduler.

Methods