3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-08-28 15:10:52 -07:00
parent b8fb744935
commit 60f8884dbd

View file

@ -760,10 +760,10 @@ void goal2sat::operator()(goal const & g, params_ref const & p, sat::solver_core
g.m_imp->m_cache.reset();
}
};
scoped_reset _reset(*this);
(*m_imp)(g);
{
scoped_reset _reset(*this);
(*m_imp)(g);
}
m_interpreted_atoms = alloc(expr_ref_vector, g.m());
m_interpreted_atoms->append(m_imp->m_interpreted_atoms);