Skip to content

Commit d661cb6

Browse files
committed
Make clang fromatter happy
1 parent c4987da commit d661cb6

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

highs/mip/HighsDomain.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3215,8 +3215,9 @@ bool HighsDomain::ConflictSet::explainInfeasibility() {
32153215
HighsInt ninfmin;
32163216
HighsCDouble minAct;
32173217
globaldom.computeMinActivity(0, len, inds, vals, ninfmin, minAct);
3218-
// This case should only happen when a globally unbounded column is bounded
3219-
// in the local domain, e.g., by a branching choice in some heuristic.
3218+
// This case should only happen when a globally unbounded column is
3219+
// bounded in the local domain, e.g., by a branching choice in some
3220+
// heuristic.
32203221
if (ninfmin > 0) return false;
32213222

32223223
return explainInfeasibilityLeq(inds, vals, len, rhs, double(minAct));

highs/mip/HighsMipSolverData.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1120,8 +1120,10 @@ double HighsMipSolverData::transformNewIntegerFeasibleSolution(
11201120
}
11211121
}
11221122

1123-
const double transformed_solobj = static_cast<double>(static_cast<HighsInt>(mipsolver.orig_model_->sense_) *
1124-
mipsolver_quad_objective_value - mipsolver.model_->offset_);
1123+
const double transformed_solobj =
1124+
static_cast<double>(static_cast<HighsInt>(mipsolver.orig_model_->sense_) *
1125+
mipsolver_quad_objective_value -
1126+
mipsolver.model_->offset_);
11251127

11261128
// Possible MIP solution callback
11271129
if (!mipsolver.submip && feasible && mipsolver.callback_->user_callback &&

0 commit comments

Comments
 (0)