3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

bugfixes in intblast solver

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2023-12-13 14:13:16 -08:00
parent 5fdfd4f3f4
commit 5dfe86fc2d
10 changed files with 163 additions and 76 deletions

View file

@ -207,8 +207,10 @@ namespace lp {
#endif
m_cut_vars.reset();
if (r == lia_move::undef) r = int_branch(*this)();
if (settings().get_cancel_flag()) r = lia_move::undef;
if (settings().get_cancel_flag())
return lia_move::undef;
if (r == lia_move::undef)
r = int_branch(*this)();
return r;
}