When a formula in Z3 is unsat and (get-proof) is specified there is an output which I don't find any information about what it is. Where can I find any documentation about that?

Seems to me quite unreadable, is there possibly any tool that takes this as an input?

Cheers, Matt

link|improve this question
The command (get-unsat-core) seems to be what you want. Official example: rise4fun.com/Z3/smtc_core – pad Feb 2 at 11:04
feedback

1 Answer

up vote 2 down vote accepted

The "proofs" produced by Z3 are not for human consumption. An outdated version of the format is described in the paper: Proofs and Refutations, and Z3. The z3_api.h file has a long description of each one of the proof rules. The proof rule identifiers start with Z3_OP_PR. I am aware of two applications that use the Z3 proof objects. The following papers contain a lot of examples, and describe how the proof objects can be used.

1- Isabelle Interactive Theorem Prover: Z3 proofs are reconstructed inside of Isabelle using a trusted core. You can find several papers describing this work and the Z3 proof format at Sascha Bohme's homepage

2- Generation of interpolants

As pad said, unsat-cores are much simpler to use.

link|improve this answer
Thank a lot for your links. I will take a look at both methods. So also thanks to @pad ! – MattKay Feb 5 at 15:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.