| 466 | } |
| 467 | |
| 468 | HighsInt Highs_getIntOptionValues(const void* highs, const char* option, |
| 469 | HighsInt* current_value, HighsInt* min_value, |
| 470 | HighsInt* max_value, |
| 471 | HighsInt* default_value) { |
| 472 | return (HighsInt)((Highs*)highs) |
| 473 | ->getIntOptionValues(std::string(option), current_value, min_value, |
| 474 | max_value, default_value); |
| 475 | } |
| 476 | |
| 477 | HighsInt Highs_getDoubleOptionValues(const void* highs, const char* option, |
| 478 | double* current_value, double* min_value, |