mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 19:05:51 +00:00
interpolation fixes
This commit is contained in:
parent
75bb495585
commit
7fc011dbb8
2 changed files with 5 additions and 3 deletions
|
@ -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){
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue