Line | |
---|
1 | namespace HeuristicLab.ExactOptimization.LinearProgramming {
|
---|
2 |
|
---|
3 | public enum ResultStatus {
|
---|
4 | Optimal, // optimal.
|
---|
5 | Feasible, // feasible, or stopped by limit.
|
---|
6 | Infeasible, // proven infeasible.
|
---|
7 | Unbounded, // proven unbounded.
|
---|
8 | Abnormal, // abnormal, i.e., error of some kind.
|
---|
9 | ModelInvalid, // the model is trivially invalid (NaN coefficients, etc).
|
---|
10 | NotSolved = 6, // not been solved yet.
|
---|
11 | OptimalWithinTolerance = int.MaxValue // optimal within gap tolerance but objective != bound
|
---|
12 | }
|
---|
13 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.