doc-src/Intro/gate.thy
author berghofe
Wed, 06 Aug 1997 00:24:49 +0200
changeset 3603 5eef2ff0eb72
parent 105 216d6ed87399
permissions -rw-r--r--
This file now contains all functions for generating html and graph data.

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