3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

make smt2 log scope aware

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-10-08 18:14:32 -07:00
parent 01f085ab53
commit 8bb2442a3f
5 changed files with 48 additions and 1 deletions

View file

@ -59,6 +59,7 @@ extern "C" {
void solver2smt2_pp::push() {
m_out << "(push)\n";
m_pp_util.push();
}
void solver2smt2_pp::reset() {
@ -68,6 +69,7 @@ extern "C" {
void solver2smt2_pp::pop(unsigned n) {
m_out << "(pop " << n << ")\n";
m_pp_util.pop(n);
}
void solver2smt2_pp::check(unsigned n, expr* const* asms) {