doc-src/Intro/gate.thy
author nipkow
Wed, 10 Jan 2001 20:41:14 +0100
changeset 10863 fef84fefd33f
parent 105 216d6ed87399
permissions -rw-r--r--
Added <cdot> syntax for continuous application $.

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