Skip to content

Commit c47a396

Browse files
committed
Formatting
1 parent 664600c commit c47a396

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

highs/presolve/HPresolve.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1556,7 +1556,8 @@ HPresolve::Result HPresolve::runProbing(HighsPostsolveStack& postsolve_stack) {
15561556
std::max(HighsInt{1000}, (model->num_row_ + model->num_col_) / 20);
15571557
} else {
15581558
probingEarlyAbort =
1559-
numDel > std::min(HighsInt{1000}, (model->num_row_ + model->num_col_) / 20);
1559+
numDel >
1560+
std::min(HighsInt{1000}, (model->num_row_ + model->num_col_) / 20);
15601561
}
15611562
if (probingEarlyAbort) break;
15621563

0 commit comments

Comments
 (0)