3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

push explanation to where it is used

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-05-12 19:55:07 -07:00
parent 8b546867f0
commit 127ef59ce4

View file

@ -52,8 +52,7 @@ struct solver::imp {
TBD: explore more incremental ways of applying nlsat (using assumptions) TBD: explore more incremental ways of applying nlsat (using assumptions)
*/ */
lbool check() { lbool check() {
lp::explanation ex; SASSERT(need_check());
SASSERT(need_check() && ex.size() == 0);
m_nlsat = alloc(nlsat::solver, m_limit, m_params, false); m_nlsat = alloc(nlsat::solver, m_limit, m_params, false);
m_zero = alloc(scoped_anum, am()); m_zero = alloc(scoped_anum, am());
m_terms.reset(); m_terms.reset();
@ -93,7 +92,7 @@ struct solver::imp {
m_nla_core.set_use_nra_model(true); m_nla_core.set_use_nra_model(true);
break; break;
case l_false: { case l_false: {
ex.clear(); lp::explanation ex;
m_nlsat->get_core(core); m_nlsat->get_core(core);
for (auto c : core) { for (auto c : core) {
unsigned idx = static_cast<unsigned>(static_cast<imp*>(c) - this); unsigned idx = static_cast<unsigned>(static_cast<imp*>(c) - this);