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