Called from HighsSolve - solveLp
| 27 | |
| 28 | // Called from HighsSolve - solveLp |
| 29 | HighsDebugStatus debugHighsLpSolution( |
| 30 | const std::string& message, const HighsLpSolverObject& solver_object) { |
| 31 | // Non-trivially expensive analysis of a solution to a model |
| 32 | // |
| 33 | // Called to check the unscaled model status and solution params |
| 34 | const bool check_model_status_and_highs_info = true; |
| 35 | // Define an empty Hessian |
| 36 | HighsHessian hessian; |
| 37 | return debugHighsSolution(message, solver_object.options_, solver_object.lp_, |
| 38 | hessian, solver_object.solution_, |
| 39 | solver_object.basis_, solver_object.model_status_, |
| 40 | solver_object.highs_info_, |
| 41 | check_model_status_and_highs_info); |
| 42 | } |
| 43 | |
| 44 | HighsDebugStatus debugHighsSolution(const string message, |
| 45 | const HighsOptions& options, |
no test coverage detected