3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-19 10:52:02 +00:00

remove assert on failed label compuation in duality

This commit is contained in:
Ken McMillan 2013-12-23 11:47:24 -08:00
parent 673ba137e5
commit 1b9f1ea6b3
2 changed files with 2 additions and 1 deletions

View file

@ -1492,7 +1492,7 @@ namespace Duality {
} }
} }
/* Unreachable! */ /* Unreachable! */
throw "error in RPFP::GetLabelsRec"; // throw "error in RPFP::GetLabelsRec";
goto done; goto done;
} }
else if(k == Not) { else if(k == Not) {

View file

@ -1620,6 +1620,7 @@ namespace Duality {
#ifdef USE_CACHING_RPFP #ifdef USE_CACHING_RPFP
cache_ls->slvr->pop(1); cache_ls->slvr->pop(1);
delete cache_ls; delete cache_ls;
tree->ls = rpfp->ls;
#endif #endif
timer_stop("Derive"); timer_stop("Derive");
return res; return res;