doc-src/Intro/gate.thy
author paulson
Thu, 05 Sep 1996 10:29:20 +0200
changeset 1950 97f1c6bf3ace
parent 105 216d6ed87399
permissions -rw-r--r--
Miniscoping rules are deleted, as these brittle proofs would otherwise have to be entirely redone

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