| author | huffman |
| Mon, 07 Mar 2005 23:54:01 +0100 | |
| changeset 15587 | f363e6e080e7 |
| parent 15452 | e2a721567f67 |
| child 15703 | 727ef1b8b3ee |
| 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 |
|
|
6888
d0c68ebdabc5
skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents:
6783
diff
changeset
|
8 |
(*basic proof engine*) |
| 11889 | 9 |
use "object_logic.ML"; |
|
6783
9cf9c17d9e35
renamed object_logic.ML to Isar/auto_bind.ML and tuned this module;
wenzelm
parents:
6771
diff
changeset
|
10 |
use "auto_bind.ML"; |
| 8367 | 11 |
use "rule_cases.ML"; |
|
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
12 |
use "proof_context.ML"; |
| 13369 | 13 |
use "proof_data.ML"; |
| 15452 | 14 |
use "delta_data.ML"; (*for delta_{claset,simpset}, part of SPASS interface*)
|
| 13369 | 15 |
use "context_rules.ML"; |
| 11889 | 16 |
use "locale.ML"; |
|
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
17 |
use "proof.ML"; |
| 6346 | 18 |
use "proof_history.ML"; |
|
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
19 |
use "args.ML"; |
|
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
20 |
use "attrib.ML"; |
| 8298 | 21 |
use "net_rules.ML"; |
| 11658 | 22 |
use "induct_attrib.ML"; |
|
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
23 |
use "method.ML"; |
|
6888
d0c68ebdabc5
skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents:
6783
diff
changeset
|
24 |
|
|
d0c68ebdabc5
skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents:
6783
diff
changeset
|
25 |
(*derived proof elements*) |
| 6771 | 26 |
use "calculation.ML"; |
| 11889 | 27 |
use "obtain.ML"; |
|
6888
d0c68ebdabc5
skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents:
6783
diff
changeset
|
28 |
use "skip_proof.ML"; |
|
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
29 |
|
|
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
30 |
(*outer syntax*) |
| 12322 | 31 |
(*use "outer_lex.ML";*) (*see ../Thy/ROOT.ML*) |
|
9125
f85564116be1
added Isar/antiquote.ML, Isar/isar_output.ML, Isar/thy_header.ML;
wenzelm
parents:
8807
diff
changeset
|
32 |
use "antiquote.ML"; |
|
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
33 |
use "outer_parse.ML"; |
|
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
34 |
|
| 6346 | 35 |
(*toplevel environment*) |
|
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
36 |
use "toplevel.ML"; |
| 15434 | 37 |
use "isar_output.ML"; |
| 6346 | 38 |
use "session.ML"; |
|
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
39 |
|
| 12936 | 40 |
(*theory syntax*) |
41 |
use "thy_header.ML"; |
|
42 |
use "outer_syntax.ML"; |
|
43 |
||
| 8091 | 44 |
(*theory and proof operations*) |
|
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
45 |
use "isar_thy.ML"; |
| 14650 | 46 |
use "constdefs.ML"; |
|
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
47 |
use "isar_cmd.ML"; |
|
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
48 |
use "isar_syn.ML"; |
| 5873 | 49 |
|
| 8091 | 50 |
(*main ML interfaces*) |
| 5951 | 51 |
use "isar.ML"; |
| 5873 | 52 |
|
53 |
structure PureIsar = |
|
54 |
struct |
|
| 11889 | 55 |
structure ObjectLogic = ObjectLogic; |
|
6783
9cf9c17d9e35
renamed object_logic.ML to Isar/auto_bind.ML and tuned this module;
wenzelm
parents:
6771
diff
changeset
|
56 |
structure AutoBind = AutoBind; |
| 5873 | 57 |
structure ProofContext = ProofContext; |
| 11889 | 58 |
structure Locale = Locale; |
| 5873 | 59 |
structure Proof = Proof; |
| 6644 | 60 |
structure ProofHistory = ProofHistory; |
| 5873 | 61 |
structure Args = Args; |
62 |
structure Attrib = Attrib; |
|
| 12350 | 63 |
structure ContextRules = ContextRules; |
| 5873 | 64 |
structure Method = Method; |
| 7021 | 65 |
structure Calculation = Calculation; |
| 11889 | 66 |
structure Obtain = Obtain; |
| 7021 | 67 |
structure SkipProof = SkipProof; |
|
9125
f85564116be1
added Isar/antiquote.ML, Isar/isar_output.ML, Isar/thy_header.ML;
wenzelm
parents:
8807
diff
changeset
|
68 |
structure OuterLex = OuterLex; |
|
f85564116be1
added Isar/antiquote.ML, Isar/isar_output.ML, Isar/thy_header.ML;
wenzelm
parents:
8807
diff
changeset
|
69 |
structure Antiquote = Antiquote; |
| 5873 | 70 |
structure OuterParse = OuterParse; |
71 |
structure Toplevel = Toplevel; |
|
| 6644 | 72 |
structure Session = Session; |
|
9125
f85564116be1
added Isar/antiquote.ML, Isar/isar_output.ML, Isar/thy_header.ML;
wenzelm
parents:
8807
diff
changeset
|
73 |
structure IsarOutput = IsarOutput; |
|
f85564116be1
added Isar/antiquote.ML, Isar/isar_output.ML, Isar/thy_header.ML;
wenzelm
parents:
8807
diff
changeset
|
74 |
structure ThyHeader = ThyHeader; |
| 6644 | 75 |
structure OuterSyntax = OuterSyntax; |
| 12936 | 76 |
structure IsarThy = IsarThy; |
| 14650 | 77 |
structure Constdefs = Constdefs; |
| 12936 | 78 |
structure IsarCmd = IsarCmd; |
| 5873 | 79 |
structure IsarSyn = IsarSyn; |
| 5951 | 80 |
structure Isar = Isar; |
| 5873 | 81 |
end; |