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

better model based lemmaas

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-03-06 15:11:13 +14:00
parent 8dec4bf8d0
commit d1a5635b4a

View file

@ -958,13 +958,14 @@ struct solver::imp {
int product_sign = rat_sign(m);
if (mon_sign != product_sign) {
basic_sign_lemma_model_based_one_mon(m, product_sign);
return true;
if (done())
return true;
}
i++;
if (i == m_to_refine.size())
i = 0;
} while (i != ii);
return false;
return m_lemma_vec->size() > 0;
}