| 2028 | } |
| 2029 | |
| 2030 | bool isDualSolutionRightSize(const HighsLp& lp, const HighsSolution& solution) { |
| 2031 | return isColDualSolutionRightSize(lp, solution) && |
| 2032 | isRowDualSolutionRightSize(lp, solution); |
| 2033 | } |
| 2034 | |
| 2035 | bool isSolutionRightSize(const HighsLp& lp, const HighsSolution& solution) { |
| 2036 | return isPrimalSolutionRightSize(lp, solution) && |
no test coverage detected