doc-src/Intro/gate.thy
author kleing
Mon, 25 Sep 2000 12:08:49 +0200
changeset 10069 c7226e6f9625
parent 105 216d6ed87399
permissions -rw-r--r--
untabified for HTML

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