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 4b1fbe7 commit e62f998Copy full SHA for e62f998
highs/presolve/HPresolve.cpp
@@ -1398,9 +1398,11 @@ HPresolve::Result HPresolve::dominatedColumns(
1398
mipsolver->mipdata_->cliquetable.numCliques(j, 1) > 0));
1399
}
1400
1401
- if (numFixedCols)
+ if (numFixedCols > 0 || numBoundsModified > 0)
1402
highsLogDev(options->log_options, HighsLogType::kInfo,
1403
- "Fixed %d dominated columns\n", numFixedCols);
+ "Fixed %d dominated columns and strengthened %d bounds\n",
1404
+ static_cast<int>(numFixedCols),
1405
+ static_cast<int>(numBoundsModified));
1406
1407
return Result::kOk;
1408
0 commit comments