doc-src/Intro/gate.thy
author obua
Mon, 26 Sep 2005 02:06:44 +0200
changeset 17643 7e417a7cbf9f
parent 105 216d6ed87399
permissions -rw-r--r--
added Drule.disambiguate_frees : thm -> thm

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