3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-13 02:34:43 +00:00

remove spurious output

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-04-23 22:12:38 -07:00
parent 04fec3f6a0
commit 64cb5cad81
3 changed files with 34 additions and 41 deletions

View file

@ -2432,9 +2432,8 @@ namespace smt {
}
void context::pop_to_search_lvl() {
unsigned num_levels = m_scope_lvl - get_search_level();
if (num_levels > 0) {
pop_scope(num_levels);
if (m_scope_lvl > get_search_level()) {
pop_scope(m_scope_lvl - get_search_level());
}
}