mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 04:03:39 +00:00
formatting
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
f073da9edd
commit
c634701b8f
|
@ -2131,14 +2131,15 @@ namespace lp {
|
||||||
do {
|
do {
|
||||||
init(f_vector);
|
init(f_vector);
|
||||||
ret = process_f_and_tighten_terms(f_vector);
|
ret = process_f_and_tighten_terms(f_vector);
|
||||||
} while(ret == lia_move::continue_with_check);
|
|
||||||
|
|
||||||
if (ret != lia_move::undef) {
|
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
if (lra.stats().m_dio_calls % lra.settings().dio_branching_period() == 0) {
|
while (ret == lia_move::continue_with_check);
|
||||||
|
|
||||||
|
if (ret != lia_move::undef)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
if (lra.stats().m_dio_calls % lra.settings().dio_branching_period() == 0)
|
||||||
ret = branching_on_undef();
|
ret = branching_on_undef();
|
||||||
}
|
|
||||||
m_max_of_branching_iterations = (unsigned)m_max_of_branching_iterations / 2;
|
m_max_of_branching_iterations = (unsigned)m_max_of_branching_iterations / 2;
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue