3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 19:05:51 +00:00

interpolation fixes

This commit is contained in:
Ken McMillan 2014-02-24 11:59:02 -08:00
parent 75bb495585
commit 7fc011dbb8
2 changed files with 5 additions and 3 deletions

View file

@ -64,7 +64,7 @@ struct frame_reducer : public iz3mgr {
: iz3mgr(other) {}
void get_proof_assumptions_rec(z3pf proof, hash_set<ast> &memo, std::vector<bool> &used_frames){
if(memo.count(proof))return;
if(memo.find(proof) != memo.end())return;
memo.insert(proof);
pfrule dk = pr(proof);
if(dk == PR_ASSERTED){