3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-07 18:05:21 +00:00

Assertion fix in inc_sat_solver

This commit is contained in:
Christoph M. Wintersteiger 2016-03-02 18:39:28 +00:00
parent bf40bb8005
commit 1aeea763ff

View file

@ -187,7 +187,7 @@ public:
}
m_bb_rewriter.pop(n);
m_map.pop(n);
SASSERT(n >= m_num_scopes);
SASSERT(n <= m_num_scopes);
m_solver.user_pop(n);
m_num_scopes -= n;
while (n > 0) {