3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 09:34:08 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-04-26 21:04:04 -07:00
parent fc1321f8b3
commit 6d4bd37e15

View file

@ -1460,10 +1460,10 @@ namespace qe {
if (assumption) m_solver.assert_expr(assumption);
bool is_sat = false;
lbool res = l_true;
if (has_uninterpreted(m_fml))
res = l_undef;
while (res == l_true) {
res = m_solver.check();
if (res == l_true && has_uninterpreted(m_fml))
res = l_undef;
if (res == l_true) {
is_sat = true;
final_check();