doc-src/Intro/gate.thy
author paulson
Thu, 11 Sep 1997 12:24:28 +0200
changeset 3668 a39baf59ea47
parent 105 216d6ed87399
permissions -rw-r--r--
Split base cases from "msg" to "atomic" in order to reduce the number of freeness theorems

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