author | paulson |
Tue, 08 Sep 1998 15:17:11 +0200 | |
changeset 5434 | 9b4bed3f394c |
parent 5425 | 157c6663dedd |
child 5501 | a63e0c326e6c |
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"; |
|
5425 | 55 |
use_thy"Datatype"; |
5183 | 56 |
|
57 |
use_thy "Arith"; |
|
58 |
use "arith_data.ML"; |
|
59 |
||
5425 | 60 |
use_thy "Recdef"; |
61 |
(*TFL: recursive function definitions*) |
|
62 |
cd "$ISABELLE_HOME/src/TFL"; |
|
63 |
use "sys.sml"; |
|
64 |
cd "$ISABELLE_HOME/src/HOL"; |
|
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 |
|
5124 | 70 |
(*the all-in-one theory*) |
71 |
use_thy "Main"; |
|
72 |
||
923 | 73 |
print_depth 8; |
74 |
||
1165 | 75 |
val HOL_build_completed = (); (*indicate successful build*) |