MCPcopy Create free account
hub / github.com/ERGO-Code/HiGHS / Highs_setOptionValue

Function Highs_setOptionValue

highs/interfaces/highs_c_api.cpp:1662–1669  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1660}
1661
1662HighsInt 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
1671HighsInt Highs_runQuiet(void* highs) {
1672 ((Highs*)highs)->deprecationMessage("Highs_runQuiet", "None");

Callers 1

Calls 2

deprecationMessageMethod · 0.80
setOptionValueMethod · 0.45

Tested by

no test coverage detected