Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2931_OR-Tools_LP_MIP/HeuristicLab.MathematicalOptimization/3.3/LinearProgramming/Algorithms/ResultStatus.cs @ 16736

Last change on this file since 16736 was 16582, checked in by ddorfmei, 5 years ago

#2931: solved the issues found during the review

File size: 562 bytes
Line 
1namespace 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.