| 1511 | } |
| 1512 | |
| 1513 | void HighsStatusReport(const HighsLogOptions& log_options, std::string message, |
| 1514 | HighsStatus status) { |
| 1515 | if (!dev_run) return; |
| 1516 | highsLogUser(log_options, HighsLogType::kInfo, |
| 1517 | "%s: HighsStatus = %" HIGHSINT_FORMAT " - %s\n", message.c_str(), |
| 1518 | (int)status, highsStatusToString(status).c_str()); |
| 1519 | } |
| 1520 | |
| 1521 | void callRun(Highs& highs, const HighsLogOptions& log_options, |
| 1522 | std::string message, const HighsStatus require_return_status) { |
no test coverage detected