We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c3c98d commit a684943Copy full SHA for a684943
highs/presolve/HPresolve.cpp
@@ -1557,7 +1557,7 @@ HPresolve::Result HPresolve::runProbing(HighsPostsolveStack& postsolve_stack) {
1557
std::max(HighsInt{1000}, (model->num_row_ + model->num_col_) / 20);
1558
} else {
1559
probingEarlyAbort =
1560
- numDel > std::min(HighsInt{500}, model->num_col_ / 20);
+ numDel > std::min(HighsInt{1000}, (model->num_row_ + model->num_col_) / 40);
1561
}
1562
if (probingEarlyAbort) break;
1563
0 commit comments