doc-src/Intro/gate.thy
author paulson
Thu, 15 Jul 1999 10:34:00 +0200
changeset 7009 d6a721e7125d
parent 105 216d6ed87399
permissions -rw-r--r--
more renaming of theorems from _nat to _int (corresponding to a function that was similarly renamed some time ago

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