Return a string representation of basis validity
| 1404 | |
| 1405 | // Return a string representation of basis validity |
| 1406 | std::string utilBasisValidityToString(const HighsInt basis_validity) { |
| 1407 | if (basis_validity) { |
| 1408 | return "Valid"; |
| 1409 | } else { |
| 1410 | return "Not valid"; |
| 1411 | } |
| 1412 | } |
| 1413 | |
| 1414 | // Return a string representation of HighsModelStatus. |
| 1415 | std::string utilModelStatusToString(const HighsModelStatus model_status) { |
no outgoing calls
no test coverage detected