| 1744 | } |
| 1745 | |
| 1746 | HighsInt Highs_getHighsIntOptionValue(const void* highs, const char* option, |
| 1747 | HighsInt* value) { |
| 1748 | ((Highs*)highs) |
| 1749 | ->deprecationMessage("Highs_getHighsIntOptionValue", |
| 1750 | "Highs_getIntOptionValue"); |
| 1751 | return Highs_getIntOptionValue(highs, option, value); |
| 1752 | } |
| 1753 | |
| 1754 | HighsInt Highs_getHighsDoubleOptionValue(const void* highs, const char* option, |
| 1755 | double* value) { |
nothing calls this directly
no test coverage detected