author | haftmann |
Fri, 11 Jul 2008 09:02:29 +0200 | |
changeset 27546 | 726e8fa3e404 |
parent 27262 | 5a5d7f55ec19 |
child 27642 | c0db1220b071 |
permissions | -rw-r--r-- |
19 | 1 |
(* Title: Pure/ROOT.ML |
0 | 2 |
ID: $Id$ |
3 |
||
16842 | 4 |
Pure Isabelle. |
0 | 5 |
*) |
6 |
||
26109
c69c3559355b
more elaborate structure Distribution (filled-in by makedist);
wenzelm
parents:
25953
diff
changeset
|
7 |
structure Distribution = (*filled-in by makedist*) |
c69c3559355b
more elaborate structure Distribution (filled-in by makedist);
wenzelm
parents:
25953
diff
changeset
|
8 |
struct |
c69c3559355b
more elaborate structure Distribution (filled-in by makedist);
wenzelm
parents:
25953
diff
changeset
|
9 |
val version = "Isabelle repository version"; |
26133 | 10 |
val is_official = true; |
26109
c69c3559355b
more elaborate structure Distribution (filled-in by makedist);
wenzelm
parents:
25953
diff
changeset
|
11 |
end; |
11835 | 12 |
|
23825
e0372eba47b7
simplified loading of ML files -- no static forward references;
wenzelm
parents:
23696
diff
changeset
|
13 |
(*if true then some tools will OMIT some proofs*) |
e0372eba47b7
simplified loading of ML files -- no static forward references;
wenzelm
parents:
23696
diff
changeset
|
14 |
val quick_and_dirty = ref false; |
e0372eba47b7
simplified loading of ML files -- no static forward references;
wenzelm
parents:
23696
diff
changeset
|
15 |
|
12248 | 16 |
print_depth 10; |
0 | 17 |
|
5017
786a17461ab9
moved table.ML, object.ML, seq.ML, name_space.ML to General;
wenzelm
parents:
5004
diff
changeset
|
18 |
(*basic tools*) |
21396 | 19 |
use "General/basics.ML"; |
0 | 20 |
use "library.ML"; |
22592 | 21 |
|
5017
786a17461ab9
moved table.ML, object.ML, seq.ML, name_space.ML to General;
wenzelm
parents:
5004
diff
changeset
|
22 |
cd "General"; use "ROOT.ML"; cd ".."; |
14781 | 23 |
|
24 |
(*fundamental structures*) |
|
20075 | 25 |
use "name.ML"; |
0 | 26 |
use "term.ML"; |
20507 | 27 |
use "term_subst.ML"; |
24257 | 28 |
use "logic.ML"; |
14823
ebb8499d0fd2
moved print_mode to General/output.ML; load General/pretty.ML early;
wenzelm
parents:
14781
diff
changeset
|
29 |
use "General/pretty.ML"; |
24235 | 30 |
use "Syntax/lexicon.ML"; |
31 |
use "Syntax/simple_syntax.ML"; |
|
16435 | 32 |
use "context.ML"; |
24272 | 33 |
use "sorts.ML"; |
34 |
use "type.ML"; |
|
24113 | 35 |
use "config.ML"; |
19 | 36 |
|
4949 | 37 |
(*inner syntax module*) |
22679 | 38 |
use "Syntax/ast.ML"; |
39 |
use "Syntax/syn_ext.ML"; |
|
40 |
use "Syntax/parser.ML"; |
|
41 |
use "Syntax/type_ext.ML"; |
|
42 |
use "Syntax/syn_trans.ML"; |
|
43 |
use "Syntax/mixfix.ML"; |
|
44 |
use "Syntax/printer.ML"; |
|
45 |
use "Syntax/syntax.ML"; |
|
46 |
||
27262 | 47 |
use "type_infer.ML"; |
24574 | 48 |
use "ML/ml_syntax.ML"; |
0 | 49 |
|
15825
1576f9d3ffae
added content of Pure/Thy/ROOT.ML, Pure/Proof/ROOT.ML;
wenzelm
parents:
15801
diff
changeset
|
50 |
(*core of tactical proof system*) |
18934 | 51 |
use "envir.ML"; |
18059 | 52 |
use "consts.ML"; |
24257 | 53 |
use "primitive_defs.ML"; |
27546 | 54 |
use "defs.ML"; |
55 |
use "net.ML"; |
|
0 | 56 |
use "sign.ML"; |
57 |
use "pattern.ML"; |
|
58 |
use "unify.ML"; |
|
1528 | 59 |
use "theory.ML"; |
24664 | 60 |
use "interpretation.ML"; |
11511 | 61 |
use "proofterm.ML"; |
0 | 62 |
use "thm.ML"; |
22361 | 63 |
use "more_thm.ML"; |
26279 | 64 |
use "facts.ML"; |
3986 | 65 |
use "pure_thy.ML"; |
19589 | 66 |
use "display.ML"; |
0 | 67 |
use "drule.ML"; |
22233 | 68 |
use "morphism.ML"; |
19898 | 69 |
use "variable.ML"; |
24833 | 70 |
use "conv.ML"; |
0 | 71 |
use "tctical.ML"; |
1582 | 72 |
use "search.ML"; |
21708 | 73 |
use "tactic.ML"; |
15006
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier. Next step:
skalberg
parents:
14823
diff
changeset
|
74 |
use "meta_simplifier.ML"; |
19417 | 75 |
use "conjunction.ML"; |
20225 | 76 |
use "assumption.ML"; |
17963 | 77 |
use "goal.ML"; |
24963 | 78 |
use "axclass.ML"; |
0 | 79 |
|
22108 | 80 |
(*the main Isar system*) |
6178 | 81 |
cd "Isar"; use "ROOT.ML"; cd ".."; |
20207 | 82 |
use "subgoal.ML"; |
5834 | 83 |
|
13402 | 84 |
use "Proof/extraction.ML"; |
11511 | 85 |
|
17467 | 86 |
cd "Tools"; use "ROOT.ML"; cd ".."; |
87 |
||
24455 | 88 |
use "codegen.ML"; |
89 |
||
12778
3120e338ffae
Interface/proof_general.ML move to proof_general.ML;
wenzelm
parents:
12248
diff
changeset
|
90 |
(*configuration for Proof General*) |
21941 | 91 |
cd "ProofGeneral"; use "ROOT.ML"; cd ".."; |
16781 | 92 |
|
23825
e0372eba47b7
simplified loading of ML files -- no static forward references;
wenzelm
parents:
23696
diff
changeset
|
93 |
use "pure_setup.ML"; |