doc-src/Intro/gate.thy
author wenzelm
Tue, 27 Oct 2009 11:25:56 +0100
changeset 33220 11a1af478dac
parent 105 216d6ed87399
permissions -rw-r--r--
SimpleThread.fork: uniform handling of outermost Interrupt, which is not an error and should not produce exception trace;

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