mirror of
https://github.com/Z3Prover/z3
synced 2025-07-31 08:23:17 +00:00
rename new_lemma to lemma_builder
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
2f2289eaff
commit
5bda42e104
17 changed files with 135 additions and 115 deletions
|
@ -228,7 +228,7 @@ struct solver::imp {
|
|||
ex.push_back(idx);
|
||||
TRACE(nra, lra.display_constraint(tout << "ex: " << idx << ": ", idx) << "\n";);
|
||||
}
|
||||
nla::new_lemma lemma(m_nla_core, __FUNCTION__);
|
||||
nla::lemma_builder lemma(m_nla_core, __FUNCTION__);
|
||||
lemma &= ex;
|
||||
m_nla_core.set_use_nra_model(true);
|
||||
break;
|
||||
|
@ -416,7 +416,7 @@ struct solver::imp {
|
|||
dm.linearize(static_cast<u_dependency*>(c), lv);
|
||||
for (auto ci : lv)
|
||||
ex.push_back(ci);
|
||||
nla::new_lemma lemma(m_nla_core, __FUNCTION__);
|
||||
nla::lemma_builder lemma(m_nla_core, __FUNCTION__);
|
||||
lemma &= ex;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue