doc-src/Intro/gate.thy
author krauss
Tue, 31 May 2011 11:16:52 +0200
changeset 43083 df41a5762c3d
parent 105 216d6ed87399
permissions -rw-r--r--
generate raw induction rule as instance of generic rule with careful treatment of currying

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