doc-src/Intro/gate.thy
author wenzelm
Tue, 18 Oct 2005 17:59:29 +0200
changeset 17896 66902148c436
parent 105 216d6ed87399
permissions -rw-r--r--
functor: no Simplifier argument; Simplifier.theory_context;

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