3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 10:55:50 +00:00

trace push/pop

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-07-31 14:22:57 -07:00
parent 98d42421bc
commit c7898b1977
2 changed files with 4 additions and 0 deletions

View file

@ -187,9 +187,11 @@ public:
switch_inc_mode();
m_solver1->push();
m_solver2->push();
TRACE("pop", tout << "push\n";);
}
void pop(unsigned n) override {
TRACE("pop", tout << n << "\n";);
switch_inc_mode();
m_solver1->pop(n);
m_solver2->pop(n);