mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 09:35:32 +00:00
better recovery from incompleteness and interp failure in duality
This commit is contained in:
parent
2d2ec38541
commit
b343dcb341
4 changed files with 25 additions and 5 deletions
|
@ -562,7 +562,10 @@ class iz3proof_itp_impl : public iz3proof_itp {
|
|||
else res = clone(e,args);
|
||||
}
|
||||
catch (const cannot_simplify &){
|
||||
res = clone(e,args);
|
||||
if(g == sum)
|
||||
res = clone(e,args);
|
||||
else
|
||||
throw "interpolation failure";
|
||||
}
|
||||
}
|
||||
return res;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue