src/HOL/ROOT.ML
author oheimb
Mon, 30 Mar 1998 21:04:13 +0200
changeset 4758 35f4ad4f055d
parent 4573 fe504f608835
child 4864 3abfe2093aa0
permissions -rw-r--r--
removed superfluous use_thy
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
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    15
(* Add user sections *)
4222
d7573d6d0513 refer to $ISABELLE_HOME/src;
wenzelm
parents: 4088
diff changeset
    16
use "$ISABELLE_HOME/src/Pure/section_utils.ML";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    17
use "thy_syntax.ML";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    18
4222
d7573d6d0513 refer to $ISABELLE_HOME/src;
wenzelm
parents: 4088
diff changeset
    19
use "$ISABELLE_HOME/src/Provers/simplifier.ML";
d7573d6d0513 refer to $ISABELLE_HOME/src;
wenzelm
parents: 4088
diff changeset
    20
use "$ISABELLE_HOME/src/Provers/splitter.ML";
d7573d6d0513 refer to $ISABELLE_HOME/src;
wenzelm
parents: 4088
diff changeset
    21
use "$ISABELLE_HOME/src/Provers/hypsubst.ML";
d7573d6d0513 refer to $ISABELLE_HOME/src;
wenzelm
parents: 4088
diff changeset
    22
use "$ISABELLE_HOME/src/Provers/classical.ML";
d7573d6d0513 refer to $ISABELLE_HOME/src;
wenzelm
parents: 4088
diff changeset
    23
use "$ISABELLE_HOME/src/Provers/blast.ML";
4296
aa84d9c62454 added Arith provers;
wenzelm
parents: 4222
diff changeset
    24
use "$ISABELLE_HOME/src/Provers/Arith/nat_transitive.ML";
aa84d9c62454 added Arith provers;
wenzelm
parents: 4222
diff changeset
    25
use "$ISABELLE_HOME/src/Provers/Arith/cancel_sums.ML";
aa84d9c62454 added Arith provers;
wenzelm
parents: 4222
diff changeset
    26
use "$ISABELLE_HOME/src/Provers/Arith/cancel_factor.ML";
4320
24d9e6639cd4 Moved the quantifier elimination simp procs into Provers.
nipkow
parents: 4296
diff changeset
    27
use "$ISABELLE_HOME/src/Provers/quantifier1.ML";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    28
4088
9be9e39fd862 added thy_data;
wenzelm
parents: 4024
diff changeset
    29
use "thy_data.ML";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    30
1338
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1301
diff changeset
    31
use_thy "HOL";
4088
9be9e39fd862 added thy_data;
wenzelm
parents: 4024
diff changeset
    32
use "hologic.ML";
9be9e39fd862 added thy_data;
wenzelm
parents: 4024
diff changeset
    33
use "cladata.ML";
9be9e39fd862 added thy_data;
wenzelm
parents: 4024
diff changeset
    34
use "simpdata.ML";
9be9e39fd862 added thy_data;
wenzelm
parents: 4024
diff changeset
    35
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    36
use_thy "Ord";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    37
use_thy "subset";
4222
d7573d6d0513 refer to $ISABELLE_HOME/src;
wenzelm
parents: 4088
diff changeset
    38
use "typedef.ML";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    39
use_thy "Sum";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    40
use_thy "Gfp";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    41
4573
fe504f608835 added record.ML;
wenzelm
parents: 4517
diff changeset
    42
use "record.ML";
fe504f608835 added record.ML;
wenzelm
parents: 4517
diff changeset
    43
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    44
use "datatype.ML";
4296
aa84d9c62454 added Arith provers;
wenzelm
parents: 4222
diff changeset
    45
use_thy "Arith";
aa84d9c62454 added Arith provers;
wenzelm
parents: 4222
diff changeset
    46
use "arith_data.ML";
aa84d9c62454 added Arith provers;
wenzelm
parents: 4222
diff changeset
    47
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    48
use "ind_syntax.ML";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    49
use "add_ind_def.ML";
4088
9be9e39fd862 added thy_data;
wenzelm
parents: 4024
diff changeset
    50
use_thy "intr_elim";
9be9e39fd862 added thy_data;
wenzelm
parents: 4024
diff changeset
    51
use_thy "indrule";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    52
use_thy "Inductive";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    53
1515
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1496
diff changeset
    54
use_thy "RelPow";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    55
use_thy "Finite";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    56
use_thy "Sexp";
3195
dcb458d38724 Preliminary TFL versions
paulson
parents: 2857
diff changeset
    57
use_thy "WF_Rel";
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents: 3947
diff changeset
    58
use_thy "Map";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    59
3195
dcb458d38724 Preliminary TFL versions
paulson
parents: 2857
diff changeset
    60
(*TFL: recursive function definitions*)
4517
wenzelm
parents: 4320
diff changeset
    61
cd "$ISABELLE_HOME/src/TFL";
3195
dcb458d38724 Preliminary TFL versions
paulson
parents: 2857
diff changeset
    62
use "sys.sml";
dcb458d38724 Preliminary TFL versions
paulson
parents: 2857
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
1165
97b2bb5d43c3 renamed CHOL to HOL
clasohm
parents: 1024
diff changeset
    66
val HOL_build_completed = ();   (*indicate successful build*)