author | paulson |
Tue, 01 Oct 1996 15:49:29 +0200 | |
changeset 2048 | bb54fbba0071 |
parent 2019 | b45d9f2042e0 |
child 2115 | 9709f9188549 |
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"; |
|
22 |
||
23 |
||
1338 | 24 |
use_thy "HOL"; |
923 | 25 |
use_thy "Ord"; |
26 |
use_thy "subset"; |
|
1470 | 27 |
use "typedef.ML"; |
923 | 28 |
use_thy "Sum"; |
29 |
use_thy "Gfp"; |
|
30 |
||
31 |
use "datatype.ML"; |
|
32 |
use "ind_syntax.ML"; |
|
33 |
use "add_ind_def.ML"; |
|
34 |
use "intr_elim.ML"; |
|
35 |
use "indrule.ML"; |
|
36 |
use_thy "Inductive"; |
|
37 |
||
1515 | 38 |
use_thy "RelPow"; |
923 | 39 |
use_thy "Finite"; |
40 |
use_thy "Sexp"; |
|
2019 | 41 |
use_thy "Option"; |
923 | 42 |
use_thy "List"; |
43 |
||
44 |
init_pps (); |
|
45 |
print_depth 8; |
|
46 |
||
1165 | 47 |
val HOL_build_completed = (); (*indicate successful build*) |