3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

bad merge?

This commit is contained in:
Jakob Rath 2024-02-26 11:56:04 +01:00
parent 183e911a79
commit af017d0906

View file

@ -201,12 +201,7 @@ namespace lp {
if (r == lia_move::undef && should_gomory_cut()) r = gomory(*this).get_gomory_cuts(2);
if (r == lia_move::undef) r = int_branch(*this)();
m_cut_vars.reset();
if (settings().get_cancel_flag())
return lia_move::undef;
if (r == lia_move::undef)
r = int_branch(*this)();
if (settings().get_cancel_flag()) r = lia_move::undef;
return r;
}