doc-src/Intro/gate.thy
author wenzelm
Tue, 16 Feb 2010 20:41:52 +0100
changeset 35149 eee63670b5aa
parent 105 216d6ed87399
permissions -rw-r--r--
simplified/clarified record print translations;

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