Click or drag to resize

AnnealingMinimizerRandomNumberGenerator Property

Gets and sets the random number generator associated with this minimizer.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public RandomNumberGenerator RandomNumberGenerator { get; set; }

Property Value

RandomNumberGenerator
Remarks
The random number generator is used for making temperature-dependent, random steps in the search space as part of the annealing process.
The random number generator for an AnnealingMinimizer instance is set at construction time to the value of static property DefaultRandomNumberGenerator, which defaults to an instance of RandGenUniform.
See Also