doc-src/Intro/gate.thy
author berghofe
Thu, 06 Sep 2007 11:33:45 +0200
changeset 24531 aa3aacb22e65
parent 105 216d6ed87399
permissions -rw-r--r--
Integrated code generator setup into Rational theory.

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