| 272 | } |
| 273 | |
| 274 | HighsStatus Highs::getDoubleOptionValues(const std::string& option, |
| 275 | double* current_value, |
| 276 | double* min_value, double* max_value, |
| 277 | double* default_value) const { |
| 278 | if (getLocalOptionValues(options_.log_options, option, options_.records, |
| 279 | current_value, min_value, max_value, |
| 280 | default_value) != OptionStatus::kOk) |
| 281 | return HighsStatus::kError; |
| 282 | return HighsStatus::kOk; |
| 283 | } |
| 284 | |
| 285 | HighsStatus Highs::getStringOptionValues(const std::string& option, |
| 286 | std::string* current_value, |
no test coverage detected