doc-src/Intro/gate.thy
author webertj
Thu, 17 Jun 2004 21:58:51 +0200
changeset 14964 2c1456d705e9
parent 105 216d6ed87399
permissions -rw-r--r--
improved defcnf conversion

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