src/HOL/ROOT.ML
author wenzelm
Fri, 25 Jul 1997 13:18:45 +0200
changeset 3578 b2b9a9ddb9cc
parent 3511 da4dd8b7ced4
child 3947 eb707467f8c5
permissions -rw-r--r--
load simplifier.ML (again);
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
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    10
val banner = "Higher-Order Logic with curried functions";
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 *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    16
use "../Pure/section_utils.ML";
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
3578
b2b9a9ddb9cc load simplifier.ML (again);
wenzelm
parents: 3511
diff changeset
    19
use "../Provers/simplifier.ML";
1024
b86042000035 ROOT.ML: installed new hyp_subst_tac
nipkow
parents: 923
diff changeset
    20
use "../Provers/splitter.ML";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    21
use "../Provers/hypsubst.ML";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    22
use "../Provers/classical.ML";
2857
848bce5fe8ad Now loads blast_tac
paulson
parents: 2115
diff changeset
    23
use "../Provers/blast.ML";
2115
9709f9188549 Added trans_tac (see Provers/nat_transitive.ML)
nipkow
parents: 2019
diff changeset
    24
use "../Provers/nat_transitive.ML";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    25
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    26
1338
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1301
diff changeset
    27
use_thy "HOL";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    28
use_thy "Ord";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    29
use_thy "subset";
1470
49b3e075f124 renamed subtype.ML to typedef.ML
clasohm
parents: 1358
diff changeset
    30
use     "typedef.ML";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    31
use_thy "Sum";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    32
use_thy "Gfp";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    33
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    34
use "datatype.ML";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    35
use "ind_syntax.ML";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    36
use "add_ind_def.ML";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    37
use "intr_elim.ML";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    38
use "indrule.ML";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    39
use_thy "Inductive";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    40
1515
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1496
diff changeset
    41
use_thy "RelPow";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    42
use_thy "Finite";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    43
use_thy "Sexp";
2019
b45d9f2042e0 Moved Option out of IOA into core HOL
nipkow
parents: 1982
diff changeset
    44
use_thy "Option";
3195
dcb458d38724 Preliminary TFL versions
paulson
parents: 2857
diff changeset
    45
use_thy "WF_Rel";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    46
use_thy "List";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    47
3195
dcb458d38724 Preliminary TFL versions
paulson
parents: 2857
diff changeset
    48
(*TFL: recursive function definitions*)
dcb458d38724 Preliminary TFL versions
paulson
parents: 2857
diff changeset
    49
cd "../TFL";
dcb458d38724 Preliminary TFL versions
paulson
parents: 2857
diff changeset
    50
use "sys.sml";
dcb458d38724 Preliminary TFL versions
paulson
parents: 2857
diff changeset
    51
cd "../HOL";
dcb458d38724 Preliminary TFL versions
paulson
parents: 2857
diff changeset
    52
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    53
print_depth 8;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    54
1165
97b2bb5d43c3 renamed CHOL to HOL
clasohm
parents: 1024
diff changeset
    55
val HOL_build_completed = ();   (*indicate successful build*)