src/Pure/ROOT.ML
author wenzelm
Wed, 28 Nov 2007 16:44:22 +0100
changeset 25496 0a779502be57
parent 25458 ba8f5e4fa336
child 25750 4e796867ccb5
permissions -rw-r--r--
removed typedecl.ML (cf. object_logic.ML);
wenzelm@19
     1
(*  Title:      Pure/ROOT.ML
clasohm@0
     2
    ID:         $Id$
clasohm@0
     3
wenzelm@16842
     4
Pure Isabelle.
clasohm@0
     5
*)
clasohm@0
     6
clasohm@0
     7
val banner = "Pure Isabelle";
wenzelm@11835
     8
val version = "Isabelle repository version";    (*filled in automatically!*)
wenzelm@11835
     9
wenzelm@23825
    10
(*if true then some tools will OMIT some proofs*)
wenzelm@23825
    11
val quick_and_dirty = ref false;
wenzelm@23825
    12
wenzelm@12248
    13
print_depth 10;
clasohm@0
    14
wenzelm@5017
    15
(*basic tools*)
wenzelm@21396
    16
use "General/basics.ML";
clasohm@0
    17
use "library.ML";
wenzelm@22592
    18
wenzelm@5017
    19
cd "General"; use "ROOT.ML"; cd "..";
wenzelm@14781
    20
wenzelm@14781
    21
(*fundamental structures*)
wenzelm@20075
    22
use "name.ML";
clasohm@0
    23
use "term.ML";
wenzelm@20507
    24
use "term_subst.ML";
wenzelm@24257
    25
use "logic.ML";
wenzelm@14823
    26
use "General/pretty.ML";
wenzelm@24235
    27
use "Syntax/lexicon.ML";
wenzelm@24235
    28
use "Syntax/simple_syntax.ML";
wenzelm@24272
    29
use "context.ML";
wenzelm@24272
    30
use "context_position.ML";
wenzelm@14781
    31
use "sorts.ML";
wenzelm@14781
    32
use "type.ML";
wenzelm@24272
    33
use "type_infer.ML";
wenzelm@24113
    34
use "config.ML";
wenzelm@16980
    35
use "compress.ML";
wenzelm@19
    36
wenzelm@4949
    37
(*inner syntax module*)
wenzelm@22679
    38
use "Syntax/ast.ML";
wenzelm@22679
    39
use "Syntax/syn_ext.ML";
wenzelm@22679
    40
use "Syntax/parser.ML";
wenzelm@22679
    41
use "Syntax/type_ext.ML";
wenzelm@22679
    42
use "Syntax/syn_trans.ML";
wenzelm@22679
    43
use "Syntax/mixfix.ML";
wenzelm@22679
    44
use "Syntax/printer.ML";
wenzelm@22679
    45
use "Syntax/syntax.ML";
wenzelm@22679
    46
wenzelm@24574
    47
use "ML/ml_syntax.ML";
clasohm@0
    48
wenzelm@15825
    49
(*core of tactical proof system*)
wenzelm@18934
    50
use "envir.ML";
wenzelm@18059
    51
use "consts.ML";
wenzelm@24257
    52
use "primitive_defs.ML";
clasohm@0
    53
use "sign.ML";
clasohm@0
    54
use "pattern.ML";
clasohm@0
    55
use "unify.ML";
clasohm@0
    56
use "net.ML";
obua@16108
    57
use "defs.ML";
paulson@1528
    58
use "theory.ML";
wenzelm@24664
    59
use "interpretation.ML";
berghofe@11511
    60
use "proofterm.ML";
clasohm@0
    61
use "thm.ML";
wenzelm@22361
    62
use "more_thm.ML";
wenzelm@13271
    63
use "fact_index.ML";
wenzelm@3986
    64
use "pure_thy.ML";
wenzelm@19589
    65
use "display.ML";
clasohm@0
    66
use "drule.ML";
wenzelm@22233
    67
use "morphism.ML";
wenzelm@19898
    68
use "variable.ML";
wenzelm@24833
    69
use "conv.ML";
clasohm@0
    70
use "tctical.ML";
paulson@1582
    71
use "search.ML";
wenzelm@21708
    72
use "tactic.ML";
skalberg@15006
    73
use "meta_simplifier.ML";
wenzelm@19417
    74
use "conjunction.ML";
wenzelm@20225
    75
use "assumption.ML";
wenzelm@17963
    76
use "goal.ML";
wenzelm@24963
    77
use "axclass.ML";
clasohm@0
    78
berghofe@11511
    79
(*proof term operations*)
wenzelm@15825
    80
use "Proof/reconstruct.ML";
wenzelm@15825
    81
use "Proof/proof_syntax.ML";
wenzelm@15825
    82
use "Proof/proof_rewrite_rules.ML";
wenzelm@15825
    83
use "Proof/proofchecker.ML";
berghofe@11511
    84
wenzelm@22108
    85
(*the main Isar system*)
wenzelm@6178
    86
cd "Isar"; use "ROOT.ML"; cd "..";
wenzelm@20207
    87
use "subgoal.ML";
wenzelm@5834
    88
berghofe@13402
    89
use "Proof/extraction.ML";
berghofe@11511
    90
wenzelm@17467
    91
cd "Tools"; use "ROOT.ML"; cd "..";
wenzelm@17467
    92
berghofe@24455
    93
use "codegen.ML";
berghofe@24455
    94
wenzelm@12778
    95
(*configuration for Proof General*)
wenzelm@21941
    96
cd "ProofGeneral"; use "ROOT.ML"; cd "..";
obua@16781
    97
wenzelm@23825
    98
use "pure_setup.ML";