3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00

dealing with incompleteness issues in duality

This commit is contained in:
Ken McMillan 2013-12-19 11:05:56 -08:00
parent a318b0f104
commit 48e10a9e2d
5 changed files with 32 additions and 7 deletions

View file

@ -1642,6 +1642,10 @@ public:
res = iproof->make_axiom(lits);
break;
}
case PR_IFF_TRUE: { // turns p into p <-> true, noop for us
res = args[0];
break;
}
default:
assert(0 && "translate_main: unsupported proof rule");
throw unsupported();