| 1713 | } |
| 1714 | |
| 1715 | HighsInt Highs_setHighsDoubleOptionValue(void* highs, const char* option, |
| 1716 | const double value) { |
| 1717 | ((Highs*)highs) |
| 1718 | ->deprecationMessage("Highs_setHighsDoubleOptionValue", |
| 1719 | "Highs_setDoubleOptionValue"); |
| 1720 | return Highs_setDoubleOptionValue(highs, option, value); |
| 1721 | } |
| 1722 | |
| 1723 | HighsInt Highs_setHighsStringOptionValue(void* highs, const char* option, |
| 1724 | const char* value) { |
nothing calls this directly
no test coverage detected