| 475 | } |
| 476 | |
| 477 | HighsInt Highs_getDoubleOptionValues(const void* highs, const char* option, |
| 478 | double* current_value, double* min_value, |
| 479 | double* max_value, double* default_value) { |
| 480 | return (HighsInt)((Highs*)highs) |
| 481 | ->getDoubleOptionValues(std::string(option), current_value, min_value, |
| 482 | max_value, default_value); |
| 483 | } |
| 484 | |
| 485 | HighsInt Highs_getStringOptionValues(const void* highs, const char* option, |
| 486 | char* current_value, char* default_value) { |