doc-src/Intro/gate.thy
author huffman
Thu, 17 Dec 2009 13:49:36 -0800
changeset 34113 dbc0fb6e7eae
parent 105 216d6ed87399
permissions -rw-r--r--
add lemma INFM_conjI

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