3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00

fixed pop issue and interpolation proof mode issue

This commit is contained in:
Ken McMillan 2014-08-26 13:46:53 -07:00
parent 97c5d09de1
commit 51aa10821e
2 changed files with 3 additions and 2 deletions

View file

@ -82,7 +82,7 @@ void solver_na2as::pop(unsigned n) {
}
void solver_na2as::restore_assumptions(unsigned old_sz) {
SASSERT(old_sz == 0);
// SASSERT(old_sz == 0);
for (unsigned i = old_sz; i < m_assumptions.size(); i++) {
m_manager.dec_ref(m_assumptions[i]);
}