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