doc-src/Intro/gate.thy
author nipkow
Fri, 06 Oct 1995 11:20:04 +0100
changeset 1270 e3a391e848a9
parent 105 216d6ed87399
permissions -rw-r--r--
Added dependency on Eta

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