Optimization
            
            
            Enumerates the possible values for the status of a LinearProgram.
            
Definition
Namespace: Numerics.NET.Optimization
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
    C#
    
 
 
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
public enum OptimizationModelStatusMembers
| Unknown | 0 | The status is unknown. | 
| Feasible | 1 | The linear program is primal feasible. | 
| Infeasible | 2 | The linear program is primal infeasible or dual unbounded. | 
| DualFeasible | 3 | The linear program is dual feasible. | 
| Optimal | 4 | The linear program is optimal. It is both primal and dual feasible. | 
| Unbounded | 5 | The linear program is unbounded or dual infeasible. | 
| DualUnbounded | 6 | The linear program is primal infeasible or dual unbounded. | 
| Invalid | 7 | The linear program cannot be solved because of numerical difficulties. | 
| DualInfeasible | 8 | The linear program is dual infeasible. | 
| MaybeDualUnbounded | 9 | The linear program is provisionally dual unbounded. |