author | paulson |
Wed, 05 Aug 1998 10:57:25 +0200 | |
changeset 5253 | 82a5ca6290aa |
parent 5219 | 924359415f09 |
child 5298 | 81716d9b2b09 |
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 |
||
3947 | 10 |
val banner = "Higher-Order Logic"; |
923 | 11 |
writeln banner; |
12 |
||
13 |
print_depth 1; |
|
14 |
||
15 |
(* Add user sections *) |
|
4222 | 16 |
use "$ISABELLE_HOME/src/Pure/section_utils.ML"; |
923 | 17 |
use "thy_syntax.ML"; |
18 |
||
4222 | 19 |
use "$ISABELLE_HOME/src/Provers/simplifier.ML"; |
20 |
use "$ISABELLE_HOME/src/Provers/splitter.ML"; |
|
21 |
use "$ISABELLE_HOME/src/Provers/hypsubst.ML"; |
|
22 |
use "$ISABELLE_HOME/src/Provers/classical.ML"; |
|
23 |
use "$ISABELLE_HOME/src/Provers/blast.ML"; |
|
5219 | 24 |
use "$ISABELLE_HOME/src/Provers/clasimp.ML"; |
4296 | 25 |
use "$ISABELLE_HOME/src/Provers/Arith/nat_transitive.ML"; |
26 |
use "$ISABELLE_HOME/src/Provers/Arith/cancel_sums.ML"; |
|
27 |
use "$ISABELLE_HOME/src/Provers/Arith/cancel_factor.ML"; |
|
4320
24d9e6639cd4
Moved the quantifier elimination simp procs into Provers.
nipkow
parents:
4296
diff
changeset
|
28 |
use "$ISABELLE_HOME/src/Provers/quantifier1.ML"; |
923 | 29 |
|
1338 | 30 |
use_thy "HOL"; |
4088 | 31 |
use "hologic.ML"; |
32 |
use "cladata.ML"; |
|
33 |
use "simpdata.ML"; |
|
34 |
||
923 | 35 |
use_thy "Ord"; |
36 |
use_thy "subset"; |
|
4864 | 37 |
use "Tools/typedef_package.ML"; |
5105 | 38 |
use_thy "Sum"; |
39 |
use_thy "Gfp"; |
|
923 | 40 |
|
4864 | 41 |
use "Tools/record_package.ML"; |
42 |
use_thy "Record"; |
|
4573 | 43 |
|
5183 | 44 |
use_thy "NatDef"; |
4296 | 45 |
|
5097 | 46 |
use "Tools/inductive_package.ML"; |
5105 | 47 |
use_thy "Inductive"; |
923 | 48 |
|
5183 | 49 |
use "Tools/datatype_aux.ML"; |
50 |
use "Tools/datatype_prop.ML"; |
|
51 |
use "Tools/datatype_rep_proofs.ML"; |
|
52 |
use "Tools/datatype_abs_proofs.ML"; |
|
53 |
use "Tools/datatype_package.ML"; |
|
54 |
use "Tools/primrec_package.ML"; |
|
55 |
||
56 |
use_thy "Arith"; |
|
57 |
use "arith_data.ML"; |
|
58 |
||
1515 | 59 |
use_thy "RelPow"; |
923 | 60 |
use_thy "Finite"; |
61 |
use_thy "Sexp"; |
|
5124 | 62 |
use_thy "Recdef"; |
3981 | 63 |
use_thy "Map"; |
4896
4727272f3db6
New syntax for function update; moved to main HOL directory
paulson
parents:
4864
diff
changeset
|
64 |
use_thy "Update"; |
923 | 65 |
|
5107
2edf5dfb02f3
Replaced "use_dir" command by "use", because nested calls
berghofe
parents:
5105
diff
changeset
|
66 |
cd "Integ"; |
5110 | 67 |
use_thy "Bin"; |
5107
2edf5dfb02f3
Replaced "use_dir" command by "use", because nested calls
berghofe
parents:
5105
diff
changeset
|
68 |
cd ".."; |
5078 | 69 |
|
3195 | 70 |
(*TFL: recursive function definitions*) |
4517 | 71 |
cd "$ISABELLE_HOME/src/TFL"; |
3195 | 72 |
use "sys.sml"; |
5078 | 73 |
cd "$ISABELLE_HOME/src/HOL"; |
3195 | 74 |
|
5124 | 75 |
(*the all-in-one theory*) |
76 |
use_thy "Main"; |
|
77 |
||
923 | 78 |
print_depth 8; |
79 |
||
1165 | 80 |
val HOL_build_completed = (); (*indicate successful build*) |