| author | kleing |
| Tue, 02 Mar 2004 01:32:23 +0100 | |
| changeset 14422 | b8da5f258b04 |
| parent 14223 | 0ee05eef881b |
| child 14508 | 859b11514537 |
| permissions | -rw-r--r-- |
| 5832 | 1 |
(* Title: Pure/Isar/isar_syn.ML |
2 |
ID: $Id$ |
|
3 |
Author: Markus Wenzel, TU Muenchen |
|
| 8807 | 4 |
License: GPL (GNU GENERAL PUBLIC LICENSE) |
| 5832 | 5 |
|
| 6353 | 6 |
Isar/Pure outer syntax. |
| 5832 | 7 |
*) |
8 |
||
9 |
signature ISAR_SYN = |
|
10 |
sig |
|
11 |
val keywords: string list |
|
12 |
val parsers: OuterSyntax.parser list |
|
13 |
end; |
|
14 |
||
15 |
structure IsarSyn: ISAR_SYN = |
|
16 |
struct |
|
17 |
||
| 6723 | 18 |
structure P = OuterParse and K = OuterSyntax.Keyword; |
| 5832 | 19 |
|
20 |
||
21 |
(** init and exit **) |
|
22 |
||
23 |
val theoryP = |
|
| 6723 | 24 |
OuterSyntax.command "theory" "begin theory" K.thy_begin |
| 9129 | 25 |
(ThyHeader.args >> (Toplevel.print oo IsarThy.theory)); |
| 5832 | 26 |
|
| 6687 | 27 |
val end_excursionP = |
| 6723 | 28 |
OuterSyntax.command "end" "end current excursion" K.thy_end |
| 6687 | 29 |
(Scan.succeed (Toplevel.print o Toplevel.exit)); |
30 |
||
| 6245 | 31 |
val contextP = |
| 7102 | 32 |
OuterSyntax.improper_command "context" "switch theory context" K.thy_switch |
| 6723 | 33 |
(P.name >> (Toplevel.print oo IsarThy.context)); |
| 6245 | 34 |
|
| 5832 | 35 |
|
36 |
||
| 7749 | 37 |
(** markup commands **) |
| 5832 | 38 |
|
| 9129 | 39 |
val headerP = OuterSyntax.markup_command IsarOutput.Markup "header" "theory header" K.diag |
| 12940 | 40 |
(P.position P.text >> IsarCmd.add_header); |
| 6353 | 41 |
|
| 9129 | 42 |
val chapterP = OuterSyntax.markup_command IsarOutput.Markup "chapter" "chapter heading" |
| 12940 | 43 |
K.thy_heading (P.position P.text >> IsarCmd.add_chapter); |
| 5958 | 44 |
|
| 9129 | 45 |
val sectionP = OuterSyntax.markup_command IsarOutput.Markup "section" "section heading" |
| 12940 | 46 |
K.thy_heading (P.position P.text >> IsarCmd.add_section); |
| 5958 | 47 |
|
| 9129 | 48 |
val subsectionP = OuterSyntax.markup_command IsarOutput.Markup "subsection" "subsection heading" |
| 12940 | 49 |
K.thy_heading (P.position P.text >> IsarCmd.add_subsection); |
| 5958 | 50 |
|
| 7749 | 51 |
val subsubsectionP = |
| 9129 | 52 |
OuterSyntax.markup_command IsarOutput.Markup "subsubsection" "subsubsection heading" |
| 12940 | 53 |
K.thy_heading (P.position P.text >> IsarCmd.add_subsubsection); |
| 5832 | 54 |
|
| 9129 | 55 |
val textP = OuterSyntax.markup_command IsarOutput.MarkupEnv "text" "formal comment (theory)" |
| 12940 | 56 |
K.thy_decl (P.position P.text >> IsarCmd.add_text); |
| 7172 | 57 |
|
| 9129 | 58 |
val text_rawP = OuterSyntax.markup_command IsarOutput.Verbatim "text_raw" |
59 |
"raw document preparation text" K.thy_decl |
|
| 12940 | 60 |
(P.position P.text >> IsarCmd.add_text_raw); |
| 7172 | 61 |
|
| 9552 | 62 |
val sectP = OuterSyntax.markup_command IsarOutput.Markup "sect" "formal comment (proof)" |
| 12940 | 63 |
K.prf_heading (P.position P.text >> IsarCmd.add_sect); |
| 7172 | 64 |
|
| 9129 | 65 |
val subsectP = OuterSyntax.markup_command IsarOutput.Markup "subsect" "formal comment (proof)" |
| 12940 | 66 |
K.prf_heading (P.position P.text >> IsarCmd.add_subsect); |
| 7172 | 67 |
|
| 9129 | 68 |
val subsubsectP = OuterSyntax.markup_command IsarOutput.Markup "subsubsect" |
| 9552 | 69 |
"formal comment (proof)" K.prf_heading |
| 12940 | 70 |
(P.position P.text >> IsarCmd.add_subsubsect); |
| 7172 | 71 |
|
| 9129 | 72 |
val txtP = OuterSyntax.markup_command IsarOutput.MarkupEnv "txt" "formal comment (proof)" |
| 12940 | 73 |
K.prf_decl (P.position P.text >> IsarCmd.add_txt); |
| 7172 | 74 |
|
| 9129 | 75 |
val txt_rawP = OuterSyntax.markup_command IsarOutput.Verbatim "txt_raw" |
76 |
"raw document preparation text (proof)" K.prf_decl |
|
| 12940 | 77 |
(P.position P.text >> IsarCmd.add_txt_raw); |
| 7775 | 78 |
|
| 5832 | 79 |
|
| 6886 | 80 |
|
81 |
(** theory sections **) |
|
82 |
||
| 5832 | 83 |
(* classes and sorts *) |
84 |
||
85 |
val classesP = |
|
| 6723 | 86 |
OuterSyntax.command "classes" "declare type classes" K.thy_decl |
|
11101
014e7b5c77ba
support \<subseteq> syntax in classes/classrel/axclass/instance;
wenzelm
parents:
11017
diff
changeset
|
87 |
(Scan.repeat1 (P.name -- Scan.optional ((P.$$$ "\\<subseteq>" || P.$$$ "<") |-- |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
88 |
P.!!! (P.list1 P.xname)) []) >> (Toplevel.theory o Theory.add_classes)); |
| 5832 | 89 |
|
90 |
val classrelP = |
|
| 6723 | 91 |
OuterSyntax.command "classrel" "state inclusion of type classes (axiomatic!)" K.thy_decl |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
92 |
(P.xname -- ((P.$$$ "\\<subseteq>" || P.$$$ "<") |-- P.!!! P.xname) |
|
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
93 |
>> (Toplevel.theory o Theory.add_classrel o single)); |
| 5832 | 94 |
|
95 |
val defaultsortP = |
|
| 6723 | 96 |
OuterSyntax.command "defaultsort" "declare default sort" K.thy_decl |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
97 |
(P.sort >> (Toplevel.theory o Theory.add_defsort)); |
| 5832 | 98 |
|
99 |
||
100 |
(* types *) |
|
101 |
||
102 |
val typedeclP = |
|
| 12624 | 103 |
OuterSyntax.command "typedecl" "type declaration" K.thy_decl |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
104 |
(P.type_args -- P.name -- P.opt_infix >> (fn ((args, a), mx) => |
|
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
105 |
Toplevel.theory (PureThy.add_typedecls [(a, args, mx)]))); |
| 5832 | 106 |
|
107 |
val typeabbrP = |
|
| 6723 | 108 |
OuterSyntax.command "types" "declare type abbreviations" K.thy_decl |
| 6727 | 109 |
(Scan.repeat1 |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
110 |
(P.type_args -- P.name -- (P.$$$ "=" |-- P.!!! (P.typ -- P.opt_infix'))) |
|
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
111 |
>> (Toplevel.theory o Theory.add_tyabbrs o |
|
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
112 |
map (fn ((args, a), (T, mx)) => (a, args, T, mx)))); |
| 5832 | 113 |
|
114 |
val nontermP = |
|
| 6370 | 115 |
OuterSyntax.command "nonterminals" "declare types treated as grammar nonterminal symbols" |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
116 |
K.thy_decl (Scan.repeat1 P.name >> (Toplevel.theory o Theory.add_nonterminals)); |
| 5832 | 117 |
|
118 |
val aritiesP = |
|
| 6723 | 119 |
OuterSyntax.command "arities" "state type arities (axiomatic!)" K.thy_decl |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
120 |
(Scan.repeat1 (P.xname -- (P.$$$ "::" |-- P.!!! P.arity) >> P.triple2) |
|
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
121 |
>> (Toplevel.theory o Theory.add_arities)); |
| 5832 | 122 |
|
123 |
||
124 |
(* consts and syntax *) |
|
125 |
||
| 8227 | 126 |
val judgmentP = |
127 |
OuterSyntax.command "judgment" "declare object-logic judgment" K.thy_decl |
|
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
128 |
(P.const >> (Toplevel.theory o ObjectLogic.add_judgment)); |
| 8227 | 129 |
|
| 5832 | 130 |
val constsP = |
| 6723 | 131 |
OuterSyntax.command "consts" "declare constants" K.thy_decl |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
132 |
(Scan.repeat1 P.const >> (Toplevel.theory o Theory.add_consts)); |
| 5832 | 133 |
|
|
14223
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
134 |
val opt_overloaded = |
|
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
135 |
Scan.optional (P.$$$ "(" |-- P.!!! ((P.$$$ "overloaded" >> K true) --| P.$$$ ")")) false;
|
|
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
136 |
|
|
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
137 |
val finalconstsP = |
|
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
138 |
OuterSyntax.command "finalconsts" "declare constants as final" K.thy_decl |
|
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
139 |
(opt_overloaded -- Scan.repeat1 P.term >> (uncurry (Toplevel.theory oo Theory.add_finals))); |
| 9731 | 140 |
|
| 12142 | 141 |
val mode_spec = |
| 9731 | 142 |
(P.$$$ "output" >> K ("", false)) || P.name -- Scan.optional (P.$$$ "output" >> K false) true;
|
143 |
||
144 |
val opt_mode = Scan.optional (P.$$$ "(" |-- P.!!! (mode_spec --| P.$$$ ")")) ("", true);
|
|
| 5832 | 145 |
|
146 |
val syntaxP = |
|
| 6723 | 147 |
OuterSyntax.command "syntax" "declare syntactic constants" K.thy_decl |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
148 |
(opt_mode -- Scan.repeat1 P.const >> (Toplevel.theory o uncurry Theory.add_modesyntax)); |
| 5832 | 149 |
|
150 |
||
151 |
(* translations *) |
|
152 |
||
153 |
val trans_pat = |
|
| 6723 | 154 |
Scan.optional (P.$$$ "(" |-- P.!!! (P.xname --| P.$$$ ")")) "logic" -- P.string;
|
| 5832 | 155 |
|
156 |
fun trans_arrow toks = |
|
| 10688 | 157 |
((P.$$$ "\\<rightharpoonup>" || P.$$$ "=>") >> K Syntax.ParseRule || |
158 |
(P.$$$ "\\<leftharpoondown>" || P.$$$ "<=") >> K Syntax.PrintRule || |
|
159 |
(P.$$$ "\\<rightleftharpoons>" || P.$$$ "==") >> K Syntax.ParsePrintRule) toks; |
|
| 5832 | 160 |
|
161 |
val trans_line = |
|
| 6723 | 162 |
trans_pat -- P.!!! (trans_arrow -- trans_pat) |
| 5832 | 163 |
>> (fn (left, (arr, right)) => arr (left, right)); |
164 |
||
165 |
val translationsP = |
|
| 6723 | 166 |
OuterSyntax.command "translations" "declare syntax translation rules" K.thy_decl |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
167 |
(Scan.repeat1 trans_line >> (Toplevel.theory o Theory.add_trrules)); |
| 5832 | 168 |
|
169 |
||
170 |
(* axioms and definitions *) |
|
171 |
||
172 |
val axiomsP = |
|
| 6723 | 173 |
OuterSyntax.command "axioms" "state arbitrary propositions (axiomatic!)" K.thy_decl |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
174 |
(Scan.repeat1 P.spec_name >> (Toplevel.theory o IsarThy.add_axioms)); |
| 5832 | 175 |
|
176 |
val defsP = |
|
| 6723 | 177 |
OuterSyntax.command "defs" "define constants" K.thy_decl |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
178 |
(opt_overloaded -- Scan.repeat1 P.spec_name >> (Toplevel.theory o IsarThy.add_defs)); |
| 6370 | 179 |
|
180 |
val constdefsP = |
|
| 6723 | 181 |
OuterSyntax.command "constdefs" "declare and define constants" K.thy_decl |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
182 |
(Scan.repeat1 (P.const -- P.term) >> (Toplevel.theory o IsarThy.add_constdefs)); |
| 5832 | 183 |
|
184 |
||
| 5914 | 185 |
(* theorems *) |
186 |
||
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
187 |
val name_facts = P.and_list1 (P.opt_thm_name "=" -- P.xthms1); |
| 5914 | 188 |
|
| 12940 | 189 |
fun theorems kind = P.locale_target -- name_facts |
| 12712 | 190 |
>> uncurry (#1 ooo IsarThy.smart_theorems kind); |
191 |
||
| 5914 | 192 |
val theoremsP = |
| 6723 | 193 |
OuterSyntax.command "theorems" "define theorems" K.thy_decl |
| 12712 | 194 |
(theorems Drule.theoremK >> Toplevel.theory); |
| 5914 | 195 |
|
196 |
val lemmasP = |
|
| 6723 | 197 |
OuterSyntax.command "lemmas" "define lemmas" K.thy_decl |
| 12712 | 198 |
(theorems Drule.lemmaK >> Toplevel.theory); |
| 5914 | 199 |
|
| 9589 | 200 |
val declareP = |
| 9776 | 201 |
OuterSyntax.command "declare" "declare theorems (improper)" K.thy_script |
| 12968 | 202 |
(P.locale_target -- (P.and_list1 P.xthms1 >> flat) |
203 |
>> (Toplevel.theory o uncurry IsarThy.declare_theorems)); |
|
| 9589 | 204 |
|
| 5914 | 205 |
|
| 5832 | 206 |
(* name space entry path *) |
207 |
||
208 |
val globalP = |
|
| 6723 | 209 |
OuterSyntax.command "global" "disable prefixing of theory name" K.thy_decl |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
210 |
(Scan.succeed (Toplevel.theory PureThy.global_path)); |
| 5832 | 211 |
|
212 |
val localP = |
|
| 6723 | 213 |
OuterSyntax.command "local" "enable prefixing of theory name" K.thy_decl |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
214 |
(Scan.succeed (Toplevel.theory PureThy.local_path)); |
| 8723 | 215 |
|
216 |
val hideP = |
|
217 |
OuterSyntax.command "hide" "hide names from given name space" K.thy_decl |
|
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
218 |
(P.name -- Scan.repeat1 P.xname >> (Toplevel.theory o IsarThy.hide_space)); |
| 5832 | 219 |
|
220 |
||
221 |
(* use ML text *) |
|
222 |
||
223 |
val useP = |
|
| 6723 | 224 |
OuterSyntax.command "use" "eval ML text from file" K.diag |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
225 |
(P.name >> (Toplevel.no_timing oo IsarCmd.use)); |
| 5832 | 226 |
|
227 |
val mlP = |
|
| 7616 | 228 |
OuterSyntax.command "ML" "eval ML text (diagnostic)" K.diag |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
229 |
(P.text >> IsarCmd.use_mltext true); |
| 7891 | 230 |
|
231 |
val ml_commandP = |
|
232 |
OuterSyntax.command "ML_command" "eval ML text" K.diag |
|
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
233 |
(P.text >> (Toplevel.no_timing oo IsarCmd.use_mltext false)); |
| 7616 | 234 |
|
235 |
val ml_setupP = |
|
236 |
OuterSyntax.command "ML_setup" "eval ML text (may change theory)" K.thy_decl |
|
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
237 |
(P.text >> IsarCmd.use_mltext_theory); |
| 5832 | 238 |
|
239 |
val setupP = |
|
| 7616 | 240 |
OuterSyntax.command "setup" "apply ML theory setup" K.thy_decl |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
241 |
(P.text >> (Toplevel.theory o Context.use_setup)); |
| 5832 | 242 |
|
| 9197 | 243 |
val method_setupP = |
244 |
OuterSyntax.command "method_setup" "define proof method in ML" K.thy_decl |
|
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
245 |
(((P.name -- P.!!! (P.$$$ "=" |-- P.text -- P.text) >> P.triple2)) |
|
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
246 |
>> (Toplevel.theory o IsarThy.method_setup)); |
| 9197 | 247 |
|
| 5832 | 248 |
|
249 |
(* translation functions *) |
|
250 |
||
251 |
val parse_ast_translationP = |
|
| 6723 | 252 |
OuterSyntax.command "parse_ast_translation" "install parse ast translation functions" K.thy_decl |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
253 |
(P.text >> (Toplevel.theory o IsarThy.parse_ast_translation)); |
| 5832 | 254 |
|
255 |
val parse_translationP = |
|
| 6723 | 256 |
OuterSyntax.command "parse_translation" "install parse translation functions" K.thy_decl |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
257 |
(P.text >> (Toplevel.theory o IsarThy.parse_translation)); |
| 5832 | 258 |
|
259 |
val print_translationP = |
|
| 6723 | 260 |
OuterSyntax.command "print_translation" "install print translation functions" K.thy_decl |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
261 |
(P.text >> (Toplevel.theory o IsarThy.print_translation)); |
| 5832 | 262 |
|
263 |
val typed_print_translationP = |
|
| 6370 | 264 |
OuterSyntax.command "typed_print_translation" "install typed print translation functions" |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
265 |
K.thy_decl (P.text >> (Toplevel.theory o IsarThy.typed_print_translation)); |
| 5832 | 266 |
|
267 |
val print_ast_translationP = |
|
| 6723 | 268 |
OuterSyntax.command "print_ast_translation" "install print ast translation functions" K.thy_decl |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
269 |
(P.text >> (Toplevel.theory o IsarThy.print_ast_translation)); |
| 5832 | 270 |
|
271 |
val token_translationP = |
|
| 6723 | 272 |
OuterSyntax.command "token_translation" "install token translation functions" K.thy_decl |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
273 |
(P.text >> (Toplevel.theory o IsarThy.token_translation)); |
| 5832 | 274 |
|
275 |
||
276 |
(* oracles *) |
|
277 |
||
278 |
val oracleP = |
|
| 6723 | 279 |
OuterSyntax.command "oracle" "install oracle" K.thy_decl |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
280 |
((P.name --| P.$$$ "=") -- P.text >> (Toplevel.theory o IsarThy.add_oracle)); |
| 5832 | 281 |
|
282 |
||
| 12061 | 283 |
(* locales *) |
284 |
||
| 12758 | 285 |
val locale_val = |
286 |
(P.locale_expr -- |
|
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
287 |
Scan.optional (P.$$$ "+" |-- P.!!! (Scan.repeat1 P.locale_element)) [] || |
|
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
288 |
Scan.repeat1 P.locale_element >> pair Locale.empty); |
| 12061 | 289 |
|
| 13373 | 290 |
val locale_pred = |
| 13392 | 291 |
Scan.optional (P.$$$ "(" |-- P.!!! ((P.$$$ "open" >> K false) --| P.$$$ ")")) true;
|
| 13373 | 292 |
|
| 12061 | 293 |
val localeP = |
294 |
OuterSyntax.command "locale" "define named proof context" K.thy_decl |
|
| 13392 | 295 |
(locale_pred -- P.name -- Scan.optional (P.$$$ "=" |-- P.!!! locale_val) (Locale.empty, []) |
| 13373 | 296 |
>> (Toplevel.theory o IsarThy.add_locale o (fn ((x, y), (z, w)) => (x, y, z, w)))); |
| 12061 | 297 |
|
298 |
||
| 5832 | 299 |
|
300 |
(** proof commands **) |
|
301 |
||
302 |
(* statements *) |
|
303 |
||
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
304 |
val statement = P.and_list1 (P.opt_thm_name ":" -- Scan.repeat1 P.propp); |
| 12956 | 305 |
val general_statement = |
| 12952 | 306 |
statement >> pair [] || Scan.repeat P.locale_element -- (P.$$$ "shows" |-- statement); |
| 5832 | 307 |
|
|
12242
282a92bc5655
multi_theorem: common statement header (covers *all* results);
wenzelm
parents:
12142
diff
changeset
|
308 |
fun gen_theorem k = |
|
282a92bc5655
multi_theorem: common statement header (covers *all* results);
wenzelm
parents:
12142
diff
changeset
|
309 |
OuterSyntax.command k ("state " ^ k) K.thy_goal
|
| 13445 | 310 |
(P.locale_target -- Scan.optional (P.opt_thm_name ":" --| |
| 12956 | 311 |
Scan.ahead (P.locale_keyword || P.$$$ "shows")) ("", []) --
|
312 |
general_statement >> (fn ((x, y), (z, w)) => |
|
313 |
(Toplevel.print o Toplevel.theory_to_proof (IsarThy.smart_multi_theorem k x y z w)))); |
|
| 5832 | 314 |
|
|
12242
282a92bc5655
multi_theorem: common statement header (covers *all* results);
wenzelm
parents:
12142
diff
changeset
|
315 |
val theoremP = gen_theorem Drule.theoremK; |
|
282a92bc5655
multi_theorem: common statement header (covers *all* results);
wenzelm
parents:
12142
diff
changeset
|
316 |
val lemmaP = gen_theorem Drule.lemmaK; |
|
282a92bc5655
multi_theorem: common statement header (covers *all* results);
wenzelm
parents:
12142
diff
changeset
|
317 |
val corollaryP = gen_theorem Drule.corollaryK; |
| 5832 | 318 |
|
319 |
val showP = |
|
| 6723 | 320 |
OuterSyntax.command "show" "state local goal, solving current obligation" K.prf_goal |
| 12006 | 321 |
(statement >> ((Toplevel.print oo Toplevel.proof') o IsarThy.show)); |
| 5832 | 322 |
|
323 |
val haveP = |
|
| 6723 | 324 |
OuterSyntax.command "have" "state local goal" K.prf_goal |
| 12006 | 325 |
(statement >> ((Toplevel.print oo Toplevel.proof) o IsarThy.have)); |
| 5832 | 326 |
|
| 6501 | 327 |
val thusP = |
| 6723 | 328 |
OuterSyntax.command "thus" "abbreviates \"then show\"" K.prf_goal |
| 12006 | 329 |
(statement >> ((Toplevel.print oo Toplevel.proof') o IsarThy.thus)); |
| 6501 | 330 |
|
331 |
val henceP = |
|
| 6723 | 332 |
OuterSyntax.command "hence" "abbreviates \"then have\"" K.prf_goal |
| 12006 | 333 |
(statement >> ((Toplevel.print oo Toplevel.proof) o IsarThy.hence)); |
| 6501 | 334 |
|
| 5832 | 335 |
|
| 5914 | 336 |
(* facts *) |
| 5832 | 337 |
|
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
338 |
val facts = P.and_list1 P.xthms1; |
| 9197 | 339 |
|
| 5832 | 340 |
val thenP = |
| 6723 | 341 |
OuterSyntax.command "then" "forward chaining" K.prf_chain |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
342 |
(Scan.succeed (Toplevel.print o (Toplevel.proof IsarThy.chain))); |
| 5832 | 343 |
|
344 |
val fromP = |
|
| 6723 | 345 |
OuterSyntax.command "from" "forward chaining from given facts" K.prf_chain |
| 9197 | 346 |
(facts >> (Toplevel.print oo (Toplevel.proof o IsarThy.from_facts))); |
| 5914 | 347 |
|
| 6878 | 348 |
val withP = |
349 |
OuterSyntax.command "with" "forward chaining from given and current facts" K.prf_chain |
|
| 9197 | 350 |
(facts >> (Toplevel.print oo (Toplevel.proof o IsarThy.with_facts))); |
| 6878 | 351 |
|
| 6773 | 352 |
val noteP = |
| 6723 | 353 |
OuterSyntax.command "note" "define facts" K.prf_decl |
| 9197 | 354 |
(name_facts >> (Toplevel.print oo (Toplevel.proof o IsarThy.have_facts))); |
| 5832 | 355 |
|
| 12926 | 356 |
val usingP = |
357 |
OuterSyntax.command "using" "augment goal facts" K.prf_decl |
|
358 |
(facts >> (Toplevel.print oo (Toplevel.proof o IsarThy.using_facts))); |
|
359 |
||
| 5832 | 360 |
|
361 |
(* proof context *) |
|
362 |
||
| 11890 | 363 |
val fixP = |
364 |
OuterSyntax.command "fix" "fix variables (Skolem constants)" K.prf_asm |
|
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
365 |
(P.and_list1 (Scan.repeat1 P.name -- Scan.option (P.$$$ "::" |-- P.typ)) |
| 11890 | 366 |
>> (Toplevel.print oo (Toplevel.proof o IsarThy.fix))); |
367 |
||
| 5832 | 368 |
val assumeP = |
| 6869 | 369 |
OuterSyntax.command "assume" "assume propositions" K.prf_asm |
| 12142 | 370 |
(statement >> (Toplevel.print oo (Toplevel.proof o IsarThy.assume))); |
| 5832 | 371 |
|
| 6850 | 372 |
val presumeP = |
| 6869 | 373 |
OuterSyntax.command "presume" "assume propositions, to be established later" K.prf_asm |
| 12142 | 374 |
(statement >> (Toplevel.print oo (Toplevel.proof o IsarThy.presume))); |
| 6850 | 375 |
|
| 6953 | 376 |
val defP = |
377 |
OuterSyntax.command "def" "local definition" K.prf_asm |
|
| 10688 | 378 |
(P.opt_thm_name ":" -- (P.name -- ((P.$$$ "\\<equiv>" || P.$$$ "==") |-- P.!!! P.termp)) |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
379 |
>> (Toplevel.print oo (Toplevel.proof o IsarThy.local_def))); |
| 6953 | 380 |
|
| 11890 | 381 |
val obtainP = |
382 |
OuterSyntax.command "obtain" "generalized existence" |
|
383 |
K.prf_asm_goal |
|
384 |
(Scan.optional |
|
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
385 |
(P.and_list1 (Scan.repeat1 P.name -- Scan.option (P.$$$ "::" |-- P.typ)) |
| 12968 | 386 |
--| P.$$$ "where") [] -- statement >> (Toplevel.print oo IsarThy.obtain)); |
| 5832 | 387 |
|
388 |
val letP = |
|
| 6723 | 389 |
OuterSyntax.command "let" "bind text variables" K.prf_decl |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
390 |
(P.and_list1 (P.enum1 "and" P.term -- (P.$$$ "=" |-- P.term)) |
| 8615 | 391 |
>> (Toplevel.print oo (Toplevel.proof o IsarThy.let_bind))); |
| 5832 | 392 |
|
|
11793
5f0ab6f5c280
support impromptu terminology of cases parameters;
wenzelm
parents:
11742
diff
changeset
|
393 |
val case_spec = |
| 12267 | 394 |
(P.$$$ "(" |-- P.!!! (P.xname -- Scan.repeat1 P.uname --| P.$$$ ")") ||
|
395 |
P.xname >> rpair []) -- P.opt_attribs >> P.triple1; |
|
|
11793
5f0ab6f5c280
support impromptu terminology of cases parameters;
wenzelm
parents:
11742
diff
changeset
|
396 |
|
| 8370 | 397 |
val caseP = |
398 |
OuterSyntax.command "case" "invoke local context" K.prf_asm |
|
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
399 |
(case_spec >> (Toplevel.print oo (Toplevel.proof o IsarThy.invoke_case))); |
| 8370 | 400 |
|
| 5832 | 401 |
|
402 |
(* proof structure *) |
|
403 |
||
404 |
val beginP = |
|
| 9056 | 405 |
OuterSyntax.command "{" "begin explicit proof block" K.prf_open
|
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
406 |
(Scan.succeed (Toplevel.print o (Toplevel.proof IsarThy.begin_block))); |
| 5832 | 407 |
|
| 6687 | 408 |
val endP = |
| 9056 | 409 |
OuterSyntax.command "}" "end explicit proof block" K.prf_close |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
410 |
(Scan.succeed (Toplevel.print o (Toplevel.proof IsarThy.end_block))); |
| 6687 | 411 |
|
| 5832 | 412 |
val nextP = |
| 6723 | 413 |
OuterSyntax.command "next" "enter next proof block" K.prf_block |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
414 |
(Scan.succeed (Toplevel.print o (Toplevel.proof IsarThy.next_block))); |
| 5832 | 415 |
|
416 |
||
417 |
(* end proof *) |
|
418 |
||
| 6404 | 419 |
val qedP = |
| 6735 | 420 |
OuterSyntax.command "qed" "conclude (sub-)proof" K.qed_block |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
421 |
(Scan.option P.method >> IsarThy.qed); |
| 5832 | 422 |
|
| 6404 | 423 |
val terminal_proofP = |
| 6723 | 424 |
OuterSyntax.command "by" "terminal backward proof" K.qed |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
425 |
(P.method -- Scan.option P.method >> IsarThy.terminal_proof); |
| 6404 | 426 |
|
| 8966 | 427 |
val default_proofP = |
428 |
OuterSyntax.command ".." "default proof" K.qed |
|
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
429 |
(Scan.succeed IsarThy.default_proof); |
| 8966 | 430 |
|
| 6404 | 431 |
val immediate_proofP = |
| 6723 | 432 |
OuterSyntax.command "." "immediate proof" K.qed |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
433 |
(Scan.succeed IsarThy.immediate_proof); |
| 6404 | 434 |
|
| 8966 | 435 |
val done_proofP = |
436 |
OuterSyntax.command "done" "done proof" K.qed |
|
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
437 |
(Scan.succeed IsarThy.done_proof); |
| 5832 | 438 |
|
|
6888
d0c68ebdabc5
skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents:
6886
diff
changeset
|
439 |
val skip_proofP = |
| 7172 | 440 |
OuterSyntax.improper_command "sorry" "skip proof (quick-and-dirty mode only!)" K.qed |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
441 |
(Scan.succeed IsarThy.skip_proof); |
|
6888
d0c68ebdabc5
skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents:
6886
diff
changeset
|
442 |
|
| 8210 | 443 |
val forget_proofP = |
| 8521 | 444 |
OuterSyntax.command "oops" "forget proof" K.qed_global |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
445 |
(Scan.succeed IsarThy.forget_proof); |
| 8210 | 446 |
|
| 5832 | 447 |
|
448 |
(* proof steps *) |
|
449 |
||
| 8165 | 450 |
val deferP = |
| 8681 | 451 |
OuterSyntax.command "defer" "shuffle internal proof state" K.prf_script |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
452 |
(Scan.option P.nat >> (Toplevel.print oo (Toplevel.proof o IsarThy.defer))); |
| 8165 | 453 |
|
454 |
val preferP = |
|
| 8681 | 455 |
OuterSyntax.command "prefer" "shuffle internal proof state" K.prf_script |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
456 |
(P.nat >> (Toplevel.print oo (Toplevel.proof o IsarThy.prefer))); |
| 8165 | 457 |
|
| 6850 | 458 |
val applyP = |
| 8681 | 459 |
OuterSyntax.command "apply" "initial refinement step (unstructured)" K.prf_script |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
460 |
(P.method >> (Toplevel.print oo (Toplevel.proof o IsarThy.apply))); |
| 5832 | 461 |
|
| 8235 | 462 |
val apply_endP = |
| 8681 | 463 |
OuterSyntax.command "apply_end" "terminal refinement (unstructured)" K.prf_script |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
464 |
(P.method >> (Toplevel.print oo (Toplevel.proof o IsarThy.apply_end))); |
| 5832 | 465 |
|
| 6404 | 466 |
val proofP = |
| 6723 | 467 |
OuterSyntax.command "proof" "backward proof" K.prf_block |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
468 |
(Scan.option P.method >> (Toplevel.print oo (Toplevel.proof o IsarThy.proof))); |
| 5832 | 469 |
|
470 |
||
| 6773 | 471 |
(* calculational proof commands *) |
472 |
||
| 6878 | 473 |
val calc_args = |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
474 |
Scan.option (P.$$$ "(" |-- P.!!! ((P.xthms1 --| P.$$$ ")")));
|
| 6878 | 475 |
|
| 6773 | 476 |
val alsoP = |
| 8562 | 477 |
OuterSyntax.command "also" "combine calculation and current facts" K.prf_decl |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
478 |
(calc_args >> IsarThy.also); |
| 6773 | 479 |
|
480 |
val finallyP = |
|
| 8562 | 481 |
OuterSyntax.command "finally" "combine calculation and current facts, exhibit result" K.prf_chain |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
482 |
(calc_args >> IsarThy.finally); |
| 6773 | 483 |
|
| 8562 | 484 |
val moreoverP = |
485 |
OuterSyntax.command "moreover" "augment calculation by current facts" K.prf_decl |
|
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
486 |
(Scan.succeed IsarThy.moreover); |
| 8562 | 487 |
|
| 8588 | 488 |
val ultimatelyP = |
489 |
OuterSyntax.command "ultimately" "augment calculation by current facts, exhibit result" |
|
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
490 |
K.prf_chain (Scan.succeed IsarThy.ultimately); |
| 8588 | 491 |
|
| 6773 | 492 |
|
| 6742 | 493 |
(* proof navigation *) |
| 5944 | 494 |
|
| 5832 | 495 |
val backP = |
| 8235 | 496 |
OuterSyntax.command "back" "backtracking of proof command" K.prf_script |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
497 |
(Scan.optional (P.$$$ "!" >> K true) false >> (Toplevel.print oo IsarCmd.back)); |
| 5832 | 498 |
|
499 |
||
| 6742 | 500 |
(* history *) |
501 |
||
502 |
val cannot_undoP = |
|
503 |
OuterSyntax.improper_command "cannot_undo" "report 'cannot undo' error message" K.control |
|
| 9010 | 504 |
(P.name >> (Toplevel.no_timing oo IsarCmd.cannot_undo)); |
| 6742 | 505 |
|
| 7733 | 506 |
val clear_undosP = |
507 |
OuterSyntax.improper_command "clear_undos" "clear theory-level undo information" K.control |
|
| 9010 | 508 |
(P.nat >> (Toplevel.no_timing oo IsarCmd.clear_undos_theory)); |
| 6742 | 509 |
|
510 |
val redoP = |
|
511 |
OuterSyntax.improper_command "redo" "redo last command" K.control |
|
| 9010 | 512 |
(Scan.succeed (Toplevel.no_timing o Toplevel.print o IsarCmd.redo)); |
| 6742 | 513 |
|
514 |
val undos_proofP = |
|
515 |
OuterSyntax.improper_command "undos_proof" "undo last proof commands" K.control |
|
| 9010 | 516 |
(P.nat >> ((Toplevel.no_timing o Toplevel.print) oo IsarCmd.undos_proof)); |
| 6742 | 517 |
|
518 |
val undoP = |
|
519 |
OuterSyntax.improper_command "undo" "undo last command" K.control |
|
| 9010 | 520 |
(Scan.succeed ((Toplevel.no_timing o Toplevel.print) o IsarCmd.undo)); |
| 6742 | 521 |
|
| 8500 | 522 |
val killP = |
523 |
OuterSyntax.improper_command "kill" "kill current history node" K.control |
|
| 9010 | 524 |
(Scan.succeed ((Toplevel.no_timing o Toplevel.print) o IsarCmd.kill)); |
| 8500 | 525 |
|
| 6742 | 526 |
|
| 5832 | 527 |
|
528 |
(** diagnostic commands (for interactive mode only) **) |
|
529 |
||
| 8464 | 530 |
val opt_modes = Scan.optional (P.$$$ "(" |-- P.!!! (Scan.repeat1 P.xname --| P.$$$ ")")) [];
|
531 |
||
532 |
||
| 7124 | 533 |
val pretty_setmarginP = |
534 |
OuterSyntax.improper_command "pretty_setmargin" "change default margin for pretty printing" |
|
| 9010 | 535 |
K.diag (P.nat >> (Toplevel.no_timing oo IsarCmd.pretty_setmargin)); |
| 7124 | 536 |
|
| 5832 | 537 |
val print_commandsP = |
| 9221 | 538 |
OuterSyntax.improper_command "print_commands" "print outer syntax (global)" K.diag |
539 |
(Scan.succeed (Toplevel.no_timing o OuterSyntax.print_commands)); |
|
| 5832 | 540 |
|
| 7308 | 541 |
val print_contextP = |
542 |
OuterSyntax.improper_command "print_context" "print theory context name" K.diag |
|
| 9010 | 543 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_context)); |
| 7308 | 544 |
|
| 5832 | 545 |
val print_theoryP = |
| 6723 | 546 |
OuterSyntax.improper_command "print_theory" "print logical theory contents (verbose!)" K.diag |
| 9010 | 547 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_theory)); |
| 5832 | 548 |
|
549 |
val print_syntaxP = |
|
| 6723 | 550 |
OuterSyntax.improper_command "print_syntax" "print inner syntax of theory (verbose!)" K.diag |
| 9010 | 551 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_syntax)); |
| 5832 | 552 |
|
| 5881 | 553 |
val print_theoremsP = |
| 12061 | 554 |
OuterSyntax.improper_command "print_theorems" "print theorems of this theory" K.diag |
| 9010 | 555 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_theorems)); |
| 5881 | 556 |
|
| 12061 | 557 |
val print_localesP = |
558 |
OuterSyntax.improper_command "print_locales" "print locales of this theory" K.diag |
|
559 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_locales)); |
|
560 |
||
561 |
val print_localeP = |
|
562 |
OuterSyntax.improper_command "print_locale" "print named locale of this theory" K.diag |
|
| 12758 | 563 |
(locale_val >> (Toplevel.no_timing oo IsarCmd.print_locale)); |
| 12061 | 564 |
|
| 5832 | 565 |
val print_attributesP = |
| 12061 | 566 |
OuterSyntax.improper_command "print_attributes" "print attributes of this theory" K.diag |
| 9010 | 567 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_attributes)); |
| 5832 | 568 |
|
| 12383 | 569 |
val print_rulesP = |
570 |
OuterSyntax.improper_command "print_rules" "print intro/elim rules" K.diag |
|
571 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_rules)); |
|
572 |
||
| 11666 | 573 |
val print_induct_rulesP = |
574 |
OuterSyntax.improper_command "print_induct_rules" "print induction and cases rules" K.diag |
|
575 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_induct_rules)); |
|
576 |
||
| 9221 | 577 |
val print_trans_rulesP = |
| 11666 | 578 |
OuterSyntax.improper_command "print_trans_rules" "print transitivity rules" K.diag |
| 9221 | 579 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_trans_rules)); |
580 |
||
| 5832 | 581 |
val print_methodsP = |
| 12061 | 582 |
OuterSyntax.improper_command "print_methods" "print methods of this theory" K.diag |
| 9010 | 583 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_methods)); |
| 5832 | 584 |
|
| 9221 | 585 |
val print_antiquotationsP = |
586 |
OuterSyntax.improper_command "print_antiquotations" "print antiquotations (global)" K.diag |
|
587 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_antiquotations)); |
|
588 |
||
| 7616 | 589 |
val thms_containingP = |
| 13275 | 590 |
OuterSyntax.improper_command "thms_containing" |
591 |
"print facts containing certain constants or variables" |
|
| 13284 | 592 |
K.diag (Scan.option (P.$$$ "(" |-- P.!!! (P.nat --| P.$$$ ")")) --
|
593 |
Scan.repeat P.term >> (Toplevel.no_timing oo IsarCmd.print_thms_containing)); |
|
| 7616 | 594 |
|
| 9454 | 595 |
val thm_depsP = |
596 |
OuterSyntax.improper_command "thm_deps" "visualize theorem dependencies" |
|
597 |
K.diag (P.xthms1 >> (Toplevel.no_timing oo IsarCmd.thm_deps)); |
|
598 |
||
| 5832 | 599 |
val print_bindsP = |
| 6723 | 600 |
OuterSyntax.improper_command "print_binds" "print term bindings of proof context" K.diag |
| 9010 | 601 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_binds)); |
| 5832 | 602 |
|
603 |
val print_lthmsP = |
|
| 8370 | 604 |
OuterSyntax.improper_command "print_facts" "print facts of proof context" K.diag |
| 9010 | 605 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_lthms)); |
| 5832 | 606 |
|
| 8370 | 607 |
val print_casesP = |
608 |
OuterSyntax.improper_command "print_cases" "print cases of proof context" K.diag |
|
| 9010 | 609 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_cases)); |
| 8370 | 610 |
|
| 13802 | 611 |
val print_introsP = |
612 |
OuterSyntax.improper_command "print_intros" "print matching introduction rules" K.diag |
|
613 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_intros)); |
|
614 |
||
| 5896 | 615 |
val print_thmsP = |
| 8464 | 616 |
OuterSyntax.improper_command "thm" "print theorems" K.diag |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
617 |
(opt_modes -- P.xthms1 >> (Toplevel.no_timing oo IsarCmd.print_thms)); |
| 5832 | 618 |
|
|
11524
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11101
diff
changeset
|
619 |
val print_prfsP = |
|
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11101
diff
changeset
|
620 |
OuterSyntax.improper_command "prf" "print proof terms of theorems" K.diag |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
621 |
(opt_modes -- Scan.option P.xthms1 >> (Toplevel.no_timing oo IsarCmd.print_prfs false)); |
|
11524
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11101
diff
changeset
|
622 |
|
|
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11101
diff
changeset
|
623 |
val print_full_prfsP = |
|
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11101
diff
changeset
|
624 |
OuterSyntax.improper_command "full_prf" "print full proof terms of theorems" K.diag |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
625 |
(opt_modes -- Scan.option P.xthms1 >> (Toplevel.no_timing oo IsarCmd.print_prfs true)); |
|
11524
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11101
diff
changeset
|
626 |
|
| 5832 | 627 |
val print_propP = |
| 6723 | 628 |
OuterSyntax.improper_command "prop" "read and print proposition" K.diag |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
629 |
(opt_modes -- P.term >> (Toplevel.no_timing oo IsarCmd.print_prop)); |
| 5832 | 630 |
|
631 |
val print_termP = |
|
| 6723 | 632 |
OuterSyntax.improper_command "term" "read and print term" K.diag |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
633 |
(opt_modes -- P.term >> (Toplevel.no_timing oo IsarCmd.print_term)); |
| 5832 | 634 |
|
635 |
val print_typeP = |
|
| 6723 | 636 |
OuterSyntax.improper_command "typ" "read and print type" K.diag |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
637 |
(opt_modes -- P.typ >> (Toplevel.no_timing oo IsarCmd.print_type)); |
| 5832 | 638 |
|
639 |
||
640 |
||
641 |
(** system commands (for interactive mode only) **) |
|
642 |
||
643 |
val cdP = |
|
| 8650 | 644 |
OuterSyntax.improper_command "cd" "change current working directory" K.diag |
| 9010 | 645 |
(P.name >> (Toplevel.no_timing oo IsarCmd.cd)); |
| 5832 | 646 |
|
647 |
val pwdP = |
|
| 6723 | 648 |
OuterSyntax.improper_command "pwd" "print current working directory" K.diag |
| 9010 | 649 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.pwd)); |
| 5832 | 650 |
|
651 |
val use_thyP = |
|
| 6723 | 652 |
OuterSyntax.improper_command "use_thy" "use theory file" K.diag |
| 9010 | 653 |
(P.name >> (Toplevel.no_timing oo IsarCmd.use_thy)); |
| 5832 | 654 |
|
| 6694 | 655 |
val use_thy_onlyP = |
| 7102 | 656 |
OuterSyntax.improper_command "use_thy_only" "use theory file only, ignoring associated ML" |
| 9010 | 657 |
K.diag (P.name >> (Toplevel.no_timing oo IsarCmd.use_thy_only)); |
| 6694 | 658 |
|
| 6196 | 659 |
val update_thyP = |
| 6723 | 660 |
OuterSyntax.improper_command "update_thy" "update theory file" K.diag |
| 9010 | 661 |
(P.name >> (Toplevel.no_timing oo IsarCmd.update_thy)); |
| 5832 | 662 |
|
| 7102 | 663 |
val update_thy_onlyP = |
664 |
OuterSyntax.improper_command "update_thy_only" "update theory file, ignoring associated ML" |
|
| 9010 | 665 |
K.diag (P.name >> (Toplevel.no_timing oo IsarCmd.update_thy_only)); |
| 7102 | 666 |
|
667 |
val touch_thyP = |
|
668 |
OuterSyntax.improper_command "touch_thy" "outdate theory, including descendants" K.diag |
|
| 9010 | 669 |
(P.name >> (Toplevel.no_timing oo IsarCmd.touch_thy)); |
| 7102 | 670 |
|
671 |
val touch_all_thysP = |
|
672 |
OuterSyntax.improper_command "touch_all_thys" "outdate all non-finished theories" K.diag |
|
| 9010 | 673 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.touch_all_thys)); |
| 7102 | 674 |
|
| 7908 | 675 |
val touch_child_thysP = |
676 |
OuterSyntax.improper_command "touch_child_thys" "outdate child theories" K.diag |
|
| 9010 | 677 |
(P.name >> (Toplevel.no_timing oo IsarCmd.touch_child_thys)); |
| 7908 | 678 |
|
| 7102 | 679 |
val remove_thyP = |
680 |
OuterSyntax.improper_command "remove_thy" "remove theory from loader database" K.diag |
|
| 9010 | 681 |
(P.name >> (Toplevel.no_timing oo IsarCmd.remove_thy)); |
| 7102 | 682 |
|
| 7931 | 683 |
val kill_thyP = |
684 |
OuterSyntax.improper_command "kill_thy" "kill theory -- try to remove from loader database" |
|
| 9010 | 685 |
K.diag (P.name >> (Toplevel.no_timing oo IsarCmd.kill_thy)); |
| 7931 | 686 |
|
| 9731 | 687 |
val opt_limits = |
688 |
Scan.option P.nat -- Scan.option (P.$$$ "," |-- P.!!! P.nat); |
|
689 |
||
| 5832 | 690 |
val prP = |
| 8886 | 691 |
OuterSyntax.improper_command "pr" "print current proof state (if present)" K.diag |
| 9731 | 692 |
(opt_modes -- opt_limits >> (Toplevel.no_timing oo IsarCmd.pr)); |
| 7199 | 693 |
|
| 7222 | 694 |
val disable_prP = |
695 |
OuterSyntax.improper_command "disable_pr" "disable printing of toplevel state" K.diag |
|
| 9010 | 696 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.disable_pr)); |
| 5832 | 697 |
|
| 7222 | 698 |
val enable_prP = |
699 |
OuterSyntax.improper_command "enable_pr" "enable printing of toplevel state" K.diag |
|
| 9010 | 700 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.enable_pr)); |
| 7222 | 701 |
|
| 5832 | 702 |
val commitP = |
| 6723 | 703 |
OuterSyntax.improper_command "commit" "commit current session to ML database" K.diag |
| 9010 | 704 |
(P.opt_unit >> (Toplevel.no_timing oo K IsarCmd.use_commit)); |
| 5832 | 705 |
|
706 |
val quitP = |
|
| 6723 | 707 |
OuterSyntax.improper_command "quit" "quit Isabelle" K.control |
| 9010 | 708 |
(P.opt_unit >> (Toplevel.no_timing oo K IsarCmd.quit)); |
| 5832 | 709 |
|
710 |
val exitP = |
|
| 6723 | 711 |
OuterSyntax.improper_command "exit" "exit Isar loop" K.control |
| 9010 | 712 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.exit)); |
| 5832 | 713 |
|
| 7102 | 714 |
val init_toplevelP = |
715 |
OuterSyntax.improper_command "init_toplevel" "restart Isar toplevel loop" K.control |
|
| 9010 | 716 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.init_toplevel)); |
| 5991 | 717 |
|
| 7462 | 718 |
val welcomeP = |
| 8678 | 719 |
OuterSyntax.improper_command "welcome" "print welcome message" K.diag |
| 9010 | 720 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.welcome)); |
| 7462 | 721 |
|
| 5832 | 722 |
|
723 |
||
724 |
(** the Pure outer syntax **) |
|
725 |
||
726 |
(*keep keywords consistent with the parsers, including those in |
|
727 |
outer_parse.ML, otherwise be prepared for unexpected errors*) |
|
728 |
||
729 |
val keywords = |
|
| 7415 | 730 |
["!", "!!", "%", "%%", "(", ")", "+", ",", "--", ":", "::", ";", "<",
|
| 12044 | 731 |
"<=", "=", "==", "=>", "?", "[", "]", "and", "assumes", "binder", |
| 12956 | 732 |
"concl", "defines", "files", "fixes", "in", "includes", "infix", |
| 13373 | 733 |
"infixl", "infixr", "is", "notes", "open", "output", "overloaded", |
734 |
"shows", "structure", "where", "|", "\\<equiv>", |
|
735 |
"\\<leftharpoondown>", "\\<rightharpoonup>", |
|
736 |
"\\<rightleftharpoons>", "\\<subseteq>"]; |
|
| 5832 | 737 |
|
738 |
val parsers = [ |
|
739 |
(*theory structure*) |
|
| 8500 | 740 |
theoryP, end_excursionP, contextP, |
| 7775 | 741 |
(*markup commands*) |
| 7733 | 742 |
headerP, chapterP, sectionP, subsectionP, subsubsectionP, textP, |
| 7862 | 743 |
text_rawP, sectP, subsectP, subsubsectP, txtP, txt_rawP, |
| 5832 | 744 |
(*theory sections*) |
| 7172 | 745 |
classesP, classrelP, defaultsortP, typedeclP, typeabbrP, nontermP, |
|
14223
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
746 |
aritiesP, judgmentP, constsP, finalconstsP, syntaxP, translationsP, |
|
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
747 |
axiomsP, defsP, constdefsP, theoremsP, lemmasP, declareP, globalP, |
|
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
748 |
localP, hideP, useP, mlP, ml_commandP, ml_setupP, setupP, |
|
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
749 |
method_setupP, parse_ast_translationP, parse_translationP, |
|
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
750 |
print_translationP, typed_print_translationP, |
|
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
751 |
print_ast_translationP, token_translationP, oracleP, localeP, |
| 5832 | 752 |
(*proof commands*) |
| 11890 | 753 |
theoremP, lemmaP, corollaryP, showP, haveP, thusP, henceP, fixP, |
754 |
assumeP, presumeP, defP, obtainP, letP, caseP, thenP, fromP, withP, |
|
| 12926 | 755 |
noteP, usingP, beginP, endP, nextP, qedP, terminal_proofP, |
756 |
default_proofP, immediate_proofP, done_proofP, skip_proofP, |
|
757 |
forget_proofP, deferP, preferP, applyP, apply_endP, proofP, alsoP, |
|
758 |
finallyP, moreoverP, ultimatelyP, backP, cannot_undoP, clear_undosP, |
|
759 |
redoP, undos_proofP, undoP, killP, |
|
| 5832 | 760 |
(*diagnostic commands*) |
| 7308 | 761 |
pretty_setmarginP, print_commandsP, print_contextP, print_theoryP, |
| 12061 | 762 |
print_syntaxP, print_theoremsP, print_localesP, print_localeP, |
| 12383 | 763 |
print_attributesP, print_rulesP, print_induct_rulesP, |
764 |
print_trans_rulesP, print_methodsP, print_antiquotationsP, |
|
765 |
thms_containingP, thm_depsP, print_bindsP, print_lthmsP, |
|
| 13802 | 766 |
print_casesP, print_introsP, print_thmsP, print_prfsP, print_full_prfsP, |
| 12383 | 767 |
print_propP, print_termP, print_typeP, |
| 5832 | 768 |
(*system commands*) |
| 7102 | 769 |
cdP, pwdP, use_thyP, use_thy_onlyP, update_thyP, update_thy_onlyP, |
| 7931 | 770 |
touch_thyP, touch_all_thysP, touch_child_thysP, remove_thyP, |
771 |
kill_thyP, prP, disable_prP, enable_prP, commitP, quitP, exitP, |
|
772 |
init_toplevelP, welcomeP]; |
|
| 5832 | 773 |
|
774 |
end; |
|
775 |
||
776 |
||
| 6196 | 777 |
(*install the Pure outer syntax*) |
| 5832 | 778 |
OuterSyntax.add_keywords IsarSyn.keywords; |
779 |
OuterSyntax.add_parsers IsarSyn.parsers; |