| 1135 | } |
| 1136 | |
| 1137 | HighsStatus Highs::optimizeHighs() { |
| 1138 | // Level 1 of Highs::run() |
| 1139 | // |
| 1140 | // Move the "mods" to here |
| 1141 | return this->multi_linear_objective_.size() ? this->multiobjectiveSolve() |
| 1142 | : this->optimizeModel(); |
| 1143 | } |
| 1144 | |
| 1145 | HighsStatus Highs::optimizeLp() { |
| 1146 | // Solve what's in the HighsLp instance Highs::model_.lp_ |
nothing calls this directly
no test coverage detected