Skip to content

Commit e62f998

Browse files
committed
Log message
1 parent 4b1fbe7 commit e62f998

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

highs/presolve/HPresolve.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1398,9 +1398,11 @@ HPresolve::Result HPresolve::dominatedColumns(
13981398
mipsolver->mipdata_->cliquetable.numCliques(j, 1) > 0));
13991399
}
14001400

1401-
if (numFixedCols)
1401+
if (numFixedCols > 0 || numBoundsModified > 0)
14021402
highsLogDev(options->log_options, HighsLogType::kInfo,
1403-
"Fixed %d dominated columns\n", numFixedCols);
1403+
"Fixed %d dominated columns and strengthened %d bounds\n",
1404+
static_cast<int>(numFixedCols),
1405+
static_cast<int>(numBoundsModified));
14041406

14051407
return Result::kOk;
14061408
}

0 commit comments

Comments
 (0)