doc-src/Intro/gate.thy
author wenzelm
Mon, 09 Oct 2006 02:19:57 +0200
changeset 20905 33cf09dc9956
parent 105 216d6ed87399
permissions -rw-r--r--
Drule.lhs/rhs_of;

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