We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f073da9 commit c634701Copy full SHA for c634701
src/math/lp/dioph_eq.cpp
@@ -2131,14 +2131,15 @@ namespace lp {
2131
do {
2132
init(f_vector);
2133
ret = process_f_and_tighten_terms(f_vector);
2134
- } while(ret == lia_move::continue_with_check);
+ }
2135
+ while (ret == lia_move::continue_with_check);
2136
- if (ret != lia_move::undef) {
2137
+ if (ret != lia_move::undef)
2138
return ret;
- }
2139
- if (lra.stats().m_dio_calls % lra.settings().dio_branching_period() == 0) {
+
2140
+ if (lra.stats().m_dio_calls % lra.settings().dio_branching_period() == 0)
2141
ret = branching_on_undef();
2142
2143
m_max_of_branching_iterations = (unsigned)m_max_of_branching_iterations / 2;
2144
2145
}
0 commit comments