mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 12:08:18 +00:00
Assertion fix in inc_sat_solver
This commit is contained in:
parent
bf40bb8005
commit
1aeea763ff
|
@ -187,7 +187,7 @@ public:
|
||||||
}
|
}
|
||||||
m_bb_rewriter.pop(n);
|
m_bb_rewriter.pop(n);
|
||||||
m_map.pop(n);
|
m_map.pop(n);
|
||||||
SASSERT(n >= m_num_scopes);
|
SASSERT(n <= m_num_scopes);
|
||||||
m_solver.user_pop(n);
|
m_solver.user_pop(n);
|
||||||
m_num_scopes -= n;
|
m_num_scopes -= n;
|
||||||
while (n > 0) {
|
while (n > 0) {
|
||||||
|
|
Loading…
Reference in a new issue