3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-19 17:50:23 +00:00

added quantifiers in new interpolation

This commit is contained in:
Ken McMillan 2013-10-25 18:40:26 -07:00
parent 79b0f83ab3
commit 81df4932fb
7 changed files with 133 additions and 81 deletions

View file

@ -1141,7 +1141,8 @@ public:
std::vector<ast> itps;
for(int i = 0; i < frames -1; i++){
iproof = iz3proof_itp::create(this,range_downward(i),weak_mode());
ast itp = translate_main(proof);
Iproof::node ipf = translate_main(proof);
ast itp = iproof->interpolate(ipf);
itps.push_back(itp);
delete iproof;
clear_translation();