| 1660 | } |
| 1661 | |
| 1662 | HighsInt Highs_setOptionValue(void* highs, const char* option, |
| 1663 | const char* value) { |
| 1664 | ((Highs*)highs) |
| 1665 | ->deprecationMessage("Highs_setOptionValue", |
| 1666 | "Highs_setStringOptionValue"); |
| 1667 | return (HighsInt)((Highs*)highs) |
| 1668 | ->setOptionValue(std::string(option), std::string(value)); |
| 1669 | } |
| 1670 | |
| 1671 | HighsInt Highs_runQuiet(void* highs) { |
| 1672 | ((Highs*)highs)->deprecationMessage("Highs_runQuiet", "None"); |
no test coverage detected