doc-src/Intro/gate.thy
author bulwahn
Thu, 21 Oct 2010 19:13:09 +0200
changeset 40051 b6acda4d1c29
parent 105 216d6ed87399
permissions -rw-r--r--
added generator_dseq compilation for a sound depth-limited compilation with small value generators

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