src/ZF/ex/ROOT.ML
author wenzelm
Tue, 30 May 2000 16:08:38 +0200
changeset 9000 c20d58286a51
parent 6349 f7750d816c21
child 9647 e9623f47275b
permissions -rw-r--r--
cleaned up;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1351
diff changeset
     1
(*  Title:      ZF/ex/ROOT
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     2
    ID:         $Id$
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1351
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     4
    Copyright   1993  University of Cambridge
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     5
919
49271bd72c42 No longer calls maketest; instead, the Makefile writes the file
lcp
parents: 589
diff changeset
     6
Executes miscellaneous examples for Zermelo-Fraenkel Set Theory
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     7
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     8
1351
4a960c012383 removed make_chart;
clasohm
parents: 1296
diff changeset
     9
time_use     "misc.ML";
2248
187d001fbe79 Better indentation
paulson
parents: 1793
diff changeset
    10
time_use_thy "Primes";          (*GCD theory*)
187d001fbe79 Better indentation
paulson
parents: 1793
diff changeset
    11
time_use_thy "Ramsey";          (*Simple form of Ramsey's theorem*)
187d001fbe79 Better indentation
paulson
parents: 1793
diff changeset
    12
time_use_thy "Limit";           (*Inverse limit construction of domains*)
5533
bce36a019b03 re-organized for the new directory Integ
paulson
parents: 4446
diff changeset
    13
time_use     "BinEx";		(*Binary integer arithmetic*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    14
960
358a19a91d52 Removed exception handlers, as they are now in ZF/Makefile.
lcp
parents: 919
diff changeset
    15
(** Datatypes **)
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1351
diff changeset
    16
time_use_thy "BT";              (*binary trees*)
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1351
diff changeset
    17
time_use_thy "Data";            (*Sample datatype*)
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1351
diff changeset
    18
time_use_thy "Term";            (*terms: recursion over the list functor*)
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1351
diff changeset
    19
time_use_thy "TF";              (*trees/forests: mutual recursion*)
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1351
diff changeset
    20
time_use_thy "Ntree";           (*variable-branching trees; function demo*)
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1351
diff changeset
    21
time_use_thy "Brouwer";         (*Infinite-branching trees*)
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1351
diff changeset
    22
time_use_thy "Enum";            (*Enormous enumeration type*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    23
960
358a19a91d52 Removed exception handlers, as they are now in ZF/Makefile.
lcp
parents: 919
diff changeset
    24
(** Inductive definitions **)
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1351
diff changeset
    25
time_use_thy "Rmap";            (*mapping a relation over a list*)
6045
6a9dc67d48f5 fixed comment
paulson
parents: 5533
diff changeset
    26
time_use_thy "Mutil";           (*mutilated chess board*)
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1351
diff changeset
    27
time_use_thy "PropLog";         (*completeness of propositional logic*)
960
358a19a91d52 Removed exception handlers, as they are now in ZF/Makefile.
lcp
parents: 919
diff changeset
    28
(*two Coq examples by Christine Paulin-Mohring*)
1351
4a960c012383 removed make_chart;
clasohm
parents: 1296
diff changeset
    29
time_use_thy "ListN";
4a960c012383 removed make_chart;
clasohm
parents: 1296
diff changeset
    30
time_use_thy "Acc";
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1351
diff changeset
    31
time_use_thy "Comb";            (*Combinatory Logic example*)
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1351
diff changeset
    32
time_use_thy "Primrec";         (*Primitive recursive functions*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    33
960
358a19a91d52 Removed exception handlers, as they are now in ZF/Makefile.
lcp
parents: 919
diff changeset
    34
(** CoDatatypes **)
1351
4a960c012383 removed make_chart;
clasohm
parents: 1296
diff changeset
    35
time_use_thy "LList";
4a960c012383 removed make_chart;
clasohm
parents: 1296
diff changeset
    36
time_use_thy "CoUnit";