3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

proof-checker: handle true-axiom

This commit is contained in:
Arie Gurfinkel 2018-05-21 10:44:29 -07:00
parent 4de58a42fe
commit 9550fd1ec4

View file

@ -211,6 +211,8 @@ bool proof_checker::check1_basic(proof* p, expr_ref_vector& side_conditions) {
switch(k) {
case PR_UNDEF:
return true;
case PR_TRUE:
return true;
case PR_ASSERTED:
return true;
case PR_GOAL: