Click or drag to resize

GeneticAlgorithmTObjectiveBlockDelegateType Delegate

Block processing objective delegate.

Namespace:  FinMath.MachineLearning.EvolutionaryAlgorithms
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
public delegate void ObjectiveBlockDelegateType(
	T[] population,
	double[] objective,
	int offset,
	int length
)

Parameters

population
Type: T
Individuals array for which objective should be calculated.
objective
Type: SystemDouble
Objective value array.
offset
Type: SystemInt32
The offset in arrays, for which objective should be calculated.
length
Type: SystemInt32
The number of elements in arrays for which objective should be calculated.
See Also