3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 12:28:44 +00:00

move declarations closer to usage

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2020-05-26 16:35:43 -07:00
parent 9b7f97fab9
commit 4b76e213a5

View file

@ -157,10 +157,10 @@ lia_move int_solver::check(lp::explanation * e) {
++m_number_of_calls;
if (r == lia_move::undef && m_patcher.should_apply()) r = m_patcher();
if (r == lia_move::undef && should_find_cube()) r = cube(*this)();
if (r == lia_move::undef && should_find_cube()) r = int_cube(*this)();
if (r == lia_move::undef && should_hnf_cut()) r = hnf_cut();
if (r == lia_move::undef && should_gomory_cut()) r = gc(*this)();
if (r == lia_move::undef) r = branch(*this)();
if (r == lia_move::undef && should_gomory_cut()) r = gomory(*this)();
if (r == lia_move::undef) r = int_branch(*this)();
return r;
}