| 261 | } |
| 262 | |
| 263 | HighsStatus Highs::getIntOptionValues(const std::string& option, |
| 264 | HighsInt* current_value, |
| 265 | HighsInt* min_value, HighsInt* max_value, |
| 266 | HighsInt* default_value) const { |
| 267 | if (getLocalOptionValues(options_.log_options, option, options_.records, |
| 268 | current_value, min_value, max_value, |
| 269 | default_value) != OptionStatus::kOk) |
| 270 | return HighsStatus::kError; |
| 271 | return HighsStatus::kOk; |
| 272 | } |
| 273 | |
| 274 | HighsStatus Highs::getDoubleOptionValues(const std::string& option, |
| 275 | double* current_value, |
no test coverage detected