Solves an unconstrained LP without scaling, setting HighsBasis, HighsSolution and HighsInfo
| 178 | // Solves an unconstrained LP without scaling, setting HighsBasis, HighsSolution |
| 179 | // and HighsInfo |
| 180 | HighsStatus solveUnconstrainedLp(HighsLpSolverObject& solver_object) { |
| 181 | return (solveUnconstrainedLp(solver_object.options_, solver_object.lp_, |
| 182 | solver_object.model_status_, |
| 183 | solver_object.highs_info_, |
| 184 | solver_object.solution_, solver_object.basis_)); |
| 185 | } |
| 186 | |
| 187 | // Solves an unconstrained LP without scaling, setting HighsBasis, HighsSolution |
| 188 | // and HighsInfo |
no test coverage detected