doc-src/TutorialI/Misc/fakenat.thy
author blanchet
Mon, 27 Jun 2011 13:52:47 +0200
changeset 43566 a818d5a34cca
parent 16417 9bc16273c2d4
permissions -rw-r--r--
filter out some tautologies using an ATP, especially for those theories that are known for producing such things

(*<*)
theory fakenat imports Main begin;
(*>*)

text{*\noindent
The type \tydx{nat} of natural
numbers is predefined to have the constructors \cdx{0} and~\cdx{Suc}.  It  behaves as if it were declared like this:
*}

datatype nat = 0 | Suc nat
(*<*)
end
(*>*)