mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 02:42:02 +00:00
parent
27114ce9dd
commit
8bd0407adf
2 changed files with 7 additions and 5 deletions
|
@ -2406,7 +2406,7 @@ namespace smt {
|
|||
if (m_manager.has_trace_stream())
|
||||
m_manager.trace_stream() << "[pop] " << num_scopes << " " << m_scope_lvl << "\n";
|
||||
|
||||
TRACE("context", tout << "backtracking: " << num_scopes << "\n";);
|
||||
TRACE("context", tout << "backtracking: " << num_scopes << " from " << m_scope_lvl << "\n";);
|
||||
TRACE("pop_scope_detail", display(tout););
|
||||
SASSERT(num_scopes > 0);
|
||||
SASSERT(num_scopes <= m_scope_lvl);
|
||||
|
@ -2912,6 +2912,7 @@ namespace smt {
|
|||
|
||||
void context::pop(unsigned num_scopes) {
|
||||
SASSERT (num_scopes > 0);
|
||||
if (num_scopes > m_scope_lvl) return;
|
||||
pop_to_base_lvl();
|
||||
pop_scope(num_scopes);
|
||||
}
|
||||
|
|
|
@ -148,6 +148,7 @@ namespace smt {
|
|||
m_node1(n1),
|
||||
m_node2(n2),
|
||||
m_js(js) {
|
||||
SASSERT(n1 != n2);
|
||||
}
|
||||
|
||||
virtual void get_antecedents(conflict_resolution & cr);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue