| 78 | } |
| 79 | |
| 80 | HighsStatus FilereaderMps::writeModelToFile(const HighsOptions& options, |
| 81 | const std::string filename, |
| 82 | const HighsModel& model) { |
| 83 | assert(model.lp_.a_matrix_.isColwise()); |
| 84 | return writeModelAsMps(options, filename, model, |
| 85 | options.mps_parser_type_free); |
| 86 | } |
nothing calls this directly
no test coverage detected