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 8f50991 commit a0da6cbCopy full SHA for a0da6cb
highs/mip/HighsPrimalHeuristics.cpp
@@ -297,9 +297,8 @@ void HighsPrimalHeuristics::rootReducedCost() {
297
HeuristicNeighbourhood neighbourhood(mipsolver, localdom);
298
299
double currCutoff = kHighsInf;
300
- double lower_bound;
301
-
302
- lower_bound = mipsolver.mipdata_->lower_bound + mipsolver.mipdata_->feastol;
+ double lower_bound =
+ mipsolver.mipdata_->lower_bound + mipsolver.mipdata_->feastol;
303
304
for (const std::pair<double, HighsDomainChange>& domchg : lurkingBounds) {
305
currCutoff = domchg.first;
0 commit comments