author | wenzelm |
Thu, 15 Jun 2006 23:08:56 +0200 | |
changeset 19898 | b1d179e42713 |
parent 19837 | a2e93327daa3 |
child 20075 | a7e183bfebef |
permissions | -rw-r--r-- |
19 | 1 |
(* Title: Pure/ROOT.ML |
0 | 2 |
ID: $Id$ |
3 |
||
16842 | 4 |
Pure Isabelle. |
0 | 5 |
*) |
6 |
||
7 |
val banner = "Pure Isabelle"; |
|
11835 | 8 |
val version = "Isabelle repository version"; (*filled in automatically!*) |
9 |
||
17474
e4cdb9f061fb
added quick_and_dirty (from Isar/skip_proofs.ML);
wenzelm
parents:
17467
diff
changeset
|
10 |
(*if true then some tools will OMIT some proofs*) |
e4cdb9f061fb
added quick_and_dirty (from Isar/skip_proofs.ML);
wenzelm
parents:
17467
diff
changeset
|
11 |
val quick_and_dirty = ref false; |
0 | 12 |
|
12248 | 13 |
print_depth 10; |
0 | 14 |
|
5684 | 15 |
(*fake hiding of private structures*) |
16 |
structure Hidden = struct end; |
|
4949 | 17 |
|
5017
786a17461ab9
moved table.ML, object.ML, seq.ML, name_space.ML to General;
wenzelm
parents:
5004
diff
changeset
|
18 |
(*basic tools*) |
0 | 19 |
use "library.ML"; |
5017
786a17461ab9
moved table.ML, object.ML, seq.ML, name_space.ML to General;
wenzelm
parents:
5004
diff
changeset
|
20 |
cd "General"; use "ROOT.ML"; cd ".."; |
14781 | 21 |
|
22 |
(*fundamental structures*) |
|
0 | 23 |
use "term.ML"; |
14823
ebb8499d0fd2
moved print_mode to General/output.ML; load General/pretty.ML early;
wenzelm
parents:
14781
diff
changeset
|
24 |
use "General/pretty.ML"; |
14781 | 25 |
use "sorts.ML"; |
26 |
use "type.ML"; |
|
16435 | 27 |
use "context.ML"; |
16980 | 28 |
use "compress.ML"; |
19 | 29 |
|
4949 | 30 |
(*inner syntax module*) |
6178 | 31 |
cd "Syntax"; use "ROOT.ML"; cd ".."; |
0 | 32 |
|
15825
1576f9d3ffae
added content of Pure/Thy/ROOT.ML, Pure/Proof/ROOT.ML;
wenzelm
parents:
15801
diff
changeset
|
33 |
(*core of tactical proof system*) |
18934 | 34 |
use "envir.ML"; |
35 |
use "logic.ML"; |
|
2960 | 36 |
use "type_infer.ML"; |
18059 | 37 |
use "consts.ML"; |
0 | 38 |
use "sign.ML"; |
39 |
use "pattern.ML"; |
|
40 |
use "unify.ML"; |
|
41 |
use "net.ML"; |
|
16108
cf468b93a02e
Implement cycle-free overloading, so that definitions cannot harm consistency any more (except of course via interaction with axioms).
obua
parents:
15825
diff
changeset
|
42 |
use "defs.ML"; |
1528 | 43 |
use "theory.ML"; |
11511 | 44 |
use "proofterm.ML"; |
0 | 45 |
use "thm.ML"; |
13271 | 46 |
use "fact_index.ML"; |
3986 | 47 |
use "pure_thy.ML"; |
19589 | 48 |
use "display.ML"; |
0 | 49 |
use "drule.ML"; |
19898 | 50 |
use "variable.ML"; |
0 | 51 |
use "tctical.ML"; |
1582 | 52 |
use "search.ML"; |
15006
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier. Next step:
skalberg
parents:
14823
diff
changeset
|
53 |
use "meta_simplifier.ML"; |
19417 | 54 |
use "conjunction.ML"; |
17963 | 55 |
use "goal.ML"; |
0 | 56 |
use "tactic.ML"; |
57 |
||
11511 | 58 |
(*proof term operations*) |
15825
1576f9d3ffae
added content of Pure/Thy/ROOT.ML, Pure/Proof/ROOT.ML;
wenzelm
parents:
15801
diff
changeset
|
59 |
use "Proof/reconstruct.ML"; |
1576f9d3ffae
added content of Pure/Thy/ROOT.ML, Pure/Proof/ROOT.ML;
wenzelm
parents:
15801
diff
changeset
|
60 |
use "Proof/proof_syntax.ML"; |
1576f9d3ffae
added content of Pure/Thy/ROOT.ML, Pure/Proof/ROOT.ML;
wenzelm
parents:
15801
diff
changeset
|
61 |
use "Proof/proof_rewrite_rules.ML"; |
1576f9d3ffae
added content of Pure/Thy/ROOT.ML, Pure/Proof/ROOT.ML;
wenzelm
parents:
15801
diff
changeset
|
62 |
use "Proof/proofchecker.ML"; |
1576f9d3ffae
added content of Pure/Thy/ROOT.ML, Pure/Proof/ROOT.ML;
wenzelm
parents:
15801
diff
changeset
|
63 |
|
1576f9d3ffae
added content of Pure/Thy/ROOT.ML, Pure/Proof/ROOT.ML;
wenzelm
parents:
15801
diff
changeset
|
64 |
(*theory auto loader database*) |
1576f9d3ffae
added content of Pure/Thy/ROOT.ML, Pure/Proof/ROOT.ML;
wenzelm
parents:
15801
diff
changeset
|
65 |
use "Thy/thy_load.ML"; |
1576f9d3ffae
added content of Pure/Thy/ROOT.ML, Pure/Proof/ROOT.ML;
wenzelm
parents:
15801
diff
changeset
|
66 |
use "Thy/thy_info.ML"; |
11511 | 67 |
|
18870 | 68 |
(*theory syntax*) |
15825
1576f9d3ffae
added content of Pure/Thy/ROOT.ML, Pure/Proof/ROOT.ML;
wenzelm
parents:
15801
diff
changeset
|
69 |
use "Isar/outer_lex.ML"; |
1576f9d3ffae
added content of Pure/Thy/ROOT.ML, Pure/Proof/ROOT.ML;
wenzelm
parents:
15801
diff
changeset
|
70 |
|
16435 | 71 |
(*the Isar system*) |
6178 | 72 |
cd "Isar"; use "ROOT.ML"; cd ".."; |
5834 | 73 |
|
13402 | 74 |
use "Proof/extraction.ML"; |
11511 | 75 |
|
17467 | 76 |
cd "Tools"; use "ROOT.ML"; cd ".."; |
77 |
||
12778
3120e338ffae
Interface/proof_general.ML move to proof_general.ML;
wenzelm
parents:
12248
diff
changeset
|
78 |
(*configuration for Proof General*) |
18991
0ded3b842878
use proof_general.ML: setmp quick_and_dirty captures default value;
wenzelm
parents:
18934
diff
changeset
|
79 |
(use |> setmp proofs 1 |> setmp quick_and_dirty true) "proof_general.ML"; |
16781 | 80 |
|
18991
0ded3b842878
use proof_general.ML: setmp quick_and_dirty captures default value;
wenzelm
parents:
18934
diff
changeset
|
81 |
use_thy "Pure"; |
0ded3b842878
use proof_general.ML: setmp quick_and_dirty captures default value;
wenzelm
parents:
18934
diff
changeset
|
82 |
structure Pure = struct val thy = theory "Pure" end; |
18837 | 83 |
|
84 |
Context.add_setup |
|
85 |
(Theory.del_modesyntax Syntax.default_mode Syntax.appl_syntax #> |
|
86 |
Theory.add_syntax Syntax.applC_syntax); |
|
18991
0ded3b842878
use proof_general.ML: setmp quick_and_dirty captures default value;
wenzelm
parents:
18934
diff
changeset
|
87 |
use_thy "CPure"; |
0ded3b842878
use proof_general.ML: setmp quick_and_dirty captures default value;
wenzelm
parents:
18934
diff
changeset
|
88 |
structure CPure = struct val thy = theory "CPure" end; |
15801 | 89 |
|
17467 | 90 |
(*final ML setup*) |
6178 | 91 |
use "install_pp.ML"; |
6237 | 92 |
val use = ThyInfo.use; |
6226 | 93 |
val cd = File.cd o Path.unpack; |
7938 | 94 |
ml_prompts "ML> " "ML# "; |
11511 | 95 |
|
11545 | 96 |
proofs := 0; |