doc-src/Intro/gate.thy
author blanchet
Fri, 17 Dec 2010 18:23:56 +0100
changeset 41255 a80024d7b71b
parent 105 216d6ed87399
permissions -rw-r--r--
added debugging option to find out how good the relevance filter was at identifying relevant facts

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