author | wenzelm |
Tue, 06 Nov 2001 19:26:52 +0100 | |
changeset 12069 | 87fecdd74030 |
parent 11889 | d9509f714982 |
child 12301 | adf0eff5ea62 |
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 |
8807 | 4 |
License: GPL (GNU GENERAL PUBLIC LICENSE) |
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
5 |
|
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
6 |
Isar -- Intelligible Semi-Automated Reasoning for Isabelle. |
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
7 |
*) |
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
8 |
|
6888
d0c68ebdabc5
skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents:
6783
diff
changeset
|
9 |
(*basic proof engine*) |
11889 | 10 |
use "object_logic.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"; |
8367 | 12 |
use "rule_cases.ML"; |
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
13 |
use "proof_context.ML"; |
11889 | 14 |
use "locale.ML"; |
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
15 |
use "proof.ML"; |
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
16 |
use "proof_data.ML"; |
6346 | 17 |
use "proof_history.ML"; |
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
18 |
use "args.ML"; |
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
19 |
use "attrib.ML"; |
8298 | 20 |
use "net_rules.ML"; |
11658 | 21 |
use "induct_attrib.ML"; |
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
22 |
use "method.ML"; |
6888
d0c68ebdabc5
skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents:
6783
diff
changeset
|
23 |
|
d0c68ebdabc5
skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents:
6783
diff
changeset
|
24 |
(*derived proof elements*) |
6771 | 25 |
use "calculation.ML"; |
11889 | 26 |
use "obtain.ML"; |
6888
d0c68ebdabc5
skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents:
6783
diff
changeset
|
27 |
use "skip_proof.ML"; |
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
28 |
|
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
29 |
(*outer syntax*) |
9125
f85564116be1
added Isar/antiquote.ML, Isar/isar_output.ML, Isar/thy_header.ML;
wenzelm
parents:
8807
diff
changeset
|
30 |
(*use "outer_lex.ML";*) (*see ../Thy/ROOT.ML*) |
f85564116be1
added Isar/antiquote.ML, Isar/isar_output.ML, Isar/thy_header.ML;
wenzelm
parents:
8807
diff
changeset
|
31 |
use "antiquote.ML"; |
6549 | 32 |
use "comment.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"; |
6346 | 37 |
use "session.ML"; |
9125
f85564116be1
added Isar/antiquote.ML, Isar/isar_output.ML, Isar/thy_header.ML;
wenzelm
parents:
8807
diff
changeset
|
38 |
use "isar_output.ML"; |
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
39 |
|
8091 | 40 |
(*theory and proof operations*) |
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
41 |
use "isar_thy.ML"; |
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
42 |
use "isar_cmd.ML"; |
6242 | 43 |
|
44 |
(*theory syntax*) |
|
9125
f85564116be1
added Isar/antiquote.ML, Isar/isar_output.ML, Isar/thy_header.ML;
wenzelm
parents:
8807
diff
changeset
|
45 |
use "thy_header.ML"; |
6242 | 46 |
use "outer_syntax.ML"; |
5818
962bfe78a297
Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
wenzelm
parents:
diff
changeset
|
47 |
use "isar_syn.ML"; |
5873 | 48 |
|
8091 | 49 |
(*main ML interfaces*) |
5951 | 50 |
use "isar.ML"; |
5873 | 51 |
|
52 |
structure PureIsar = |
|
53 |
struct |
|
11889 | 54 |
structure ObjectLogic = ObjectLogic; |
6783
9cf9c17d9e35
renamed object_logic.ML to Isar/auto_bind.ML and tuned this module;
wenzelm
parents:
6771
diff
changeset
|
55 |
structure AutoBind = AutoBind; |
5873 | 56 |
structure ProofContext = ProofContext; |
11889 | 57 |
structure Locale = Locale; |
5873 | 58 |
structure Proof = Proof; |
6644 | 59 |
structure ProofHistory = ProofHistory; |
5873 | 60 |
structure Args = Args; |
61 |
structure Attrib = Attrib; |
|
62 |
structure Method = Method; |
|
7021 | 63 |
structure Calculation = Calculation; |
11889 | 64 |
structure Obtain = Obtain; |
7021 | 65 |
structure SkipProof = SkipProof; |
9125
f85564116be1
added Isar/antiquote.ML, Isar/isar_output.ML, Isar/thy_header.ML;
wenzelm
parents:
8807
diff
changeset
|
66 |
structure OuterLex = OuterLex; |
f85564116be1
added Isar/antiquote.ML, Isar/isar_output.ML, Isar/thy_header.ML;
wenzelm
parents:
8807
diff
changeset
|
67 |
structure Antiquote = Antiquote; |
6644 | 68 |
structure Comment = Comment; |
5873 | 69 |
structure OuterParse = OuterParse; |
70 |
structure Toplevel = Toplevel; |
|
6644 | 71 |
structure Session = Session; |
5873 | 72 |
structure IsarThy = IsarThy; |
9125
f85564116be1
added Isar/antiquote.ML, Isar/isar_output.ML, Isar/thy_header.ML;
wenzelm
parents:
8807
diff
changeset
|
73 |
structure IsarOutput = IsarOutput; |
5873 | 74 |
structure IsarCmd = IsarCmd; |
9125
f85564116be1
added Isar/antiquote.ML, Isar/isar_output.ML, Isar/thy_header.ML;
wenzelm
parents:
8807
diff
changeset
|
75 |
structure ThyHeader = ThyHeader; |
6644 | 76 |
structure OuterSyntax = OuterSyntax; |
5873 | 77 |
structure IsarSyn = IsarSyn; |
5951 | 78 |
structure Isar = Isar; |
5873 | 79 |
end; |