| 164 | } |
| 165 | |
| 166 | void instanceTest(Highs& highs, const std::string model_name) { |
| 167 | std::string model_file = |
| 168 | std::string(HIGHS_DIR) + "/check/instances/" + model_name + ".mps"; |
| 169 | if (dev_run) printf("\nSolving model %s\n", model_name.c_str()); |
| 170 | REQUIRE(highs.readModel(model_file) == HighsStatus::kOk); |
| 171 | dualizeTest(highs); |
| 172 | } |
no test coverage detected