Skip to content

Commit a0da6cb

Browse files
committed
Minor change
1 parent 8f50991 commit a0da6cb

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

highs/mip/HighsPrimalHeuristics.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,9 +297,8 @@ void HighsPrimalHeuristics::rootReducedCost() {
297297
HeuristicNeighbourhood neighbourhood(mipsolver, localdom);
298298

299299
double currCutoff = kHighsInf;
300-
double lower_bound;
301-
302-
lower_bound = mipsolver.mipdata_->lower_bound + mipsolver.mipdata_->feastol;
300+
double lower_bound =
301+
mipsolver.mipdata_->lower_bound + mipsolver.mipdata_->feastol;
303302

304303
for (const std::pair<double, HighsDomainChange>& domchg : lurkingBounds) {
305304
currCutoff = domchg.first;

0 commit comments

Comments
 (0)