Click or drag to resize
Accord.NET (logo)

BoundedBroydenFletcherGoldfarbShannoStatus Enumeration

Status codes for the BoundedBroydenFletcherGoldfarbShanno function optimizer.

Namespace:  Accord.Math.Optimization
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public enum BoundedBroydenFletcherGoldfarbShannoStatus
Members
  Member nameValueDescription
Stop0 The optimization stopped before convergence; maximum number of iterations could have been reached.
MaximumIterations1 Maximum number of iterations was reached.
FunctionConvergence2 The function output converged to a static value within the desired precision.
GradientConvergence3 The function gradient converged to a minimum value within the desired precision.
LineSearchFailed-1 The inner line search function failed. This could be an indication that there might be something wrong with the gradient function.
See Also