doc-src/Intro/gate.thy
author huffman
Wed, 18 Feb 2009 09:47:58 -0800
changeset 29977 d76b830366bc
parent 105 216d6ed87399
permissions -rw-r--r--
move polynomial order stuff from Fundamental_Theorem_Algebra to Polynomial

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