Click or drag to resize

SelectionAlgorithmTSelect Method (T, T)

This method is called each time genetic algorithm needs two parents for crossover. This method calls Select() two times by default.

Namespace:  FinMath.MachineLearning.EvolutionaryAlgorithms
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
public virtual void Select(
	out T parentA,
	out T parentB
)

Parameters

parentA
Type: T
First parent.
parentB
Type: T
Second parent.
See Also