Enum SolverStatus
The Status of the Gurobi solver
Namespace: OPTANO.Modeling.Optimization.Solver.Gurobi
Assembly: Optimization.Solver.Gurobi.dll
Syntax
public enum SolverStatus
Fields
| Name | Description |
|---|---|
| Cutoff | Cutoff |
| Infeasible | Infeasible |
| InfOrUnbd | Infinity or Unbounded |
| InProgress | An asynchronous optimization call was made, but the associated optimization run is not yet complete. |
| Interrupted | Interrupted |
| IterationLimit | IterationLimit |
| Loaded | Loaded |
| LocallyInfeasible | Locally Infeasible (Gurobi 13.0+) |
| LocallyOptimal | Locally Optimal (Gurobi 13.0+) |
| MemoryLimit | Optimization terminated because the total amount of allocated memory exceeded the value specified in the SoftMemLimit parameter. |
| NodeLimit | NodeLimit |
| Numeric | Numeric |
| Optimal | Optimal |
| SolutionLimit | SolutionLimit |
| Suboptimal | Suboptimal |
| TimeLimit | TimeLimit |
| Unbounded | Unbounded |
| UserObjLimit | User specified an objective limit (a bound on either the best objective or the best bound), and that limit has been reached. |
| WorkLimit | Optimization terminated because the work expended exceeded the value specified in the WorkLimit parameter. |