Skip to content

Commit 6ad7990

Browse files
committed
Rename
1 parent 15a1ad1 commit 6ad7990

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

highs/presolve/HPresolve.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4104,7 +4104,7 @@ HPresolve::Result HPresolve::colPresolve(HighsPostsolveStack& postsolve_stack,
41044104

41054105
// integer columns cannot be used to tighten bounds on dual multipliers
41064106
if (mipsolver != nullptr) {
4107-
auto modifyImpliedDualRowBound = [&](HighsInt col, HighsInt row,
4107+
auto modifyImpliedRowDualBound = [&](HighsInt col, HighsInt row,
41084108
HighsInt direction,
41094109
bool isBoundImplied, HighsInt numInf) {
41104110
if (isBoundImplied && row != -1 && numInf == 1 &&
@@ -4125,11 +4125,11 @@ HPresolve::Result HPresolve::colPresolve(HighsPostsolveStack& postsolve_stack,
41254125
}
41264126
};
41274127

4128-
modifyImpliedDualRowBound(col, colLowerSource[col], HighsInt{1},
4128+
modifyImpliedRowDualBound(col, colLowerSource[col], HighsInt{1},
41294129
isLowerImplied(col),
41304130
impliedDualRowBounds.getNumInfSumUpperOrig(col));
41314131

4132-
modifyImpliedDualRowBound(col, colUpperSource[col], HighsInt{-1},
4132+
modifyImpliedRowDualBound(col, colUpperSource[col], HighsInt{-1},
41334133
isUpperImplied(col),
41344134
impliedDualRowBounds.getNumInfSumLowerOrig(col));
41354135

0 commit comments

Comments
 (0)