ConjugateGradientOptimizer.RestartThreshold Property

Gets or sets the restart threshold for the orthogonality of successive gradients.

Definition

Namespace: Extreme.Mathematics.Optimization
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public double RestartThreshold { get; set; }

Property Value

Double

Remarks

One way of determining when the conjugate gradient algorithm should be restarted is when successive gradients are not sufficiently orthogonal.

Exceptions

ArgumentOutOfRangeException The value is less than 0 or greater than 1.

See Also