| 1752 | } |
| 1753 | |
| 1754 | HighsInt Highs_getHighsDoubleOptionValue(const void* highs, const char* option, |
| 1755 | double* value) { |
| 1756 | ((Highs*)highs) |
| 1757 | ->deprecationMessage("Highs_getHighsDoubleOptionValue", |
| 1758 | "Highs_getDoubleOptionValue"); |
| 1759 | return Highs_getDoubleOptionValue(highs, option, value); |
| 1760 | } |
| 1761 | |
| 1762 | HighsInt Highs_getHighsStringOptionValue(const void* highs, const char* option, |
| 1763 | char* value) { |
nothing calls this directly
no test coverage detected