| 2023 | } |
| 2024 | |
| 2025 | bool isRowDualSolutionRightSize(const HighsLp& lp, |
| 2026 | const HighsSolution& solution) { |
| 2027 | return solution.row_dual.size() == static_cast<size_t>(lp.num_row_); |
| 2028 | } |
| 2029 | |
| 2030 | bool isDualSolutionRightSize(const HighsLp& lp, const HighsSolution& solution) { |
| 2031 | return isColDualSolutionRightSize(lp, solution) && |
no test coverage detected