| 228 | } |
| 229 | |
| 230 | HighsInt Highs_writeModel(void* highs, const char* filename) { |
| 231 | return (HighsInt)((Highs*)highs)->writeModel(std::string(filename)); |
| 232 | } |
| 233 | |
| 234 | HighsInt Highs_writePresolvedModel(void* highs, const char* filename) { |
| 235 | return (HighsInt)((Highs*)highs)->writePresolvedModel(std::string(filename)); |