author | wenzelm |
Tue, 03 Apr 2007 19:24:13 +0200 | |
changeset 22568 | ed7aa5a350ef |
parent 22298 | 9ca7d368968d |
child 22744 | 5cbe966d67a2 |
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"; |
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
22 |
|
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
23 |
(*theory sources*) |
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
24 |
use "../Thy/ml_context.ML"; |
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
25 |
use "../Thy/thy_load.ML"; |
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
26 |
use "../Thy/thy_info.ML"; |
19382 | 27 |
use "../Thy/html.ML"; |
28 |
use "../Thy/latex.ML"; |
|
29 |
use "../Thy/present.ML"; |
|
30 |
use "../Thy/thm_deps.ML"; |
|
31 |
use "../Thy/thm_database.ML"; |
|
32 |
||
33 |
(*basic proof engine*) |
|
17348 | 34 |
use "proof_display.ML"; |
15703 | 35 |
use "attrib.ML"; |
18634 | 36 |
use "context_rules.ML"; |
17348 | 37 |
use "skip_proof.ML"; |
17103 | 38 |
use "method.ML"; |
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
39 |
use "proof.ML"; |
18128 | 40 |
use "element.ML"; |
8298 | 41 |
use "net_rules.ML"; |
11658 | 42 |
use "induct_attrib.ML"; |
6888
d0c68ebdabc5
skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents:
6783
diff
changeset
|
43 |
|
17348 | 44 |
(*derived theory and proof elements*) |
20880 | 45 |
use "local_theory.ML"; |
18741 | 46 |
use "calculation.ML"; |
47 |
use "obtain.ML"; |
|
48 |
use "locale.ML"; |
|
22113
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
49 |
use "spec_parse.ML"; |
19466 | 50 |
use "../axclass.ML"; |
22298 | 51 |
use "../Tools/class_package.ML"; |
20880 | 52 |
use "theory_target.ML"; |
18613 | 53 |
use "specification.ML"; |
17348 | 54 |
use "constdefs.ML"; |
18741 | 55 |
|
6346 | 56 |
(*toplevel environment*) |
17348 | 57 |
use "proof_history.ML"; |
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
58 |
use "toplevel.ML"; |
17058 | 59 |
|
60 |
(*theory presentation*) |
|
22113
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
61 |
use "../Thy/term_style.ML"; |
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
62 |
use "../Thy/thy_output.ML"; |
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
63 |
|
12936 | 64 |
(*theory syntax*) |
22113
4a65d2f4d0b5
renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
21739
diff
changeset
|
65 |
use "../Thy/thy_header.ML"; |
17058 | 66 |
use "session.ML"; |
18116 | 67 |
use "../old_goals.ML"; |
12936 | 68 |
use "outer_syntax.ML"; |
69 |
||
8091 | 70 |
(*theory and proof operations*) |
20333 | 71 |
use "rule_insts.ML"; |
16025 | 72 |
use "../simplifier.ML"; |
73 |
use "find_theorems.ML"; |
|
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
74 |
use "isar_cmd.ML"; |
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
75 |
use "isar_syn.ML"; |