doc-src/Intro/gate2.thy
author blanchet
Thu, 28 Jul 2011 16:32:39 +0200
changeset 44872 2b75760fa75e
parent 105 216d6ed87399
permissions -rw-r--r--
no needless mangling
     1 Gate2 = FOL +
     2 consts  "~&"     :: "[o,o] => o" (infixl 35)
     3         "#"      :: "[o,o] => o" (infixl 30)
     4         If       :: "[o,o,o] => o"       ("if _ then _ else _")
     5 rules   nand_def "P ~& Q == ~(P & Q)"    
     6         xor_def  "P # Q  == P & ~Q | ~P & Q"
     7         If_def   "if P then Q else R == P&Q | ~P&R"
     8 end