







Status of a solution instance.
Namespace: Optimization.Solver
Assembly: Optimization.Framework (in Optimization.Framework.dll) Version: 0.3.1036.0
Syntax
C# |
---|
public enum SolutionStatus |
Visual Basic |
---|
Public Enumeration SolutionStatus |
Visual C++ |
---|
public enum class SolutionStatus |
Members
Member name | Value | Description | |
---|---|---|---|
NoSolutionValues | 0 | The solution instance contains no variable and objective values, e.g. because the solved model instance is infeasible. | |
FeasibleContinuousRelaxation | 1 | The solution instance contains variable and objective values feasible for the continuous relaxation of the solved model instance. | |
OptimalContinuousRelaxation | 2 | The solution instance contains variable and objective values optimal for the continuous relaxation of the solved model instance. | |
Feasible | 3 | The solution instance contains variable and objective values feasible for the solved model instance. | |
ProbablyLocalOptimal | 4 | The solution instance contains variable and objective values probably local optimal for the solved model instance with the used ISolver. | |
LocalOptimal | 5 | The solution instance contains variable and objective values local optimal for the solved model instance with the used ISolver. | |
Optimal | 6 | The solution instance contains variable and objective values optimal for the solved model instance. |