doc-src/Intro/gate.thy
author huffman
Mon, 11 Jun 2007 05:20:05 +0200
changeset 23307 2fe3345035c7
parent 105 216d6ed87399
permissions -rw-r--r--
modify proofs to avoid referring to int::nat=>int

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