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:
parent
04fec3f6a0
commit
64cb5cad81
3 changed files with 34 additions and 41 deletions
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue