| 102 | } |
| 103 | |
| 104 | bool modelStatusOk(Highs& highs) { |
| 105 | if (highs.getModelStatus() == HighsModelStatus::kOptimal) return true; |
| 106 | // if (highs.getModelStatus(true) == HighsModelStatus::kOptimal) return true; |
| 107 | return false; |
| 108 | } |
| 109 | |
| 110 | void testRanging(Highs& highs) { |
| 111 | HighsLp lp; |