| 309 | } |
| 310 | |
| 311 | void testStandardFormModel(const std::string model) { |
| 312 | const std::string model_file = |
| 313 | std::string(HIGHS_DIR) + "/check/instances/" + model + ".mps"; |
| 314 | ; |
| 315 | Highs highs; |
| 316 | highs.setOptionValue("output_flag", dev_run); |
| 317 | highs.readModel(model_file); |
| 318 | HighsLp lp = highs.getLp(); |
| 319 | testStandardForm(lp); |
| 320 | |
| 321 | highs.resetGlobalScheduler(true); |
| 322 | } |
| 323 | |
| 324 | TEST_CASE("standard-form-mps", "[highs_lp_solver]") { |
| 325 | testStandardFormModel("avgas"); |
no test coverage detected