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