| 2961 | } |
| 2962 | |
| 2963 | HighsDebugStatus HEkkDual::debugDualSimplex(const std::string message, |
| 2964 | const bool initialise) { |
| 2965 | HighsDebugStatus return_status = |
| 2966 | ekk_instance_.debugSimplex(message, algorithm, solve_phase, initialise); |
| 2967 | if (return_status == HighsDebugStatus::kLogicalError) return return_status; |
| 2968 | if (initialise) return return_status; |
| 2969 | return HighsDebugStatus::kOk; |
| 2970 | } |
| 2971 | |
| 2972 | bool HEkkDual::isBadBasisChange() { |
| 2973 | return ekk_instance_.isBadBasisChange(SimplexAlgorithm::kDual, variable_in, |
nothing calls this directly
no test coverage detected