Skip to content

Commit 499ee10

Browse files
committed
mip
1 parent cb5e09a commit 499ee10

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

check/TestPdlp.cpp

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ TEST_CASE("pdlp-restart-add-row", "[pdlp]") {
336336

337337
TEST_CASE("hi-pdlp", "[pdlp]") {
338338
std::string model =
339-
"adlittle"; //"adlittle";//"afiro";// shell// stair //25fv47 //fit2p
339+
"fit2p"; //"adlittle";//"afiro";// shell// stair //25fv47 //fit2p
340340
std::string model_file =
341341
std::string(HIGHS_DIR) + "/check/instances/" + model + ".mps";
342342
Highs h;
@@ -346,10 +346,11 @@ TEST_CASE("hi-pdlp", "[pdlp]") {
346346
h.setOptionValue("kkt_tolerance", kkt_tolerance);
347347
h.setOptionValue("presolve", "off");
348348

349-
HighsInt pdlp_features_off =
349+
HighsInt pdlp_features_off = 0
350350
// kPdlpScalingOff +
351351
// kPdlpRestartOff
352-
kPdlpAdaptiveStepSizeOff;
352+
// kPdlpAdaptiveStepSizeOff
353+
;
353354
h.setOptionValue("pdlp_features_off", pdlp_features_off);
354355

355356
HighsInt pdlp_scaling = // 0;
@@ -401,7 +402,7 @@ TEST_CASE("hi-pdlp", "[pdlp]") {
401402
std::cout << "Objective: " << h.getInfo().objective_function_value
402403
<< std::endl;
403404
}
404-
assert(hipdlp_iteration_count == h.getInfo().pdlp_iteration_count);
405+
//assert(hipdlp_iteration_count == h.getInfo().pdlp_iteration_count);
405406
h.resetGlobalScheduler(true);
406407
}
407408

0 commit comments

Comments
 (0)