doc-src/Intro/gate.thy
author wenzelm
Tue, 23 Aug 1994 19:34:01 +0200
changeset 575 74f0e5fce609
parent 105 216d6ed87399
permissions -rw-r--r--
added print_syntax: theory -> unit;

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