| 2873 | } |
| 2874 | |
| 2875 | HighsDebugStatus HEkkPrimal::debugPrimalSimplex(const std::string message, |
| 2876 | const bool initialise) { |
| 2877 | HighsDebugStatus return_status = |
| 2878 | ekk_instance_.debugSimplex(message, algorithm, solve_phase, initialise); |
| 2879 | if (return_status == HighsDebugStatus::kLogicalError) return return_status; |
| 2880 | if (initialise) return return_status; |
| 2881 | return_status = ekk_instance_.debugNonbasicFreeColumnSet( |
| 2882 | num_free_col, nonbasic_free_col_set); |
| 2883 | if (return_status == HighsDebugStatus::kLogicalError) return return_status; |
| 2884 | return HighsDebugStatus::kOk; |
| 2885 | } |
| 2886 | |
| 2887 | HighsDebugStatus HEkkPrimal::debugPrimalSteepestEdgeWeights( |
| 2888 | const std::string message) { |
nothing calls this directly
no test coverage detected