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

Merge branch 'unstable' of https://git01.codeplex.com/z3 into unstable

This commit is contained in:
nikolajbjorner 2015-02-19 19:10:21 -08:00
commit a96a9a076d

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]);
}
}
};