3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-29 07:27:57 +00:00

add tracing for 2157

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-03-12 20:12:17 -07:00
parent 519e83bce4
commit 75b1e8fe27
5 changed files with 17 additions and 2 deletions

View file

@ -955,6 +955,7 @@ public:
}
void push_scope_eh() {
TRACE("arith", tout << "push\n";);
m_scopes.push_back(scope());
scope& s = m_scopes.back();
s.m_bounds_lim = m_bounds_trail.size();
@ -969,6 +970,7 @@ public:
}
void pop_scope_eh(unsigned num_scopes) {
TRACE("arith", tout << "pop " << num_scopes << "\n";);
if (num_scopes == 0) {
return;
}