| 1705 | } |
| 1706 | |
| 1707 | HighsInt Highs_setHighsIntOptionValue(void* highs, const char* option, |
| 1708 | const HighsInt value) { |
| 1709 | ((Highs*)highs) |
| 1710 | ->deprecationMessage("Highs_setHighsIntOptionValue", |
| 1711 | "Highs_setIntOptionValue"); |
| 1712 | return Highs_setIntOptionValue(highs, option, value); |
| 1713 | } |
| 1714 | |
| 1715 | HighsInt Highs_setHighsDoubleOptionValue(void* highs, const char* option, |
| 1716 | const double value) { |
nothing calls this directly
no test coverage detected