doc-src/Intro/gate.thy
author clasohm
Wed, 06 Mar 1996 14:11:41 +0100
changeset 1555 a5f48457dfd5
parent 105 216d6ed87399
permissions -rw-r--r--
added constdefs

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