Skip to content

Commit c634701

Browse files
NikolajBjornerlevnach
authored andcommitted
formatting
Signed-off-by: Nikolaj Bjorner <[email protected]>
1 parent f073da9 commit c634701

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/math/lp/dioph_eq.cpp

+6-5
Original file line numberDiff line numberDiff line change
@@ -2131,14 +2131,15 @@ namespace lp {
21312131
do {
21322132
init(f_vector);
21332133
ret = process_f_and_tighten_terms(f_vector);
2134-
} while(ret == lia_move::continue_with_check);
2134+
}
2135+
while (ret == lia_move::continue_with_check);
21352136

2136-
if (ret != lia_move::undef) {
2137+
if (ret != lia_move::undef)
21372138
return ret;
2138-
}
2139-
if (lra.stats().m_dio_calls % lra.settings().dio_branching_period() == 0) {
2139+
2140+
if (lra.stats().m_dio_calls % lra.settings().dio_branching_period() == 0)
21402141
ret = branching_on_undef();
2141-
}
2142+
21422143
m_max_of_branching_iterations = (unsigned)m_max_of_branching_iterations / 2;
21432144
return ret;
21442145
}

0 commit comments

Comments
 (0)