author | wenzelm |
Sat, 12 Apr 2008 17:00:35 +0200 | |
changeset 26626 | c6231d64d264 |
parent 26609 | 53754d9ee31f |
child 27254 | 0f8106808e66 |
permissions | -rw-r--r-- |
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
1 |
(* Title: Pure/Isar/ROOT.ML |
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
2 |
ID: $Id$ |
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
3 |
Author: Markus Wenzel, TU Muenchen |
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
4 |
|
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
5 |
Isar -- Intelligible Semi-Automated Reasoning for Isabelle. |
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
6 |
*) |
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
7 |
|
19382 | 8 |
(*proof context*) |
11889 | 9 |
use "object_logic.ML"; |
17348 | 10 |
use "rule_cases.ML"; |
6783
9cf9c17d9e35
renamed object_logic.ML to Isar/auto_bind.ML and tuned this module;
wenzelm
parents:
6771
diff
changeset
|
11 |
use "auto_bind.ML"; |
18990 | 12 |
use "local_syntax.ML"; |
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
13 |
use "proof_context.ML"; |
18819 | 14 |
use "local_defs.ML"; |
19382 | 15 |
|
22113
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
16 |
(*outer syntax*) |
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
17 |
use "outer_lex.ML"; |
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
18 |
use "args.ML"; |
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
19 |
use "outer_parse.ML"; |
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
20 |
use "outer_keyword.ML"; |
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
21 |
use "antiquote.ML"; |
24574 | 22 |
use "../ML/ml_context.ML"; |
22113
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
23 |
|
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
24 |
(*theory sources*) |
23864 | 25 |
use "../Thy/thy_header.ML"; |
22113
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
26 |
use "../Thy/thy_load.ML"; |
19382 | 27 |
use "../Thy/html.ML"; |
28 |
use "../Thy/latex.ML"; |
|
29 |
use "../Thy/present.ML"; |
|
30 |
||
31 |
(*basic proof engine*) |
|
17348 | 32 |
use "proof_display.ML"; |
15703 | 33 |
use "attrib.ML"; |
18634 | 34 |
use "context_rules.ML"; |
17348 | 35 |
use "skip_proof.ML"; |
17103 | 36 |
use "method.ML"; |
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
37 |
use "proof.ML"; |
18128 | 38 |
use "element.ML"; |
8298 | 39 |
use "net_rules.ML"; |
6888
d0c68ebdabc5
skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents:
6783
diff
changeset
|
40 |
|
17348 | 41 |
(*derived theory and proof elements*) |
18741 | 42 |
use "calculation.ML"; |
43 |
use "obtain.ML"; |
|
25462 | 44 |
|
45 |
(*local theories and target primitives*) |
|
46 |
use "local_theory.ML"; |
|
25519 | 47 |
use "overloading.ML"; |
18741 | 48 |
use "locale.ML"; |
24306 | 49 |
use "class.ML"; |
24423
ae9cd0e92423
overloaded definitions accompanied by explicit constants
haftmann
parents:
24306
diff
changeset
|
50 |
|
ae9cd0e92423
overloaded definitions accompanied by explicit constants
haftmann
parents:
24306
diff
changeset
|
51 |
(*executable theory content*) |
ae9cd0e92423
overloaded definitions accompanied by explicit constants
haftmann
parents:
24306
diff
changeset
|
52 |
use "code_unit.ML"; |
ae9cd0e92423
overloaded definitions accompanied by explicit constants
haftmann
parents:
24306
diff
changeset
|
53 |
use "code.ML"; |
ae9cd0e92423
overloaded definitions accompanied by explicit constants
haftmann
parents:
24306
diff
changeset
|
54 |
|
ae9cd0e92423
overloaded definitions accompanied by explicit constants
haftmann
parents:
24306
diff
changeset
|
55 |
(*local theories and specifications*) |
24306 | 56 |
use "theory_target.ML"; |
24967 | 57 |
use "subclass.ML"; |
22113
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
58 |
use "spec_parse.ML"; |
18613 | 59 |
use "specification.ML"; |
25462 | 60 |
use "instance.ML"; |
17348 | 61 |
use "constdefs.ML"; |
18741 | 62 |
|
26609
53754d9ee31f
load thy_info.ML after outer_syntax.ML -- avoids backpatching of load_thy;
wenzelm
parents:
26598
diff
changeset
|
63 |
(*toplevel transactions*) |
17348 | 64 |
use "proof_history.ML"; |
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
65 |
use "toplevel.ML"; |
17058 | 66 |
|
26609
53754d9ee31f
load thy_info.ML after outer_syntax.ML -- avoids backpatching of load_thy;
wenzelm
parents:
26598
diff
changeset
|
67 |
(*theory syntax*) |
22113
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
68 |
use "../Thy/term_style.ML"; |
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
69 |
use "../Thy/thy_output.ML"; |
18116 | 70 |
use "../old_goals.ML"; |
12936 | 71 |
use "outer_syntax.ML"; |
26609
53754d9ee31f
load thy_info.ML after outer_syntax.ML -- avoids backpatching of load_thy;
wenzelm
parents:
26598
diff
changeset
|
72 |
use "../Thy/thy_info.ML"; |
53754d9ee31f
load thy_info.ML after outer_syntax.ML -- avoids backpatching of load_thy;
wenzelm
parents:
26598
diff
changeset
|
73 |
use "session.ML"; |
26598 | 74 |
use "isar.ML"; |
23717 | 75 |
use "../Thy/thy_edit.ML"; |
12936 | 76 |
|
8091 | 77 |
(*theory and proof operations*) |
20333 | 78 |
use "rule_insts.ML"; |
16025 | 79 |
use "../simplifier.ML"; |
26609
53754d9ee31f
load thy_info.ML after outer_syntax.ML -- avoids backpatching of load_thy;
wenzelm
parents:
26598
diff
changeset
|
80 |
use "../Thy/thm_deps.ML"; |
16025 | 81 |
use "find_theorems.ML"; |
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
82 |
use "isar_cmd.ML"; |
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
83 |
use "isar_syn.ML"; |