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:
parent
8dec4bf8d0
commit
d1a5635b4a
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue