doc-src/Intro/gate.thy
author haftmann
Sat, 02 Jul 2011 22:14:47 +0200
changeset 43653 905f17258bca
parent 105 216d6ed87399
permissions -rw-r--r--
tuned typo

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