src/HOL/ROOT.ML
author nipkow
Tue, 21 Sep 1999 14:13:45 +0200
changeset 7548 9e29a3af64ab
parent 7370 6407a09ac58f
child 7703 6b3424e877bd
permissions -rw-r--r--
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1165
diff changeset
     1
(*  Title:      HOL/ROOT.ML
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     3
    Author:     Tobias Nipkow
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
    Copyright   1993  University of Cambridge
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     5
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     6
Adds Classical Higher-order Logic to a database containing Pure Isabelle.
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     7
Should be executed in the subdirectory HOL.
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     8
*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     9
3947
eb707467f8c5 adapted to qualified names;
wenzelm
parents: 3578
diff changeset
    10
val banner = "Higher-Order Logic";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    11
writeln banner;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    12
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    13
print_depth 1;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    14
6392
wenzelm
parents: 6349
diff changeset
    15
(*old-style theory syntax*)
6260
wenzelm
parents: 5983
diff changeset
    16
use "~~/src/Pure/section_utils.ML";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    17
use "thy_syntax.ML";
7370
wenzelm
parents: 7357
diff changeset
    18
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7237
diff changeset
    19
use "hologic.ML";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    20
6260
wenzelm
parents: 5983
diff changeset
    21
use "~~/src/Provers/simplifier.ML";
wenzelm
parents: 5983
diff changeset
    22
use "~~/src/Provers/split_paired_all.ML";
wenzelm
parents: 5983
diff changeset
    23
use "~~/src/Provers/splitter.ML";
wenzelm
parents: 5983
diff changeset
    24
use "~~/src/Provers/hypsubst.ML";
wenzelm
parents: 5983
diff changeset
    25
use "~~/src/Provers/classical.ML";
wenzelm
parents: 5983
diff changeset
    26
use "~~/src/Provers/blast.ML";
wenzelm
parents: 5983
diff changeset
    27
use "~~/src/Provers/clasimp.ML";
wenzelm
parents: 5983
diff changeset
    28
use "~~/src/Provers/Arith/fast_lin_arith.ML";
wenzelm
parents: 5983
diff changeset
    29
use "~~/src/Provers/Arith/cancel_sums.ML";
wenzelm
parents: 5983
diff changeset
    30
use "~~/src/Provers/Arith/cancel_factor.ML";
wenzelm
parents: 5983
diff changeset
    31
use "~~/src/Provers/Arith/abel_cancel.ML";
7072
c3f3fd86e11c new simprocs assoc_fold and combine_coeff
paulson
parents: 7032
diff changeset
    32
use "~~/src/Provers/Arith/assoc_fold.ML";
6260
wenzelm
parents: 5983
diff changeset
    33
use "~~/src/Provers/quantifier1.ML";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7237
diff changeset
    34
use "~~/src/Provers/Arith/combine_coeff.ML";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    35
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    36
use_thy "subset";
4864
3abfe2093aa0 removed typedef.ML, record.ML;
wenzelm
parents: 4758
diff changeset
    37
use "Tools/typedef_package.ML";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7237
diff changeset
    38
use_thy "Inductive";
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5124
diff changeset
    39
use_thy "NatDef";
4296
aa84d9c62454 added Arith provers;
wenzelm
parents: 4222
diff changeset
    40
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5124
diff changeset
    41
use "Tools/datatype_aux.ML";
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5124
diff changeset
    42
use "Tools/datatype_prop.ML";
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5124
diff changeset
    43
use "Tools/datatype_rep_proofs.ML";
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5124
diff changeset
    44
use "Tools/datatype_abs_proofs.ML";
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5124
diff changeset
    45
use "Tools/datatype_package.ML";
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5124
diff changeset
    46
use "Tools/primrec_package.ML";
5560
wenzelm
parents: 5501
diff changeset
    47
use_thy "Datatype";
5699
5b9a359e083c split_paired_all.ML;
wenzelm
parents: 5606
diff changeset
    48
6440
7c59a55bae94 added Tools/induct_method.ML;
wenzelm
parents: 6431
diff changeset
    49
(*TFL: recursive function definitions*)
7c59a55bae94 added Tools/induct_method.ML;
wenzelm
parents: 6431
diff changeset
    50
use_thy "WF_Rel";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7237
diff changeset
    51
cd "../TFL"; use "sys.sml"; cd "../HOL";
5425
157c6663dedd Added function upto to List.
nipkow
parents: 5298
diff changeset
    52
use_thy "Recdef";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    53
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7237
diff changeset
    54
use_thy "Numeral";
5107
2edf5dfb02f3 Replaced "use_dir" command by "use", because nested calls
berghofe
parents: 5105
diff changeset
    55
cd "Integ";
5501
a63e0c326e6c new files in Integ
paulson
parents: 5425
diff changeset
    56
use_thy "IntDef";
5560
wenzelm
parents: 5501
diff changeset
    57
use "simproc.ML";
7032
d6efb3b8e669 NatBin: binary arithmetic for the naturals
paulson
parents: 6914
diff changeset
    58
use_thy "NatBin";
5107
2edf5dfb02f3 Replaced "use_dir" command by "use", because nested calls
berghofe
parents: 5105
diff changeset
    59
cd "..";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents: 4896
diff changeset
    60
5124
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents: 5110
diff changeset
    61
(*the all-in-one theory*)
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents: 5110
diff changeset
    62
use_thy "Main";
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents: 5110
diff changeset
    63
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    64
print_depth 8;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    65
5501
a63e0c326e6c new files in Integ
paulson
parents: 5425
diff changeset
    66
Goal "True";  (*leave subgoal package empty*)