3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-16 05:48:44 +00:00

fixed interpolation bug

This commit is contained in:
Ken McMillan 2015-02-19 12:25:06 -08:00
parent 882dbfc706
commit 185f9325a6

View file

@ -127,7 +127,7 @@ struct frame_reducer : public iz3mgr {
for(int i = 0; i < frames-2; i++){
int p = orig_parents_copy.size() == 0 ? i+1 : orig_parents_copy[i];
if(p < frames - 1 && !used_frames[p])
interpolants[p] = interpolants[i];
interpolants[p] = mk_and(interpolants[i],interpolants[p]);
}
}
};