Skip to content

Commit 7af2517

Browse files
committed
Formatting
1 parent 6af61cb commit 7af2517

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

highs/mip/HighsImplications.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -931,12 +931,14 @@ void HighsImplications::applyPrecedenceGraph(
931931
if (boundchg.boundtype == HighsBoundType::kLower) {
932932
const double newLb = domain.col_lower_[boundchg.column] - shift;
933933
if (domain.col_lower_[col] < newLb - domain.feastol()) {
934-
domain.changeBound({newLb, col, HighsBoundType::kLower}, HighsDomain::Reason::unspecified());
934+
domain.changeBound({newLb, col, HighsBoundType::kLower},
935+
HighsDomain::Reason::unspecified());
935936
}
936937
} else if (boundchg.boundtype == HighsBoundType::kUpper) {
937938
const double newUb = domain.col_upper_[boundchg.column] + shift;
938939
if (domain.col_upper_[col] > newUb + domain.feastol()) {
939-
domain.changeBound({newUb, col, HighsBoundType::kUpper}, HighsDomain::Reason::unspecified());
940+
domain.changeBound({newUb, col, HighsBoundType::kUpper},
941+
HighsDomain::Reason::unspecified());
940942
}
941943
}
942944
if (domain.infeasible()) return;

0 commit comments

Comments
 (0)