Skip to content

Commit 8330e15

Browse files
committed
Make clang formatter happy
1 parent ebed29a commit 8330e15

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

highs/mip/HighsLpRelaxation.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1311,7 +1311,9 @@ HighsLpRelaxation::Status HighsLpRelaxation::resolveLp(HighsDomain* domain) {
13111311
double replace_ub = domain->col_upper_[subst->replace.col];
13121312
double feastol = mipsolver.mipdata_->feastol;
13131313
if ((replace_val < replace_lb - feastol) ||
1314-
(replace_val > replace_ub + feastol)) break;
1314+
(replace_val > replace_ub + feastol)) {
1315+
break;
1316+
}
13151317
}
13161318

13171319
col = subst->replace.col;

0 commit comments

Comments
 (0)