Click or drag to resize
Accord.NET (logo)

AugmentedLagrangianStatus Enumeration

Status codes for the AugmentedLagrangian optimization algorithm.

Namespace:  Accord.Math.Optimization
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public enum AugmentedLagrangianStatus
Members
  Member nameValueDescription
Converged1 The algorithm has found a feasible solution.
NoProgress-1 The optimization could not make progress towards finding a feasible solution. Try increasing the Tolerance of the constraints.
MaxEvaluations-2 The optimization has reached the maximum number of function evaluations.
Cancelled-3 The optimization has been cancelled by the user (such as for example by using Token).
See Also