| 1721 | } |
| 1722 | |
| 1723 | HighsInt Highs_setHighsStringOptionValue(void* highs, const char* option, |
| 1724 | const char* value) { |
| 1725 | ((Highs*)highs) |
| 1726 | ->deprecationMessage("Highs_setHighsStringOptionValue", |
| 1727 | "Highs_setStringOptionValue"); |
| 1728 | return Highs_setStringOptionValue(highs, option, value); |
| 1729 | } |
| 1730 | |
| 1731 | HighsInt Highs_setHighsOptionValue(void* highs, const char* option, |
| 1732 | const char* value) { |
nothing calls this directly
no test coverage detected