mirror of
https://github.com/Z3Prover/z3
synced 2025-04-05 17:14:07 +00:00
move lemma creation into nra_solver
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
d706d43712
commit
8b546867f0
|
@ -1511,25 +1511,15 @@ lbool core::check(vector<lemma>& l_vec) {
|
|||
m_tangents.tangent_lemma();
|
||||
}
|
||||
|
||||
if (lp_settings().get_cancel_flag())
|
||||
if (!m_reslim.inc())
|
||||
return l_undef;
|
||||
|
||||
|
||||
finish_up:
|
||||
lbool ret = l_vec.empty() ? l_undef : l_false;
|
||||
#if 0
|
||||
if (l_vec.empty()) {
|
||||
lp::explanation expl;
|
||||
ret = m_nra.check(expl);
|
||||
|
||||
if (ret == l_false) {
|
||||
new_lemma lemma(*this, __FUNCTION__);
|
||||
lemma &= expl;
|
||||
set_use_nra_model(true);
|
||||
} else if (ret == l_true) {
|
||||
set_use_nra_model(true);
|
||||
}
|
||||
}
|
||||
if (l_vec.empty())
|
||||
ret = m_nra.check();
|
||||
}
|
||||
#endif
|
||||
|
||||
TRACE("nla_solver", tout << "ret = " << ret << ", lemmas count = " << l_vec.size() << "\n";);
|
||||
|
|
|
@ -51,7 +51,8 @@ struct solver::imp {
|
|||
TBD: use partial model from lra_solver to prime the state of nlsat_solver.
|
||||
TBD: explore more incremental ways of applying nlsat (using assumptions)
|
||||
*/
|
||||
lbool check(lp::explanation& ex) {
|
||||
lbool check() {
|
||||
lp::explanation ex;
|
||||
SASSERT(need_check() && ex.size() == 0);
|
||||
m_nlsat = alloc(nlsat::solver, m_limit, m_params, false);
|
||||
m_zero = alloc(scoped_anum, am());
|
||||
|
@ -89,8 +90,9 @@ struct solver::imp {
|
|||
TRACE("arith", display(tout); m_nlsat->display(tout << r << "\n"););
|
||||
switch (r) {
|
||||
case l_true:
|
||||
m_nla_core.set_use_nra_model(true);
|
||||
break;
|
||||
case l_false:
|
||||
case l_false: {
|
||||
ex.clear();
|
||||
m_nlsat->get_core(core);
|
||||
for (auto c : core) {
|
||||
|
@ -98,8 +100,11 @@ struct solver::imp {
|
|||
ex.push_justification(idx, rational(1));
|
||||
TRACE("arith", tout << "ex: " << idx << "\n";);
|
||||
}
|
||||
nla::new_lemma lemma(m_nla_core, __FUNCTION__);
|
||||
lemma &= ex;
|
||||
m_nla_core.set_use_nra_model(true);
|
||||
break;
|
||||
|
||||
}
|
||||
case l_undef:
|
||||
break;
|
||||
}
|
||||
|
@ -231,8 +236,8 @@ solver::~solver() {
|
|||
}
|
||||
|
||||
|
||||
lbool solver::check(lp::explanation& ex) {
|
||||
return m_imp->check(ex);
|
||||
lbool solver::check() {
|
||||
return m_imp->check();
|
||||
}
|
||||
|
||||
bool solver::need_check() {
|
||||
|
|
|
@ -34,7 +34,7 @@ namespace nra {
|
|||
\brief Check feasiblity of linear constraints augmented by polynomial definitions
|
||||
that are added.
|
||||
*/
|
||||
lbool check(lp::explanation& ex);
|
||||
lbool check();
|
||||
|
||||
/*
|
||||
\brief determine whether nra check is needed.
|
||||
|
|
Loading…
Reference in a new issue