author | wenzelm |
Wed, 09 Jul 1997 17:00:34 +0200 | |
changeset 3511 | da4dd8b7ced4 |
parent 3195 | dcb458d38724 |
child 3578 | b2b9a9ddb9cc |
permissions | -rw-r--r-- |
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1165
diff
changeset
|
1 |
(* Title: HOL/ROOT.ML |
923 | 2 |
ID: $Id$ |
3 |
Author: Tobias Nipkow |
|
4 |
Copyright 1993 University of Cambridge |
|
5 |
||
6 |
Adds Classical Higher-order Logic to a database containing Pure Isabelle. |
|
7 |
Should be executed in the subdirectory HOL. |
|
8 |
*) |
|
9 |
||
10 |
val banner = "Higher-Order Logic with curried functions"; |
|
11 |
writeln banner; |
|
12 |
||
13 |
print_depth 1; |
|
14 |
||
15 |
(* Add user sections *) |
|
16 |
use "../Pure/section_utils.ML"; |
|
17 |
use "thy_syntax.ML"; |
|
18 |
||
1024 | 19 |
use "../Provers/splitter.ML"; |
923 | 20 |
use "../Provers/hypsubst.ML"; |
21 |
use "../Provers/classical.ML"; |
|
2857 | 22 |
use "../Provers/blast.ML"; |
2115 | 23 |
use "../Provers/nat_transitive.ML"; |
923 | 24 |
|
25 |
||
1338 | 26 |
use_thy "HOL"; |
923 | 27 |
use_thy "Ord"; |
28 |
use_thy "subset"; |
|
1470 | 29 |
use "typedef.ML"; |
923 | 30 |
use_thy "Sum"; |
31 |
use_thy "Gfp"; |
|
32 |
||
33 |
use "datatype.ML"; |
|
34 |
use "ind_syntax.ML"; |
|
35 |
use "add_ind_def.ML"; |
|
36 |
use "intr_elim.ML"; |
|
37 |
use "indrule.ML"; |
|
38 |
use_thy "Inductive"; |
|
39 |
||
1515 | 40 |
use_thy "RelPow"; |
923 | 41 |
use_thy "Finite"; |
42 |
use_thy "Sexp"; |
|
2019 | 43 |
use_thy "Option"; |
3195 | 44 |
use_thy "WF_Rel"; |
923 | 45 |
use_thy "List"; |
46 |
||
3195 | 47 |
(*TFL: recursive function definitions*) |
48 |
cd "../TFL"; |
|
49 |
use "sys.sml"; |
|
50 |
cd "../HOL"; |
|
51 |
||
923 | 52 |
print_depth 8; |
53 |
||
1165 | 54 |
val HOL_build_completed = (); (*indicate successful build*) |