| 57 | } |
| 58 | |
| 59 | bool optionOffChooseOnOk(const HighsLogOptions& report_log_options, |
| 60 | const string& name, const string& value) { |
| 61 | if (value == kHighsOffString || value == kHighsChooseString || |
| 62 | value == kHighsOnString) |
| 63 | return true; |
| 64 | highsLogUser( |
| 65 | report_log_options, HighsLogType::kError, |
| 66 | "Value \"%s\" for %s option is not one of \"%s\", \"%s\" or \"%s\"\n", |
| 67 | value.c_str(), name.c_str(), kHighsOffString.c_str(), |
| 68 | kHighsChooseString.c_str(), kHighsOnString.c_str()); |
| 69 | return false; |
| 70 | } |
| 71 | |
| 72 | bool optionOffOnOk(const HighsLogOptions& report_log_options, |
| 73 | const string& name, const string& value) { |
no test coverage detected