author | haftmann |
Thu, 24 May 2007 08:37:37 +0200 | |
changeset 23086 | 12320f6e2523 |
parent 22744 | 5cbe966d67a2 |
child 23717 | 5104b2959ed0 |
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"; |
22744
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
haftmann
parents:
22298
diff
changeset
|
14 |
use "../axclass.ML"; |
18819 | 15 |
use "local_defs.ML"; |
19382 | 16 |
|
22113
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
17 |
(*outer syntax*) |
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
18 |
use "outer_lex.ML"; |
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
19 |
use "args.ML"; |
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
20 |
use "outer_parse.ML"; |
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
21 |
use "outer_keyword.ML"; |
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
22 |
use "antiquote.ML"; |
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*) |
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
25 |
use "../Thy/ml_context.ML"; |
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
26 |
use "../Thy/thy_load.ML"; |
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
27 |
use "../Thy/thy_info.ML"; |
19382 | 28 |
use "../Thy/html.ML"; |
29 |
use "../Thy/latex.ML"; |
|
30 |
use "../Thy/present.ML"; |
|
31 |
use "../Thy/thm_deps.ML"; |
|
32 |
use "../Thy/thm_database.ML"; |
|
33 |
||
34 |
(*basic proof engine*) |
|
17348 | 35 |
use "proof_display.ML"; |
15703 | 36 |
use "attrib.ML"; |
18634 | 37 |
use "context_rules.ML"; |
17348 | 38 |
use "skip_proof.ML"; |
17103 | 39 |
use "method.ML"; |
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
40 |
use "proof.ML"; |
18128 | 41 |
use "element.ML"; |
8298 | 42 |
use "net_rules.ML"; |
11658 | 43 |
use "induct_attrib.ML"; |
6888
d0c68ebdabc5
skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents:
6783
diff
changeset
|
44 |
|
22744
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
haftmann
parents:
22298
diff
changeset
|
45 |
(*code generator base*) |
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
haftmann
parents:
22298
diff
changeset
|
46 |
use "../Tools/codegen_consts.ML"; |
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
haftmann
parents:
22298
diff
changeset
|
47 |
use "../Tools/codegen_func.ML"; |
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
haftmann
parents:
22298
diff
changeset
|
48 |
use "../Tools/codegen_data.ML"; |
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
haftmann
parents:
22298
diff
changeset
|
49 |
|
17348 | 50 |
(*derived theory and proof elements*) |
20880 | 51 |
use "local_theory.ML"; |
18741 | 52 |
use "calculation.ML"; |
53 |
use "obtain.ML"; |
|
54 |
use "locale.ML"; |
|
22113
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
55 |
use "spec_parse.ML"; |
22298 | 56 |
use "../Tools/class_package.ML"; |
20880 | 57 |
use "theory_target.ML"; |
18613 | 58 |
use "specification.ML"; |
17348 | 59 |
use "constdefs.ML"; |
18741 | 60 |
|
6346 | 61 |
(*toplevel environment*) |
17348 | 62 |
use "proof_history.ML"; |
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
63 |
use "toplevel.ML"; |
17058 | 64 |
|
65 |
(*theory presentation*) |
|
22113
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
66 |
use "../Thy/term_style.ML"; |
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
67 |
use "../Thy/thy_output.ML"; |
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
68 |
|
12936 | 69 |
(*theory syntax*) |
22113
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
70 |
use "../Thy/thy_header.ML"; |
17058 | 71 |
use "session.ML"; |
18116 | 72 |
use "../old_goals.ML"; |
12936 | 73 |
use "outer_syntax.ML"; |
74 |
||
8091 | 75 |
(*theory and proof operations*) |
20333 | 76 |
use "rule_insts.ML"; |
16025 | 77 |
use "../simplifier.ML"; |
78 |
use "find_theorems.ML"; |
|
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
79 |
use "isar_cmd.ML"; |
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
80 |
use "isar_syn.ML"; |