doc-src/Intro/gate.thy
author haftmann
Mon, 25 Sep 2006 17:04:17 +0200
changeset 20700 7e3450c10c2d
parent 105 216d6ed87399
permissions -rw-r--r--
updated theory description

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