| 1760 | } |
| 1761 | |
| 1762 | HighsInt Highs_getHighsStringOptionValue(const void* highs, const char* option, |
| 1763 | char* value) { |
| 1764 | ((Highs*)highs) |
| 1765 | ->deprecationMessage("Highs_getHighsStringOptionValue", |
| 1766 | "Highs_getStringOptionValue"); |
| 1767 | return Highs_getStringOptionValue(highs, option, value); |
| 1768 | } |
| 1769 | |
| 1770 | HighsInt Highs_getHighsOptionType(const void* highs, const char* option, |
| 1771 | HighsInt* type) { |
nothing calls this directly
no test coverage detected