MCPcopy Create free account
hub / github.com/ERGO-Code/HiGHS / distillationMIP

Function distillationMIP

check/TestMipSolver.cpp:878–887  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

876}
877
878void distillationMIP(Highs& highs) {
879 SpecialLps special_lps;
880 HighsLp lp;
881 HighsModelStatus require_model_status;
882 double optimal_objective;
883 special_lps.distillationMip(lp, require_model_status, optimal_objective);
884 REQUIRE(highs.passModel(lp) == HighsStatus::kOk);
885 // Presolve doesn't reduce the LP
886 solve(highs, kHighsOnString, require_model_status, optimal_objective);
887}
888
889void rowlessMIP(Highs& highs) {
890 HighsLp lp;

Callers 1

TestMipSolver.cppFile · 0.85

Calls 3

distillationMipMethod · 0.80
passModelMethod · 0.80
solveFunction · 0.70

Tested by

no test coverage detected