doc-src/Intro/gate.thy
author oheimb
Mon, 12 Apr 2004 12:52:08 +0200
changeset 14536 43e436a4f293
parent 105 216d6ed87399
permissions -rw-r--r--
added HOLCF/Streams.thy (with concatenation etc.)

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