doc-src/Intro/gate.thy
author kleing
Mon, 19 Apr 2004 14:04:41 +0200
changeset 14632 805fa01ac233
parent 105 216d6ed87399
permissions -rw-r--r--
temporarily reverted quote change for release. breaks latex output, needs more testing.

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