| 283 | } |
| 284 | |
| 285 | HighsStatus Highs::getStringOptionValues(const std::string& option, |
| 286 | std::string* current_value, |
| 287 | std::string* default_value) const { |
| 288 | if (getLocalOptionValues(options_.log_options, option, options_.records, |
| 289 | current_value, default_value) != OptionStatus::kOk) |
| 290 | return HighsStatus::kError; |
| 291 | return HighsStatus::kOk; |
| 292 | } |
| 293 | |
| 294 | HighsStatus Highs::getRunDataValue(const std::string& run_data, |
| 295 | HighsInt& value) const { |
no test coverage detected