3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-11 18:28:08 +00:00

fix scope and mus with user-scopes

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2014-08-15 11:29:08 -07:00
parent ee1a1b1135
commit be1cceba34
3 changed files with 15 additions and 5 deletions

View file

@ -896,6 +896,9 @@ namespace sat {
for (unsigned i = 0; i < num_lits; ++i)
tout << lits[i] << " ";
tout << "\n";
if (!m_user_scope_literals.empty()) {
tout << "user literals: " << m_user_scope_literals << "\n";
}
m_mc.display(tout);
);
#define _INSERT_LIT(_l_) \
@ -2237,6 +2240,7 @@ namespace sat {
lit = m_user_scope_literal_pool.back();
m_user_scope_literal_pool.pop_back();
}
TRACE("sat", tout << "user_push: " << lit << "\n";);
m_user_scope_literals.push_back(lit);
}