doc-src/Intro/gate.thy
author wenzelm
Tue, 21 Nov 2006 20:48:11 +0100
changeset 21450 f16c9e6401d1
parent 105 216d6ed87399
permissions -rw-r--r--
theorem(_i): note assms of statement;

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