| author | nipkow |
| Fri, 29 Nov 1996 15:07:27 +0100 | |
| changeset 2279 | 2f337bf81085 |
| parent 2115 | 9709f9188549 |
| child 2857 | 848bce5fe8ad |
| 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"; |
|
| 2115 | 22 |
use "../Provers/nat_transitive.ML"; |
| 923 | 23 |
|
24 |
||
| 1338 | 25 |
use_thy "HOL"; |
| 923 | 26 |
use_thy "Ord"; |
27 |
use_thy "subset"; |
|
| 1470 | 28 |
use "typedef.ML"; |
| 923 | 29 |
use_thy "Sum"; |
30 |
use_thy "Gfp"; |
|
31 |
||
32 |
use "datatype.ML"; |
|
33 |
use "ind_syntax.ML"; |
|
34 |
use "add_ind_def.ML"; |
|
35 |
use "intr_elim.ML"; |
|
36 |
use "indrule.ML"; |
|
37 |
use_thy "Inductive"; |
|
38 |
||
| 1515 | 39 |
use_thy "RelPow"; |
| 923 | 40 |
use_thy "Finite"; |
41 |
use_thy "Sexp"; |
|
| 2019 | 42 |
use_thy "Option"; |
| 923 | 43 |
use_thy "List"; |
44 |
||
45 |
init_pps (); |
|
46 |
print_depth 8; |
|
47 |
||
| 1165 | 48 |
val HOL_build_completed = (); (*indicate successful build*) |