| 2033 | } |
| 2034 | |
| 2035 | bool isSolutionRightSize(const HighsLp& lp, const HighsSolution& solution) { |
| 2036 | return isPrimalSolutionRightSize(lp, solution) && |
| 2037 | isDualSolutionRightSize(lp, solution); |
| 2038 | } |
| 2039 | |
| 2040 | bool isBasisRightSize(const HighsLp& lp, const HighsBasis& basis) { |
| 2041 | return basis.col_status.size() == static_cast<size_t>(lp.num_col_) && |
no test coverage detected