doc-src/Intro/gate.thy
author lcp
Fri, 03 Dec 1993 12:47:45 +0100
changeset 182 e30b55c07235
parent 105 216d6ed87399
permissions -rw-r--r--
New distributive laws for Sigma and UN

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