doc-src/TutorialI/Misc/fakenat.thy
author blanchet
Sat, 18 Dec 2010 12:53:56 +0100
changeset 41263 4cac389c005f
parent 16417 9bc16273c2d4
permissions -rw-r--r--
renamed function to run prover with minimizer and changed signature to clarify its semantics and make it a drop in replacement for "get_prover"
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     1
(*<*)
16417
9bc16273c2d4 migrated theory headers to new format
haftmann
parents: 11418
diff changeset
     2
theory fakenat imports Main begin;
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     3
(*>*)
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     4
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     5
text{*\noindent
11418
53a402c10ba9 indexing tweaks
paulson
parents: 9541
diff changeset
     6
The type \tydx{nat} of natural
53a402c10ba9 indexing tweaks
paulson
parents: 9541
diff changeset
     7
numbers is predefined to have the constructors \cdx{0} and~\cdx{Suc}.  It  behaves as if it were declared like this:
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     8
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     9
9541
d17c0b34d5c8 *** empty log message ***
nipkow
parents: 9494
diff changeset
    10
datatype nat = 0 | Suc nat
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    11
(*<*)
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    12
end
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    13
(*>*)