Type Alias PhenomeStrategyConfig<TTaskConfig>

PhenomeStrategyConfig: {
    onTaskResult?: (result: PhenomeRow, input: TTaskConfig) => void;
    task: CalcPhenomeTask<TTaskConfig>;
}

The configuration for a BasePhenomeStrategy.

A phenome strategy is a component of a genetic search algorithm that calculates the phenome of a population of genomes.

Type Parameters

  • TTaskConfig

    The type of configuration required to execute the task.

Type declaration

  • OptionalonTaskResult?: (result: PhenomeRow, input: TTaskConfig) => void

    A callback function that is called after the phenome for a genome has been calculated.

  • task: CalcPhenomeTask<TTaskConfig>

    The function to call to calculate the phenome for a genome.

    This function is called for each genome in the population.