doc-src/Intro/gate.thy
author wenzelm
Thu, 06 Mar 2008 20:44:54 +0100
changeset 26223 f4a1a96cc07c
parent 105 216d6ed87399
permissions -rw-r--r--
specific system_out (MosML lacks structure Posix); dummy implementation of Posix.ProcEnv.getpid;

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