Click or drag to resize
Accord.NET (logo)

ConjugateGradientCode Enumeration

Conjugate Gradient exit codes.

Namespace:  Accord.Math.Optimization
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public enum ConjugateGradientCode
Members
  Member nameValueDescription
Success0 Success.
StepSize1 Invalid step size.
DescentNotObtained-2 Descent direction was not obtained.
RoundingErrors6 Rounding errors prevent further progress. There may not be a step which satisfies the sufficient decrease and curvature conditions. Tolerances may be too small.
StepHigh5 The step size has reached the upper bound.
StepLow4 The step size has reached the lower bound.
MaximumEvaluations3 Maximum number of function evaluations has been reached.
Precision2 Relative width of the interval of uncertainty is at machine precision.
See Also