mirror of
https://github.com/Z3Prover/z3
synced 2025-08-07 03:31:23 +00:00
Assertion fix in inc_sat_solver
This commit is contained in:
parent
bf40bb8005
commit
1aeea763ff
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue