author | wenzelm |
Sun, 13 Jun 2004 15:30:08 +0200 | |
changeset 14934 | bf9f525d4821 |
parent 14900 | c66394c408f7 |
child 14950 | e22fad2b6f6f |
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 |
14779 | 92 |
(P.and_list1 (P.xname -- ((P.$$$ "\\<subseteq>" || P.$$$ "<") |-- P.!!! P.xname)) |
93 |
>> (Toplevel.theory o Theory.add_classrel)); |
|
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 |
|
14642 | 134 |
val opt_overloaded = P.opt_keyword "overloaded"; |
14223
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
135 |
|
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
136 |
val finalconstsP = |
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
137 |
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
|
138 |
(opt_overloaded -- Scan.repeat1 P.term >> (uncurry (Toplevel.theory oo Theory.add_finals))); |
9731 | 139 |
|
12142 | 140 |
val mode_spec = |
9731 | 141 |
(P.$$$ "output" >> K ("", false)) || P.name -- Scan.optional (P.$$$ "output" >> K false) true; |
142 |
||
14900 | 143 |
val opt_mode = |
144 |
Scan.optional (P.$$$ "(" |-- P.!!! (mode_spec --| P.$$$ ")")) Syntax.default_mode; |
|
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 |
|
14642 | 180 |
|
181 |
(* constant definitions *) |
|
182 |
||
183 |
val vars = P.and_list1 (Scan.repeat1 P.name -- Scan.option (P.$$$ "::" |-- P.typ)); |
|
184 |
||
185 |
val structs = |
|
186 |
Scan.optional ((P.$$$ "(" -- P.$$$ "structure") |-- P.!!! (vars --| P.$$$ ")")) []; |
|
187 |
||
188 |
val constdecl = |
|
189 |
(P.name --| P.$$$ "where") >> (fn x => (x, None, Syntax.NoSyn)) || |
|
190 |
P.name -- (P.$$$ "::" |-- P.!!! P.typ >> Some) -- P.opt_mixfix' >> P.triple1 || |
|
191 |
P.name -- (P.mixfix' >> pair None) >> P.triple2; |
|
192 |
||
193 |
val constdef = Scan.option constdecl -- (P.opt_thm_name ":" -- P.prop); |
|
194 |
||
6370 | 195 |
val constdefsP = |
14642 | 196 |
OuterSyntax.command "constdefs" "standard constant definitions" K.thy_decl |
197 |
(structs -- Scan.repeat1 constdef >> (Toplevel.theory o Constdefs.add_constdefs)); |
|
5832 | 198 |
|
199 |
||
5914 | 200 |
(* theorems *) |
201 |
||
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
202 |
val name_facts = P.and_list1 (P.opt_thm_name "=" -- P.xthms1); |
5914 | 203 |
|
12940 | 204 |
fun theorems kind = P.locale_target -- name_facts |
12712 | 205 |
>> uncurry (#1 ooo IsarThy.smart_theorems kind); |
206 |
||
5914 | 207 |
val theoremsP = |
6723 | 208 |
OuterSyntax.command "theorems" "define theorems" K.thy_decl |
12712 | 209 |
(theorems Drule.theoremK >> Toplevel.theory); |
5914 | 210 |
|
211 |
val lemmasP = |
|
6723 | 212 |
OuterSyntax.command "lemmas" "define lemmas" K.thy_decl |
12712 | 213 |
(theorems Drule.lemmaK >> Toplevel.theory); |
5914 | 214 |
|
9589 | 215 |
val declareP = |
9776 | 216 |
OuterSyntax.command "declare" "declare theorems (improper)" K.thy_script |
12968 | 217 |
(P.locale_target -- (P.and_list1 P.xthms1 >> flat) |
218 |
>> (Toplevel.theory o uncurry IsarThy.declare_theorems)); |
|
9589 | 219 |
|
5914 | 220 |
|
5832 | 221 |
(* name space entry path *) |
222 |
||
223 |
val globalP = |
|
6723 | 224 |
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
|
225 |
(Scan.succeed (Toplevel.theory PureThy.global_path)); |
5832 | 226 |
|
227 |
val localP = |
|
6723 | 228 |
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
|
229 |
(Scan.succeed (Toplevel.theory PureThy.local_path)); |
8723 | 230 |
|
231 |
val hideP = |
|
232 |
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
|
233 |
(P.name -- Scan.repeat1 P.xname >> (Toplevel.theory o IsarThy.hide_space)); |
5832 | 234 |
|
235 |
||
236 |
(* use ML text *) |
|
237 |
||
238 |
val useP = |
|
6723 | 239 |
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
|
240 |
(P.name >> (Toplevel.no_timing oo IsarCmd.use)); |
5832 | 241 |
|
242 |
val mlP = |
|
7616 | 243 |
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
|
244 |
(P.text >> IsarCmd.use_mltext true); |
7891 | 245 |
|
246 |
val ml_commandP = |
|
247 |
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
|
248 |
(P.text >> (Toplevel.no_timing oo IsarCmd.use_mltext false)); |
7616 | 249 |
|
250 |
val ml_setupP = |
|
251 |
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
|
252 |
(P.text >> IsarCmd.use_mltext_theory); |
5832 | 253 |
|
254 |
val setupP = |
|
7616 | 255 |
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
|
256 |
(P.text >> (Toplevel.theory o Context.use_setup)); |
5832 | 257 |
|
9197 | 258 |
val method_setupP = |
259 |
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
|
260 |
(((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
|
261 |
>> (Toplevel.theory o IsarThy.method_setup)); |
9197 | 262 |
|
5832 | 263 |
|
264 |
(* translation functions *) |
|
265 |
||
14642 | 266 |
val trfun = P.opt_keyword "advanced" -- P.text; |
267 |
||
5832 | 268 |
val parse_ast_translationP = |
6723 | 269 |
OuterSyntax.command "parse_ast_translation" "install parse ast translation functions" K.thy_decl |
14642 | 270 |
(trfun >> (Toplevel.theory o IsarThy.parse_ast_translation)); |
5832 | 271 |
|
272 |
val parse_translationP = |
|
6723 | 273 |
OuterSyntax.command "parse_translation" "install parse translation functions" K.thy_decl |
14642 | 274 |
(trfun >> (Toplevel.theory o IsarThy.parse_translation)); |
5832 | 275 |
|
276 |
val print_translationP = |
|
6723 | 277 |
OuterSyntax.command "print_translation" "install print translation functions" K.thy_decl |
14642 | 278 |
(trfun >> (Toplevel.theory o IsarThy.print_translation)); |
5832 | 279 |
|
280 |
val typed_print_translationP = |
|
6370 | 281 |
OuterSyntax.command "typed_print_translation" "install typed print translation functions" |
14642 | 282 |
K.thy_decl (trfun >> (Toplevel.theory o IsarThy.typed_print_translation)); |
5832 | 283 |
|
284 |
val print_ast_translationP = |
|
6723 | 285 |
OuterSyntax.command "print_ast_translation" "install print ast translation functions" K.thy_decl |
14642 | 286 |
(trfun >> (Toplevel.theory o IsarThy.print_ast_translation)); |
5832 | 287 |
|
288 |
val token_translationP = |
|
6723 | 289 |
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
|
290 |
(P.text >> (Toplevel.theory o IsarThy.token_translation)); |
5832 | 291 |
|
292 |
||
293 |
(* oracles *) |
|
294 |
||
295 |
val oracleP = |
|
6723 | 296 |
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
|
297 |
((P.name --| P.$$$ "=") -- P.text >> (Toplevel.theory o IsarThy.add_oracle)); |
5832 | 298 |
|
299 |
||
12061 | 300 |
(* locales *) |
301 |
||
12758 | 302 |
val locale_val = |
303 |
(P.locale_expr -- |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
304 |
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
|
305 |
Scan.repeat1 P.locale_element >> pair Locale.empty); |
12061 | 306 |
|
307 |
val localeP = |
|
308 |
OuterSyntax.command "locale" "define named proof context" K.thy_decl |
|
14642 | 309 |
((P.opt_keyword "open" >> not) -- P.name |
310 |
-- Scan.optional (P.$$$ "=" |-- P.!!! locale_val) (Locale.empty, []) |
|
13373 | 311 |
>> (Toplevel.theory o IsarThy.add_locale o (fn ((x, y), (z, w)) => (x, y, z, w)))); |
12061 | 312 |
|
313 |
||
5832 | 314 |
|
315 |
(** proof commands **) |
|
316 |
||
317 |
(* statements *) |
|
318 |
||
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
319 |
val statement = P.and_list1 (P.opt_thm_name ":" -- Scan.repeat1 P.propp); |
12956 | 320 |
val general_statement = |
12952 | 321 |
statement >> pair [] || Scan.repeat P.locale_element -- (P.$$$ "shows" |-- statement); |
5832 | 322 |
|
12242
282a92bc5655
multi_theorem: common statement header (covers *all* results);
wenzelm
parents:
12142
diff
changeset
|
323 |
fun gen_theorem k = |
282a92bc5655
multi_theorem: common statement header (covers *all* results);
wenzelm
parents:
12142
diff
changeset
|
324 |
OuterSyntax.command k ("state " ^ k) K.thy_goal |
13445 | 325 |
(P.locale_target -- Scan.optional (P.opt_thm_name ":" --| |
12956 | 326 |
Scan.ahead (P.locale_keyword || P.$$$ "shows")) ("", []) -- |
327 |
general_statement >> (fn ((x, y), (z, w)) => |
|
328 |
(Toplevel.print o Toplevel.theory_to_proof (IsarThy.smart_multi_theorem k x y z w)))); |
|
5832 | 329 |
|
12242
282a92bc5655
multi_theorem: common statement header (covers *all* results);
wenzelm
parents:
12142
diff
changeset
|
330 |
val theoremP = gen_theorem Drule.theoremK; |
282a92bc5655
multi_theorem: common statement header (covers *all* results);
wenzelm
parents:
12142
diff
changeset
|
331 |
val lemmaP = gen_theorem Drule.lemmaK; |
282a92bc5655
multi_theorem: common statement header (covers *all* results);
wenzelm
parents:
12142
diff
changeset
|
332 |
val corollaryP = gen_theorem Drule.corollaryK; |
5832 | 333 |
|
334 |
val showP = |
|
6723 | 335 |
OuterSyntax.command "show" "state local goal, solving current obligation" K.prf_goal |
12006 | 336 |
(statement >> ((Toplevel.print oo Toplevel.proof') o IsarThy.show)); |
5832 | 337 |
|
338 |
val haveP = |
|
6723 | 339 |
OuterSyntax.command "have" "state local goal" K.prf_goal |
12006 | 340 |
(statement >> ((Toplevel.print oo Toplevel.proof) o IsarThy.have)); |
5832 | 341 |
|
6501 | 342 |
val thusP = |
6723 | 343 |
OuterSyntax.command "thus" "abbreviates \"then show\"" K.prf_goal |
12006 | 344 |
(statement >> ((Toplevel.print oo Toplevel.proof') o IsarThy.thus)); |
6501 | 345 |
|
346 |
val henceP = |
|
6723 | 347 |
OuterSyntax.command "hence" "abbreviates \"then have\"" K.prf_goal |
12006 | 348 |
(statement >> ((Toplevel.print oo Toplevel.proof) o IsarThy.hence)); |
6501 | 349 |
|
5832 | 350 |
|
5914 | 351 |
(* facts *) |
5832 | 352 |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
353 |
val facts = P.and_list1 P.xthms1; |
9197 | 354 |
|
5832 | 355 |
val thenP = |
6723 | 356 |
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
|
357 |
(Scan.succeed (Toplevel.print o (Toplevel.proof IsarThy.chain))); |
5832 | 358 |
|
359 |
val fromP = |
|
6723 | 360 |
OuterSyntax.command "from" "forward chaining from given facts" K.prf_chain |
9197 | 361 |
(facts >> (Toplevel.print oo (Toplevel.proof o IsarThy.from_facts))); |
5914 | 362 |
|
6878 | 363 |
val withP = |
364 |
OuterSyntax.command "with" "forward chaining from given and current facts" K.prf_chain |
|
9197 | 365 |
(facts >> (Toplevel.print oo (Toplevel.proof o IsarThy.with_facts))); |
6878 | 366 |
|
6773 | 367 |
val noteP = |
6723 | 368 |
OuterSyntax.command "note" "define facts" K.prf_decl |
9197 | 369 |
(name_facts >> (Toplevel.print oo (Toplevel.proof o IsarThy.have_facts))); |
5832 | 370 |
|
12926 | 371 |
val usingP = |
372 |
OuterSyntax.command "using" "augment goal facts" K.prf_decl |
|
373 |
(facts >> (Toplevel.print oo (Toplevel.proof o IsarThy.using_facts))); |
|
374 |
||
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14223
diff
changeset
|
375 |
val instantiateP = |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14223
diff
changeset
|
376 |
OuterSyntax.command "instantiate" "instantiate locale" K.prf_decl |
14528
1457584110ac
Locale instantiation: label parameter optional, new attribute paramter.
ballarin
parents:
14508
diff
changeset
|
377 |
(P.opt_thm_name ":" -- P.xname |
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14223
diff
changeset
|
378 |
>> (Toplevel.print oo (Toplevel.proof o IsarThy.instantiate_locale))); |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14223
diff
changeset
|
379 |
|
5832 | 380 |
|
381 |
(* proof context *) |
|
382 |
||
11890 | 383 |
val fixP = |
14642 | 384 |
OuterSyntax.command "fix" "fix local variables (Skolem constants)" K.prf_asm |
385 |
(vars >> (Toplevel.print oo (Toplevel.proof o IsarThy.fix))); |
|
11890 | 386 |
|
5832 | 387 |
val assumeP = |
6869 | 388 |
OuterSyntax.command "assume" "assume propositions" K.prf_asm |
12142 | 389 |
(statement >> (Toplevel.print oo (Toplevel.proof o IsarThy.assume))); |
5832 | 390 |
|
6850 | 391 |
val presumeP = |
6869 | 392 |
OuterSyntax.command "presume" "assume propositions, to be established later" K.prf_asm |
12142 | 393 |
(statement >> (Toplevel.print oo (Toplevel.proof o IsarThy.presume))); |
6850 | 394 |
|
6953 | 395 |
val defP = |
396 |
OuterSyntax.command "def" "local definition" K.prf_asm |
|
10688 | 397 |
(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
|
398 |
>> (Toplevel.print oo (Toplevel.proof o IsarThy.local_def))); |
6953 | 399 |
|
11890 | 400 |
val obtainP = |
401 |
OuterSyntax.command "obtain" "generalized existence" |
|
402 |
K.prf_asm_goal |
|
403 |
(Scan.optional |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
404 |
(P.and_list1 (Scan.repeat1 P.name -- Scan.option (P.$$$ "::" |-- P.typ)) |
12968 | 405 |
--| P.$$$ "where") [] -- statement >> (Toplevel.print oo IsarThy.obtain)); |
5832 | 406 |
|
407 |
val letP = |
|
6723 | 408 |
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
|
409 |
(P.and_list1 (P.enum1 "and" P.term -- (P.$$$ "=" |-- P.term)) |
8615 | 410 |
>> (Toplevel.print oo (Toplevel.proof o IsarThy.let_bind))); |
5832 | 411 |
|
11793
5f0ab6f5c280
support impromptu terminology of cases parameters;
wenzelm
parents:
11742
diff
changeset
|
412 |
val case_spec = |
12267 | 413 |
(P.$$$ "(" |-- P.!!! (P.xname -- Scan.repeat1 P.uname --| P.$$$ ")") || |
414 |
P.xname >> rpair []) -- P.opt_attribs >> P.triple1; |
|
11793
5f0ab6f5c280
support impromptu terminology of cases parameters;
wenzelm
parents:
11742
diff
changeset
|
415 |
|
8370 | 416 |
val caseP = |
417 |
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
|
418 |
(case_spec >> (Toplevel.print oo (Toplevel.proof o IsarThy.invoke_case))); |
8370 | 419 |
|
5832 | 420 |
|
421 |
(* proof structure *) |
|
422 |
||
423 |
val beginP = |
|
9056 | 424 |
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
|
425 |
(Scan.succeed (Toplevel.print o (Toplevel.proof IsarThy.begin_block))); |
5832 | 426 |
|
6687 | 427 |
val endP = |
9056 | 428 |
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
|
429 |
(Scan.succeed (Toplevel.print o (Toplevel.proof IsarThy.end_block))); |
6687 | 430 |
|
5832 | 431 |
val nextP = |
6723 | 432 |
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
|
433 |
(Scan.succeed (Toplevel.print o (Toplevel.proof IsarThy.next_block))); |
5832 | 434 |
|
435 |
||
436 |
(* end proof *) |
|
437 |
||
6404 | 438 |
val qedP = |
6735 | 439 |
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
|
440 |
(Scan.option P.method >> IsarThy.qed); |
5832 | 441 |
|
6404 | 442 |
val terminal_proofP = |
6723 | 443 |
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
|
444 |
(P.method -- Scan.option P.method >> IsarThy.terminal_proof); |
6404 | 445 |
|
8966 | 446 |
val default_proofP = |
447 |
OuterSyntax.command ".." "default proof" K.qed |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
448 |
(Scan.succeed IsarThy.default_proof); |
8966 | 449 |
|
6404 | 450 |
val immediate_proofP = |
6723 | 451 |
OuterSyntax.command "." "immediate proof" K.qed |
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
452 |
(Scan.succeed IsarThy.immediate_proof); |
6404 | 453 |
|
8966 | 454 |
val done_proofP = |
455 |
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
|
456 |
(Scan.succeed IsarThy.done_proof); |
5832 | 457 |
|
6888
d0c68ebdabc5
skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents:
6886
diff
changeset
|
458 |
val skip_proofP = |
7172 | 459 |
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
|
460 |
(Scan.succeed IsarThy.skip_proof); |
6888
d0c68ebdabc5
skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents:
6886
diff
changeset
|
461 |
|
8210 | 462 |
val forget_proofP = |
8521 | 463 |
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
|
464 |
(Scan.succeed IsarThy.forget_proof); |
8210 | 465 |
|
5832 | 466 |
|
467 |
(* proof steps *) |
|
468 |
||
8165 | 469 |
val deferP = |
8681 | 470 |
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
|
471 |
(Scan.option P.nat >> (Toplevel.print oo (Toplevel.proof o IsarThy.defer))); |
8165 | 472 |
|
473 |
val preferP = |
|
8681 | 474 |
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
|
475 |
(P.nat >> (Toplevel.print oo (Toplevel.proof o IsarThy.prefer))); |
8165 | 476 |
|
6850 | 477 |
val applyP = |
8681 | 478 |
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
|
479 |
(P.method >> (Toplevel.print oo (Toplevel.proof o IsarThy.apply))); |
5832 | 480 |
|
8235 | 481 |
val apply_endP = |
8681 | 482 |
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
|
483 |
(P.method >> (Toplevel.print oo (Toplevel.proof o IsarThy.apply_end))); |
5832 | 484 |
|
6404 | 485 |
val proofP = |
6723 | 486 |
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
|
487 |
(Scan.option P.method >> (Toplevel.print oo (Toplevel.proof o IsarThy.proof))); |
5832 | 488 |
|
489 |
||
6773 | 490 |
(* calculational proof commands *) |
491 |
||
6878 | 492 |
val calc_args = |
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
493 |
Scan.option (P.$$$ "(" |-- P.!!! ((P.xthms1 --| P.$$$ ")"))); |
6878 | 494 |
|
6773 | 495 |
val alsoP = |
8562 | 496 |
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
|
497 |
(calc_args >> IsarThy.also); |
6773 | 498 |
|
499 |
val finallyP = |
|
8562 | 500 |
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
|
501 |
(calc_args >> IsarThy.finally); |
6773 | 502 |
|
8562 | 503 |
val moreoverP = |
504 |
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
|
505 |
(Scan.succeed IsarThy.moreover); |
8562 | 506 |
|
8588 | 507 |
val ultimatelyP = |
508 |
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
|
509 |
K.prf_chain (Scan.succeed IsarThy.ultimately); |
8588 | 510 |
|
6773 | 511 |
|
6742 | 512 |
(* proof navigation *) |
5944 | 513 |
|
5832 | 514 |
val backP = |
8235 | 515 |
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
|
516 |
(Scan.optional (P.$$$ "!" >> K true) false >> (Toplevel.print oo IsarCmd.back)); |
5832 | 517 |
|
518 |
||
6742 | 519 |
(* history *) |
520 |
||
521 |
val cannot_undoP = |
|
522 |
OuterSyntax.improper_command "cannot_undo" "report 'cannot undo' error message" K.control |
|
9010 | 523 |
(P.name >> (Toplevel.no_timing oo IsarCmd.cannot_undo)); |
6742 | 524 |
|
7733 | 525 |
val clear_undosP = |
526 |
OuterSyntax.improper_command "clear_undos" "clear theory-level undo information" K.control |
|
9010 | 527 |
(P.nat >> (Toplevel.no_timing oo IsarCmd.clear_undos_theory)); |
6742 | 528 |
|
529 |
val redoP = |
|
530 |
OuterSyntax.improper_command "redo" "redo last command" K.control |
|
9010 | 531 |
(Scan.succeed (Toplevel.no_timing o Toplevel.print o IsarCmd.redo)); |
6742 | 532 |
|
533 |
val undos_proofP = |
|
534 |
OuterSyntax.improper_command "undos_proof" "undo last proof commands" K.control |
|
9010 | 535 |
(P.nat >> ((Toplevel.no_timing o Toplevel.print) oo IsarCmd.undos_proof)); |
6742 | 536 |
|
537 |
val undoP = |
|
538 |
OuterSyntax.improper_command "undo" "undo last command" K.control |
|
9010 | 539 |
(Scan.succeed ((Toplevel.no_timing o Toplevel.print) o IsarCmd.undo)); |
6742 | 540 |
|
8500 | 541 |
val killP = |
542 |
OuterSyntax.improper_command "kill" "kill current history node" K.control |
|
9010 | 543 |
(Scan.succeed ((Toplevel.no_timing o Toplevel.print) o IsarCmd.kill)); |
8500 | 544 |
|
6742 | 545 |
|
5832 | 546 |
|
547 |
(** diagnostic commands (for interactive mode only) **) |
|
548 |
||
8464 | 549 |
val opt_modes = Scan.optional (P.$$$ "(" |-- P.!!! (Scan.repeat1 P.xname --| P.$$$ ")")) []; |
550 |
||
551 |
||
7124 | 552 |
val pretty_setmarginP = |
553 |
OuterSyntax.improper_command "pretty_setmargin" "change default margin for pretty printing" |
|
9010 | 554 |
K.diag (P.nat >> (Toplevel.no_timing oo IsarCmd.pretty_setmargin)); |
7124 | 555 |
|
5832 | 556 |
val print_commandsP = |
9221 | 557 |
OuterSyntax.improper_command "print_commands" "print outer syntax (global)" K.diag |
558 |
(Scan.succeed (Toplevel.no_timing o OuterSyntax.print_commands)); |
|
5832 | 559 |
|
7308 | 560 |
val print_contextP = |
561 |
OuterSyntax.improper_command "print_context" "print theory context name" K.diag |
|
9010 | 562 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_context)); |
7308 | 563 |
|
5832 | 564 |
val print_theoryP = |
6723 | 565 |
OuterSyntax.improper_command "print_theory" "print logical theory contents (verbose!)" K.diag |
9010 | 566 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_theory)); |
5832 | 567 |
|
568 |
val print_syntaxP = |
|
6723 | 569 |
OuterSyntax.improper_command "print_syntax" "print inner syntax of theory (verbose!)" K.diag |
9010 | 570 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_syntax)); |
5832 | 571 |
|
5881 | 572 |
val print_theoremsP = |
12061 | 573 |
OuterSyntax.improper_command "print_theorems" "print theorems of this theory" K.diag |
9010 | 574 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_theorems)); |
5881 | 575 |
|
12061 | 576 |
val print_localesP = |
577 |
OuterSyntax.improper_command "print_locales" "print locales of this theory" K.diag |
|
578 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_locales)); |
|
579 |
||
580 |
val print_localeP = |
|
581 |
OuterSyntax.improper_command "print_locale" "print named locale of this theory" K.diag |
|
12758 | 582 |
(locale_val >> (Toplevel.no_timing oo IsarCmd.print_locale)); |
12061 | 583 |
|
5832 | 584 |
val print_attributesP = |
12061 | 585 |
OuterSyntax.improper_command "print_attributes" "print attributes of this theory" K.diag |
9010 | 586 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_attributes)); |
5832 | 587 |
|
12383 | 588 |
val print_rulesP = |
589 |
OuterSyntax.improper_command "print_rules" "print intro/elim rules" K.diag |
|
590 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_rules)); |
|
591 |
||
11666 | 592 |
val print_induct_rulesP = |
593 |
OuterSyntax.improper_command "print_induct_rules" "print induction and cases rules" K.diag |
|
594 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_induct_rules)); |
|
595 |
||
9221 | 596 |
val print_trans_rulesP = |
11666 | 597 |
OuterSyntax.improper_command "print_trans_rules" "print transitivity rules" K.diag |
9221 | 598 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_trans_rules)); |
599 |
||
5832 | 600 |
val print_methodsP = |
12061 | 601 |
OuterSyntax.improper_command "print_methods" "print methods of this theory" K.diag |
9010 | 602 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_methods)); |
5832 | 603 |
|
9221 | 604 |
val print_antiquotationsP = |
605 |
OuterSyntax.improper_command "print_antiquotations" "print antiquotations (global)" K.diag |
|
606 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_antiquotations)); |
|
607 |
||
7616 | 608 |
val thms_containingP = |
13275 | 609 |
OuterSyntax.improper_command "thms_containing" |
610 |
"print facts containing certain constants or variables" |
|
13284 | 611 |
K.diag (Scan.option (P.$$$ "(" |-- P.!!! (P.nat --| P.$$$ ")")) -- |
612 |
Scan.repeat P.term >> (Toplevel.no_timing oo IsarCmd.print_thms_containing)); |
|
7616 | 613 |
|
9454 | 614 |
val thm_depsP = |
615 |
OuterSyntax.improper_command "thm_deps" "visualize theorem dependencies" |
|
616 |
K.diag (P.xthms1 >> (Toplevel.no_timing oo IsarCmd.thm_deps)); |
|
617 |
||
5832 | 618 |
val print_bindsP = |
6723 | 619 |
OuterSyntax.improper_command "print_binds" "print term bindings of proof context" K.diag |
9010 | 620 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_binds)); |
5832 | 621 |
|
622 |
val print_lthmsP = |
|
8370 | 623 |
OuterSyntax.improper_command "print_facts" "print facts of proof context" K.diag |
9010 | 624 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_lthms)); |
5832 | 625 |
|
8370 | 626 |
val print_casesP = |
627 |
OuterSyntax.improper_command "print_cases" "print cases of proof context" K.diag |
|
9010 | 628 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_cases)); |
8370 | 629 |
|
13802 | 630 |
val print_introsP = |
631 |
OuterSyntax.improper_command "print_intros" "print matching introduction rules" K.diag |
|
632 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_intros)); |
|
633 |
||
5896 | 634 |
val print_thmsP = |
8464 | 635 |
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
|
636 |
(opt_modes -- P.xthms1 >> (Toplevel.no_timing oo IsarCmd.print_thms)); |
5832 | 637 |
|
11524
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11101
diff
changeset
|
638 |
val print_prfsP = |
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11101
diff
changeset
|
639 |
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
|
640 |
(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
|
641 |
|
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11101
diff
changeset
|
642 |
val print_full_prfsP = |
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11101
diff
changeset
|
643 |
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
|
644 |
(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
|
645 |
|
5832 | 646 |
val print_propP = |
6723 | 647 |
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
|
648 |
(opt_modes -- P.term >> (Toplevel.no_timing oo IsarCmd.print_prop)); |
5832 | 649 |
|
650 |
val print_termP = |
|
6723 | 651 |
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
|
652 |
(opt_modes -- P.term >> (Toplevel.no_timing oo IsarCmd.print_term)); |
5832 | 653 |
|
654 |
val print_typeP = |
|
6723 | 655 |
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
|
656 |
(opt_modes -- P.typ >> (Toplevel.no_timing oo IsarCmd.print_type)); |
5832 | 657 |
|
658 |
||
659 |
||
660 |
(** system commands (for interactive mode only) **) |
|
661 |
||
662 |
val cdP = |
|
8650 | 663 |
OuterSyntax.improper_command "cd" "change current working directory" K.diag |
9010 | 664 |
(P.name >> (Toplevel.no_timing oo IsarCmd.cd)); |
5832 | 665 |
|
666 |
val pwdP = |
|
6723 | 667 |
OuterSyntax.improper_command "pwd" "print current working directory" K.diag |
9010 | 668 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.pwd)); |
5832 | 669 |
|
670 |
val use_thyP = |
|
6723 | 671 |
OuterSyntax.improper_command "use_thy" "use theory file" K.diag |
9010 | 672 |
(P.name >> (Toplevel.no_timing oo IsarCmd.use_thy)); |
5832 | 673 |
|
6694 | 674 |
val use_thy_onlyP = |
7102 | 675 |
OuterSyntax.improper_command "use_thy_only" "use theory file only, ignoring associated ML" |
9010 | 676 |
K.diag (P.name >> (Toplevel.no_timing oo IsarCmd.use_thy_only)); |
6694 | 677 |
|
6196 | 678 |
val update_thyP = |
6723 | 679 |
OuterSyntax.improper_command "update_thy" "update theory file" K.diag |
9010 | 680 |
(P.name >> (Toplevel.no_timing oo IsarCmd.update_thy)); |
5832 | 681 |
|
7102 | 682 |
val update_thy_onlyP = |
683 |
OuterSyntax.improper_command "update_thy_only" "update theory file, ignoring associated ML" |
|
9010 | 684 |
K.diag (P.name >> (Toplevel.no_timing oo IsarCmd.update_thy_only)); |
7102 | 685 |
|
686 |
val touch_thyP = |
|
687 |
OuterSyntax.improper_command "touch_thy" "outdate theory, including descendants" K.diag |
|
9010 | 688 |
(P.name >> (Toplevel.no_timing oo IsarCmd.touch_thy)); |
7102 | 689 |
|
690 |
val touch_all_thysP = |
|
691 |
OuterSyntax.improper_command "touch_all_thys" "outdate all non-finished theories" K.diag |
|
9010 | 692 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.touch_all_thys)); |
7102 | 693 |
|
7908 | 694 |
val touch_child_thysP = |
695 |
OuterSyntax.improper_command "touch_child_thys" "outdate child theories" K.diag |
|
9010 | 696 |
(P.name >> (Toplevel.no_timing oo IsarCmd.touch_child_thys)); |
7908 | 697 |
|
7102 | 698 |
val remove_thyP = |
699 |
OuterSyntax.improper_command "remove_thy" "remove theory from loader database" K.diag |
|
9010 | 700 |
(P.name >> (Toplevel.no_timing oo IsarCmd.remove_thy)); |
7102 | 701 |
|
7931 | 702 |
val kill_thyP = |
703 |
OuterSyntax.improper_command "kill_thy" "kill theory -- try to remove from loader database" |
|
9010 | 704 |
K.diag (P.name >> (Toplevel.no_timing oo IsarCmd.kill_thy)); |
7931 | 705 |
|
14934 | 706 |
val display_draftsP = |
707 |
OuterSyntax.improper_command "display_drafts" "display raw source files with symbols" |
|
708 |
K.diag (Scan.repeat1 P.name >> (Toplevel.no_timing oo IsarCmd.display_drafts)); |
|
709 |
||
710 |
val print_draftsP = |
|
711 |
OuterSyntax.improper_command "print_drafts" "print raw source files with symbols" |
|
712 |
K.diag (Scan.repeat1 P.name >> (Toplevel.no_timing oo IsarCmd.print_drafts)); |
|
713 |
||
9731 | 714 |
val opt_limits = |
715 |
Scan.option P.nat -- Scan.option (P.$$$ "," |-- P.!!! P.nat); |
|
716 |
||
5832 | 717 |
val prP = |
8886 | 718 |
OuterSyntax.improper_command "pr" "print current proof state (if present)" K.diag |
9731 | 719 |
(opt_modes -- opt_limits >> (Toplevel.no_timing oo IsarCmd.pr)); |
7199 | 720 |
|
7222 | 721 |
val disable_prP = |
722 |
OuterSyntax.improper_command "disable_pr" "disable printing of toplevel state" K.diag |
|
9010 | 723 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.disable_pr)); |
5832 | 724 |
|
7222 | 725 |
val enable_prP = |
726 |
OuterSyntax.improper_command "enable_pr" "enable printing of toplevel state" K.diag |
|
9010 | 727 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.enable_pr)); |
7222 | 728 |
|
5832 | 729 |
val commitP = |
6723 | 730 |
OuterSyntax.improper_command "commit" "commit current session to ML database" K.diag |
9010 | 731 |
(P.opt_unit >> (Toplevel.no_timing oo K IsarCmd.use_commit)); |
5832 | 732 |
|
733 |
val quitP = |
|
6723 | 734 |
OuterSyntax.improper_command "quit" "quit Isabelle" K.control |
9010 | 735 |
(P.opt_unit >> (Toplevel.no_timing oo K IsarCmd.quit)); |
5832 | 736 |
|
737 |
val exitP = |
|
6723 | 738 |
OuterSyntax.improper_command "exit" "exit Isar loop" K.control |
9010 | 739 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.exit)); |
5832 | 740 |
|
7102 | 741 |
val init_toplevelP = |
742 |
OuterSyntax.improper_command "init_toplevel" "restart Isar toplevel loop" K.control |
|
9010 | 743 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.init_toplevel)); |
5991 | 744 |
|
7462 | 745 |
val welcomeP = |
8678 | 746 |
OuterSyntax.improper_command "welcome" "print welcome message" K.diag |
9010 | 747 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.welcome)); |
7462 | 748 |
|
5832 | 749 |
|
750 |
||
751 |
(** the Pure outer syntax **) |
|
752 |
||
753 |
(*keep keywords consistent with the parsers, including those in |
|
754 |
outer_parse.ML, otherwise be prepared for unexpected errors*) |
|
755 |
||
756 |
val keywords = |
|
7415 | 757 |
["!", "!!", "%", "%%", "(", ")", "+", ",", "--", ":", "::", ";", "<", |
14642 | 758 |
"<=", "=", "==", "=>", "?", "[", "]", "advanced", "and", "assumes", |
759 |
"binder", "concl", "defines", "files", "fixes", "in", "includes", |
|
760 |
"infix", "infixl", "infixr", "is", "notes", "open", "output", |
|
761 |
"overloaded", "shows", "structure", "where", "|", "\\<equiv>", |
|
13373 | 762 |
"\\<leftharpoondown>", "\\<rightharpoonup>", |
763 |
"\\<rightleftharpoons>", "\\<subseteq>"]; |
|
5832 | 764 |
|
765 |
val parsers = [ |
|
766 |
(*theory structure*) |
|
8500 | 767 |
theoryP, end_excursionP, contextP, |
7775 | 768 |
(*markup commands*) |
7733 | 769 |
headerP, chapterP, sectionP, subsectionP, subsubsectionP, textP, |
7862 | 770 |
text_rawP, sectP, subsectP, subsubsectP, txtP, txt_rawP, |
5832 | 771 |
(*theory sections*) |
7172 | 772 |
classesP, classrelP, defaultsortP, typedeclP, typeabbrP, nontermP, |
14223
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
773 |
aritiesP, judgmentP, constsP, finalconstsP, syntaxP, translationsP, |
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
774 |
axiomsP, defsP, constdefsP, theoremsP, lemmasP, declareP, globalP, |
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
775 |
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
|
776 |
method_setupP, parse_ast_translationP, parse_translationP, |
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
777 |
print_translationP, typed_print_translationP, |
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
778 |
print_ast_translationP, token_translationP, oracleP, localeP, |
5832 | 779 |
(*proof commands*) |
11890 | 780 |
theoremP, lemmaP, corollaryP, showP, haveP, thusP, henceP, fixP, |
781 |
assumeP, presumeP, defP, obtainP, letP, caseP, thenP, fromP, withP, |
|
12926 | 782 |
noteP, usingP, beginP, endP, nextP, qedP, terminal_proofP, |
783 |
default_proofP, immediate_proofP, done_proofP, skip_proofP, |
|
784 |
forget_proofP, deferP, preferP, applyP, apply_endP, proofP, alsoP, |
|
785 |
finallyP, moreoverP, ultimatelyP, backP, cannot_undoP, clear_undosP, |
|
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14223
diff
changeset
|
786 |
redoP, undos_proofP, undoP, killP, instantiateP, |
5832 | 787 |
(*diagnostic commands*) |
7308 | 788 |
pretty_setmarginP, print_commandsP, print_contextP, print_theoryP, |
12061 | 789 |
print_syntaxP, print_theoremsP, print_localesP, print_localeP, |
12383 | 790 |
print_attributesP, print_rulesP, print_induct_rulesP, |
791 |
print_trans_rulesP, print_methodsP, print_antiquotationsP, |
|
792 |
thms_containingP, thm_depsP, print_bindsP, print_lthmsP, |
|
13802 | 793 |
print_casesP, print_introsP, print_thmsP, print_prfsP, print_full_prfsP, |
12383 | 794 |
print_propP, print_termP, print_typeP, |
5832 | 795 |
(*system commands*) |
7102 | 796 |
cdP, pwdP, use_thyP, use_thy_onlyP, update_thyP, update_thy_onlyP, |
7931 | 797 |
touch_thyP, touch_all_thysP, touch_child_thysP, remove_thyP, |
14934 | 798 |
kill_thyP, display_draftsP, print_draftsP, prP, disable_prP, |
799 |
enable_prP, commitP, quitP, exitP, init_toplevelP, welcomeP]; |
|
5832 | 800 |
|
801 |
end; |
|
802 |
||
803 |
||
6196 | 804 |
(*install the Pure outer syntax*) |
5832 | 805 |
OuterSyntax.add_keywords IsarSyn.keywords; |
806 |
OuterSyntax.add_parsers IsarSyn.parsers; |