Skip to content

Commit a684943

Browse files
committed
Add updated rule
1 parent 4c3c98d commit a684943

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

highs/presolve/HPresolve.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1557,7 +1557,7 @@ HPresolve::Result HPresolve::runProbing(HighsPostsolveStack& postsolve_stack) {
15571557
std::max(HighsInt{1000}, (model->num_row_ + model->num_col_) / 20);
15581558
} else {
15591559
probingEarlyAbort =
1560-
numDel > std::min(HighsInt{500}, model->num_col_ / 20);
1560+
numDel > std::min(HighsInt{1000}, (model->num_row_ + model->num_col_) / 40);
15611561
}
15621562
if (probingEarlyAbort) break;
15631563

0 commit comments

Comments
 (0)