| 252 | } |
| 253 | |
| 254 | HighsStatus Highs::getBoolOptionValues(const std::string& option, |
| 255 | bool* current_value, |
| 256 | bool* default_value) const { |
| 257 | if (getLocalOptionValues(options_.log_options, option, options_.records, |
| 258 | current_value, default_value) != OptionStatus::kOk) |
| 259 | return HighsStatus::kError; |
| 260 | return HighsStatus::kOk; |
| 261 | } |
| 262 | |
| 263 | HighsStatus Highs::getIntOptionValues(const std::string& option, |
| 264 | HighsInt* current_value, |
no test coverage detected