doc-src/Intro/gate.thy
author oheimb
Wed, 18 Feb 1998 18:42:54 +0100
changeset 4633 d4a074973715
parent 105 216d6ed87399
permissions -rw-r--r--
corrected problem with auto_tac: now uses a variant of depth_tac that avoids interference of the simplifier with dup_step_tac

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