doc-src/Intro/gate.thy
author blanchet
Tue, 07 Jun 2011 11:04:17 +0200
changeset 43233 2749c357f865
parent 105 216d6ed87399
permissions -rw-r--r--
use the proper prover name, e.g. metis_full_types, not metis (full_types), for minimizing

Gate = FOL +
consts  nand,xor :: "[o,o] => o"
rules   nand_def "nand(P,Q) == ~(P & Q)"
        xor_def  "xor(P,Q)  == P & ~Q | ~P & Q"
end