Click or drag to resize

GeneticAlgorithm<T> .ObjectiveBlockDelegateType 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:System.Double[]
Objective value array.
offset
Type: System.Int32
The offset in arrays, for which objective should be calculated.
length
Type: System.Int32
The number of elements in arrays for which objective should be calculated.
See Also