MCPcopy Create free account
hub / github.com/ERGO-Code/HiGHS / isDualSolutionRightSize

Function isDualSolutionRightSize

highs/lp_data/HighsSolution.cpp:2030–2033  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 2

isSolutionRightSizeFunction · 0.85

Calls 2

Tested by

no test coverage detected