| 70 | } |
| 71 | |
| 72 | bool optionOffOnOk(const HighsLogOptions& report_log_options, |
| 73 | const string& name, const string& value) { |
| 74 | if (value == kHighsOffString || value == kHighsOnString) return true; |
| 75 | highsLogUser(report_log_options, HighsLogType::kError, |
| 76 | "Value \"%s\" for %s option is not one of \"%s\" or \"%s\"\n", |
| 77 | value.c_str(), name.c_str(), kHighsOffString.c_str(), |
| 78 | kHighsOnString.c_str()); |
| 79 | return false; |
| 80 | } |
| 81 | |
| 82 | bool optionSolverOk(const HighsLogOptions& report_log_options, |
| 83 | const string& value) { |
no test coverage detected