3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-28 10:51:28 +00:00

bug fixes reported by Miguel

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-10-25 13:36:48 -07:00
parent b72225d7d0
commit 32711790e8
6 changed files with 17 additions and 4 deletions

View file

@ -2396,7 +2396,7 @@ namespace sat {
init_use_lists();
remove_unused_defs();
set_non_external();
elim_pure();
if (get_config().m_elim_vars) elim_pure();
for (unsigned sz = m_constraints.size(), i = 0; i < sz; ++i) subsumption(*m_constraints[i]);
for (unsigned sz = m_learned.size(), i = 0; i < sz; ++i) subsumption(*m_learned[i]);
cleanup_clauses();