mirror of
https://github.com/Z3Prover/z3
synced 2025-07-20 19:32:04 +00:00
fixed interpolation bug
This commit is contained in:
parent
882dbfc706
commit
185f9325a6
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ struct frame_reducer : public iz3mgr {
|
||||||
for(int i = 0; i < frames-2; i++){
|
for(int i = 0; i < frames-2; i++){
|
||||||
int p = orig_parents_copy.size() == 0 ? i+1 : orig_parents_copy[i];
|
int p = orig_parents_copy.size() == 0 ? i+1 : orig_parents_copy[i];
|
||||||
if(p < frames - 1 && !used_frames[p])
|
if(p < frames - 1 && !used_frames[p])
|
||||||
interpolants[p] = interpolants[i];
|
interpolants[p] = mk_and(interpolants[i],interpolants[p]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue