| 362 | } |
| 363 | |
| 364 | HighsInt Highs_passModelName(const void* highs, const char* name) { |
| 365 | return (HighsInt)((Highs*)highs)->passModelName(std::string(name)); |
| 366 | } |
| 367 | |
| 368 | HighsInt Highs_readOptions(const void* highs, const char* filename) { |
| 369 | return (HighsInt)((Highs*)highs)->readOptions(filename); |
nothing calls this directly
no test coverage detected