author | wenzelm |
Thu, 01 Sep 2005 15:58:11 +0200 | |
changeset 17219 | 515badbfc4d6 |
parent 17142 | 76a5a2cc3171 |
child 17228 | 19b460b39dad |
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 |
||
16038 | 8 |
signature ISAR_SYN = sig end; |
5832 | 9 |
|
10 |
structure IsarSyn: ISAR_SYN = |
|
11 |
struct |
|
12 |
||
17068 | 13 |
structure P = OuterParse and K = OuterKeyword; |
5832 | 14 |
|
15 |
||
16 |
(** init and exit **) |
|
17 |
||
18 |
val theoryP = |
|
17068 | 19 |
OuterSyntax.command "theory" "begin theory" (K.tag_theory K.thy_begin) |
9129 | 20 |
(ThyHeader.args >> (Toplevel.print oo IsarThy.theory)); |
5832 | 21 |
|
6687 | 22 |
val end_excursionP = |
17068 | 23 |
OuterSyntax.command "end" "end current excursion" (K.tag_theory K.thy_end) |
6687 | 24 |
(Scan.succeed (Toplevel.print o Toplevel.exit)); |
25 |
||
6245 | 26 |
val contextP = |
17068 | 27 |
OuterSyntax.improper_command "context" "switch theory context" (K.tag_theory K.thy_switch) |
6723 | 28 |
(P.name >> (Toplevel.print oo IsarThy.context)); |
6245 | 29 |
|
5832 | 30 |
|
31 |
||
7749 | 32 |
(** markup commands **) |
5832 | 33 |
|
9129 | 34 |
val headerP = OuterSyntax.markup_command IsarOutput.Markup "header" "theory header" K.diag |
12940 | 35 |
(P.position P.text >> IsarCmd.add_header); |
6353 | 36 |
|
9129 | 37 |
val chapterP = OuterSyntax.markup_command IsarOutput.Markup "chapter" "chapter heading" |
12940 | 38 |
K.thy_heading (P.position P.text >> IsarCmd.add_chapter); |
5958 | 39 |
|
9129 | 40 |
val sectionP = OuterSyntax.markup_command IsarOutput.Markup "section" "section heading" |
12940 | 41 |
K.thy_heading (P.position P.text >> IsarCmd.add_section); |
5958 | 42 |
|
9129 | 43 |
val subsectionP = OuterSyntax.markup_command IsarOutput.Markup "subsection" "subsection heading" |
12940 | 44 |
K.thy_heading (P.position P.text >> IsarCmd.add_subsection); |
5958 | 45 |
|
7749 | 46 |
val subsubsectionP = |
9129 | 47 |
OuterSyntax.markup_command IsarOutput.Markup "subsubsection" "subsubsection heading" |
12940 | 48 |
K.thy_heading (P.position P.text >> IsarCmd.add_subsubsection); |
5832 | 49 |
|
9129 | 50 |
val textP = OuterSyntax.markup_command IsarOutput.MarkupEnv "text" "formal comment (theory)" |
12940 | 51 |
K.thy_decl (P.position P.text >> IsarCmd.add_text); |
7172 | 52 |
|
9129 | 53 |
val text_rawP = OuterSyntax.markup_command IsarOutput.Verbatim "text_raw" |
54 |
"raw document preparation text" K.thy_decl |
|
12940 | 55 |
(P.position P.text >> IsarCmd.add_text_raw); |
7172 | 56 |
|
9552 | 57 |
val sectP = OuterSyntax.markup_command IsarOutput.Markup "sect" "formal comment (proof)" |
17068 | 58 |
(K.tag_proof K.prf_heading) (P.position P.text >> IsarCmd.add_sect); |
7172 | 59 |
|
9129 | 60 |
val subsectP = OuterSyntax.markup_command IsarOutput.Markup "subsect" "formal comment (proof)" |
17068 | 61 |
(K.tag_proof K.prf_heading) (P.position P.text >> IsarCmd.add_subsect); |
7172 | 62 |
|
9129 | 63 |
val subsubsectP = OuterSyntax.markup_command IsarOutput.Markup "subsubsect" |
17068 | 64 |
"formal comment (proof)" (K.tag_proof K.prf_heading) |
12940 | 65 |
(P.position P.text >> IsarCmd.add_subsubsect); |
7172 | 66 |
|
9129 | 67 |
val txtP = OuterSyntax.markup_command IsarOutput.MarkupEnv "txt" "formal comment (proof)" |
17068 | 68 |
(K.tag_proof K.prf_decl) (P.position P.text >> IsarCmd.add_txt); |
7172 | 69 |
|
9129 | 70 |
val txt_rawP = OuterSyntax.markup_command IsarOutput.Verbatim "txt_raw" |
17068 | 71 |
"raw document preparation text (proof)" (K.tag_proof K.prf_decl) |
12940 | 72 |
(P.position P.text >> IsarCmd.add_txt_raw); |
7775 | 73 |
|
5832 | 74 |
|
6886 | 75 |
|
76 |
(** theory sections **) |
|
77 |
||
5832 | 78 |
(* classes and sorts *) |
79 |
||
80 |
val classesP = |
|
6723 | 81 |
OuterSyntax.command "classes" "declare type classes" K.thy_decl |
11101
014e7b5c77ba
support \<subseteq> syntax in classes/classrel/axclass/instance;
wenzelm
parents:
11017
diff
changeset
|
82 |
(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
|
83 |
P.!!! (P.list1 P.xname)) []) >> (Toplevel.theory o Theory.add_classes)); |
5832 | 84 |
|
85 |
val classrelP = |
|
6723 | 86 |
OuterSyntax.command "classrel" "state inclusion of type classes (axiomatic!)" K.thy_decl |
14779 | 87 |
(P.and_list1 (P.xname -- ((P.$$$ "\\<subseteq>" || P.$$$ "<") |-- P.!!! P.xname)) |
88 |
>> (Toplevel.theory o Theory.add_classrel)); |
|
5832 | 89 |
|
90 |
val defaultsortP = |
|
6723 | 91 |
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
|
92 |
(P.sort >> (Toplevel.theory o Theory.add_defsort)); |
5832 | 93 |
|
94 |
||
95 |
(* types *) |
|
96 |
||
97 |
val typedeclP = |
|
12624 | 98 |
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
|
99 |
(P.type_args -- P.name -- P.opt_infix >> (fn ((args, a), mx) => |
16447 | 100 |
Toplevel.theory (Theory.add_typedecls [(a, args, mx)]))); |
5832 | 101 |
|
102 |
val typeabbrP = |
|
6723 | 103 |
OuterSyntax.command "types" "declare type abbreviations" K.thy_decl |
6727 | 104 |
(Scan.repeat1 |
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
105 |
(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
|
106 |
>> (Toplevel.theory o Theory.add_tyabbrs o |
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
107 |
map (fn ((args, a), (T, mx)) => (a, args, T, mx)))); |
5832 | 108 |
|
109 |
val nontermP = |
|
6370 | 110 |
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
|
111 |
K.thy_decl (Scan.repeat1 P.name >> (Toplevel.theory o Theory.add_nonterminals)); |
5832 | 112 |
|
113 |
val aritiesP = |
|
6723 | 114 |
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
|
115 |
(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
|
116 |
>> (Toplevel.theory o Theory.add_arities)); |
5832 | 117 |
|
118 |
||
119 |
(* consts and syntax *) |
|
120 |
||
8227 | 121 |
val judgmentP = |
122 |
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
|
123 |
(P.const >> (Toplevel.theory o ObjectLogic.add_judgment)); |
8227 | 124 |
|
5832 | 125 |
val constsP = |
6723 | 126 |
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
|
127 |
(Scan.repeat1 P.const >> (Toplevel.theory o Theory.add_consts)); |
5832 | 128 |
|
14642 | 129 |
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
|
130 |
|
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
131 |
val finalconstsP = |
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
132 |
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
|
133 |
(opt_overloaded -- Scan.repeat1 P.term >> (uncurry (Toplevel.theory oo Theory.add_finals))); |
9731 | 134 |
|
12142 | 135 |
val mode_spec = |
9731 | 136 |
(P.$$$ "output" >> K ("", false)) || P.name -- Scan.optional (P.$$$ "output" >> K false) true; |
137 |
||
14900 | 138 |
val opt_mode = |
139 |
Scan.optional (P.$$$ "(" |-- P.!!! (mode_spec --| P.$$$ ")")) Syntax.default_mode; |
|
5832 | 140 |
|
141 |
val syntaxP = |
|
6723 | 142 |
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
|
143 |
(opt_mode -- Scan.repeat1 P.const >> (Toplevel.theory o uncurry Theory.add_modesyntax)); |
5832 | 144 |
|
15748 | 145 |
val no_syntaxP = |
146 |
OuterSyntax.command "no_syntax" "delete syntax declarations" K.thy_decl |
|
147 |
(opt_mode -- Scan.repeat1 P.const >> (Toplevel.theory o uncurry Theory.del_modesyntax)); |
|
148 |
||
5832 | 149 |
|
150 |
(* translations *) |
|
151 |
||
152 |
val trans_pat = |
|
6723 | 153 |
Scan.optional (P.$$$ "(" |-- P.!!! (P.xname --| P.$$$ ")")) "logic" -- P.string; |
5832 | 154 |
|
155 |
fun trans_arrow toks = |
|
10688 | 156 |
((P.$$$ "\\<rightharpoonup>" || P.$$$ "=>") >> K Syntax.ParseRule || |
157 |
(P.$$$ "\\<leftharpoondown>" || P.$$$ "<=") >> K Syntax.PrintRule || |
|
158 |
(P.$$$ "\\<rightleftharpoons>" || P.$$$ "==") >> K Syntax.ParsePrintRule) toks; |
|
5832 | 159 |
|
160 |
val trans_line = |
|
6723 | 161 |
trans_pat -- P.!!! (trans_arrow -- trans_pat) |
5832 | 162 |
>> (fn (left, (arr, right)) => arr (left, right)); |
163 |
||
164 |
val translationsP = |
|
6723 | 165 |
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
|
166 |
(Scan.repeat1 trans_line >> (Toplevel.theory o Theory.add_trrules)); |
5832 | 167 |
|
168 |
||
169 |
(* axioms and definitions *) |
|
170 |
||
171 |
val axiomsP = |
|
6723 | 172 |
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
|
173 |
(Scan.repeat1 P.spec_name >> (Toplevel.theory o IsarThy.add_axioms)); |
5832 | 174 |
|
175 |
val defsP = |
|
6723 | 176 |
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
|
177 |
(opt_overloaded -- Scan.repeat1 P.spec_name >> (Toplevel.theory o IsarThy.add_defs)); |
6370 | 178 |
|
14642 | 179 |
|
180 |
(* constant definitions *) |
|
181 |
||
182 |
val vars = P.and_list1 (Scan.repeat1 P.name -- Scan.option (P.$$$ "::" |-- P.typ)); |
|
183 |
||
184 |
val structs = |
|
185 |
Scan.optional ((P.$$$ "(" -- P.$$$ "structure") |-- P.!!! (vars --| P.$$$ ")")) []; |
|
186 |
||
187 |
val constdecl = |
|
15531 | 188 |
(P.name --| P.$$$ "where") >> (fn x => (x, NONE, Syntax.NoSyn)) || |
189 |
P.name -- (P.$$$ "::" |-- P.!!! P.typ >> SOME) -- P.opt_mixfix' >> P.triple1 || |
|
190 |
P.name -- (P.mixfix' >> pair NONE) >> P.triple2; |
|
14642 | 191 |
|
192 |
val constdef = Scan.option constdecl -- (P.opt_thm_name ":" -- P.prop); |
|
193 |
||
6370 | 194 |
val constdefsP = |
14642 | 195 |
OuterSyntax.command "constdefs" "standard constant definitions" K.thy_decl |
196 |
(structs -- Scan.repeat1 constdef >> (Toplevel.theory o Constdefs.add_constdefs)); |
|
5832 | 197 |
|
198 |
||
5914 | 199 |
(* theorems *) |
200 |
||
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
201 |
val name_facts = P.and_list1 (P.opt_thm_name "=" -- P.xthms1); |
5914 | 202 |
|
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16604
diff
changeset
|
203 |
fun theorems kind = P.opt_locale_target -- name_facts |
12712 | 204 |
>> uncurry (#1 ooo IsarThy.smart_theorems kind); |
205 |
||
5914 | 206 |
val theoremsP = |
6723 | 207 |
OuterSyntax.command "theorems" "define theorems" K.thy_decl |
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
208 |
(theorems Drule.theoremK >> Toplevel.theory_context); |
5914 | 209 |
|
210 |
val lemmasP = |
|
6723 | 211 |
OuterSyntax.command "lemmas" "define lemmas" K.thy_decl |
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
212 |
(theorems Drule.lemmaK >> Toplevel.theory_context); |
5914 | 213 |
|
9589 | 214 |
val declareP = |
9776 | 215 |
OuterSyntax.command "declare" "declare theorems (improper)" K.thy_script |
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16604
diff
changeset
|
216 |
(P.opt_locale_target -- (P.and_list1 P.xthms1 >> List.concat) |
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
217 |
>> (Toplevel.theory_context o uncurry IsarThy.declare_theorems)); |
9589 | 218 |
|
5914 | 219 |
|
5832 | 220 |
(* name space entry path *) |
221 |
||
222 |
val globalP = |
|
6723 | 223 |
OuterSyntax.command "global" "disable prefixing of theory name" K.thy_decl |
16447 | 224 |
(Scan.succeed (Toplevel.theory Sign.root_path)); |
5832 | 225 |
|
226 |
val localP = |
|
6723 | 227 |
OuterSyntax.command "local" "enable prefixing of theory name" K.thy_decl |
16447 | 228 |
(Scan.succeed (Toplevel.theory Sign.local_path)); |
8723 | 229 |
|
230 |
val hideP = |
|
231 |
OuterSyntax.command "hide" "hide names from given name space" K.thy_decl |
|
16371
d30742f22121
renamed IsarThy.hide_space to IsarThy.hide_names;
wenzelm
parents:
16264
diff
changeset
|
232 |
(P.name -- Scan.repeat1 P.xname >> (Toplevel.theory o IsarThy.hide_names)); |
5832 | 233 |
|
234 |
||
235 |
(* use ML text *) |
|
236 |
||
237 |
val useP = |
|
17068 | 238 |
OuterSyntax.command "use" "eval ML text from file" (K.tag_ml K.diag) |
14950 | 239 |
(P.path >> (Toplevel.no_timing oo IsarCmd.use)); |
5832 | 240 |
|
241 |
val mlP = |
|
17068 | 242 |
OuterSyntax.command "ML" "eval ML text (diagnostic)" (K.tag_ml K.diag) |
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
243 |
(P.text >> IsarCmd.use_mltext true); |
7891 | 244 |
|
245 |
val ml_commandP = |
|
17068 | 246 |
OuterSyntax.command "ML_command" "eval ML text" (K.tag_ml K.diag) |
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
247 |
(P.text >> (Toplevel.no_timing oo IsarCmd.use_mltext false)); |
7616 | 248 |
|
249 |
val ml_setupP = |
|
17068 | 250 |
OuterSyntax.command "ML_setup" "eval ML text (may change theory)" (K.tag_ml K.thy_decl) |
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
251 |
(P.text >> IsarCmd.use_mltext_theory); |
5832 | 252 |
|
253 |
val setupP = |
|
17068 | 254 |
OuterSyntax.command "setup" "apply ML theory setup" (K.tag_ml K.thy_decl) |
15801 | 255 |
(P.text >> (Toplevel.theory o IsarThy.generic_setup)); |
5832 | 256 |
|
9197 | 257 |
val method_setupP = |
17068 | 258 |
OuterSyntax.command "method_setup" "define proof method in ML" (K.tag_ml K.thy_decl) |
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
259 |
(((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
|
260 |
>> (Toplevel.theory o IsarThy.method_setup)); |
9197 | 261 |
|
5832 | 262 |
|
263 |
(* translation functions *) |
|
264 |
||
14642 | 265 |
val trfun = P.opt_keyword "advanced" -- P.text; |
266 |
||
5832 | 267 |
val parse_ast_translationP = |
17068 | 268 |
OuterSyntax.command "parse_ast_translation" "install parse ast translation functions" |
269 |
(K.tag_ml K.thy_decl) |
|
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
270 |
(trfun >> (Toplevel.theory o Sign.parse_ast_translation)); |
5832 | 271 |
|
272 |
val parse_translationP = |
|
17068 | 273 |
OuterSyntax.command "parse_translation" "install parse translation functions" |
274 |
(K.tag_ml K.thy_decl) |
|
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
275 |
(trfun >> (Toplevel.theory o Sign.parse_translation)); |
5832 | 276 |
|
277 |
val print_translationP = |
|
17068 | 278 |
OuterSyntax.command "print_translation" "install print translation functions" |
279 |
(K.tag_ml K.thy_decl) |
|
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
280 |
(trfun >> (Toplevel.theory o Sign.print_translation)); |
5832 | 281 |
|
282 |
val typed_print_translationP = |
|
6370 | 283 |
OuterSyntax.command "typed_print_translation" "install typed print translation functions" |
17068 | 284 |
(K.tag_ml K.thy_decl) |
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
285 |
(trfun >> (Toplevel.theory o Sign.typed_print_translation)); |
5832 | 286 |
|
287 |
val print_ast_translationP = |
|
17068 | 288 |
OuterSyntax.command "print_ast_translation" "install print ast translation functions" |
289 |
(K.tag_ml K.thy_decl) |
|
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
290 |
(trfun >> (Toplevel.theory o Sign.print_ast_translation)); |
5832 | 291 |
|
292 |
val token_translationP = |
|
17068 | 293 |
OuterSyntax.command "token_translation" "install token translation functions" |
294 |
(K.tag_ml K.thy_decl) |
|
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
295 |
(P.text >> (Toplevel.theory o Sign.token_translation)); |
5832 | 296 |
|
297 |
||
298 |
(* oracles *) |
|
299 |
||
300 |
val oracleP = |
|
17068 | 301 |
OuterSyntax.command "oracle" "declare oracle" (K.tag_ml K.thy_decl) |
16849 | 302 |
(P.name -- (P.$$$ "(" |-- P.text --| P.$$$ ")" --| P.$$$ "=") |
303 |
-- P.text >> (Toplevel.theory o IsarThy.add_oracle o P.triple1)); |
|
5832 | 304 |
|
305 |
||
12061 | 306 |
(* locales *) |
307 |
||
12758 | 308 |
val locale_val = |
309 |
(P.locale_expr -- |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
310 |
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
|
311 |
Scan.repeat1 P.locale_element >> pair Locale.empty); |
12061 | 312 |
|
313 |
val localeP = |
|
314 |
OuterSyntax.command "locale" "define named proof context" K.thy_decl |
|
14642 | 315 |
((P.opt_keyword "open" >> not) -- P.name |
316 |
-- Scan.optional (P.$$$ "=" |-- P.!!! locale_val) (Locale.empty, []) |
|
17142
76a5a2cc3171
add_locale_context(_i) now exporting elements (still some refinements to be done)
haftmann
parents:
17139
diff
changeset
|
317 |
>> (Toplevel.theory_context o (fn ((x, y), (z, w)) => Locale.add_locale_context x y z w #> (fn ((_, ctxt), thy) => (thy, ctxt))))); |
12061 | 318 |
|
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16604
diff
changeset
|
319 |
val opt_inst = |
15703 | 320 |
Scan.optional (P.$$$ "[" |-- Scan.repeat1 (P.maybe P.term) --| P.$$$ "]") []; |
15596 | 321 |
|
15598
4ab52355bb53
Registrations of global locale interpretations: improved, better naming.
ballarin
parents:
15596
diff
changeset
|
322 |
val interpretationP = |
4ab52355bb53
Registrations of global locale interpretations: improved, better naming.
ballarin
parents:
15596
diff
changeset
|
323 |
OuterSyntax.command "interpretation" |
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16604
diff
changeset
|
324 |
"prove and register interpretation of locale expression in theory or locale" K.thy_goal |
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16604
diff
changeset
|
325 |
( |
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16604
diff
changeset
|
326 |
(* with target: in locale *) |
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16604
diff
changeset
|
327 |
P.xname --| (P.$$$ "\\<subseteq>" || P.$$$ "<") -- |
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16604
diff
changeset
|
328 |
P.locale_expr >> |
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16604
diff
changeset
|
329 |
((Toplevel.print oo Toplevel.theory_to_proof) o IsarThy.register_in_locale) |
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16604
diff
changeset
|
330 |
|| |
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16604
diff
changeset
|
331 |
(* without target: in theory *) |
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16604
diff
changeset
|
332 |
P.opt_thm_name ":" -- P.locale_expr -- P.!!! opt_inst >> |
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16604
diff
changeset
|
333 |
((Toplevel.print oo Toplevel.theory_to_proof) o IsarThy.register_globally) |
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16604
diff
changeset
|
334 |
); |
12061 | 335 |
|
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15598
diff
changeset
|
336 |
val interpretP = |
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15598
diff
changeset
|
337 |
OuterSyntax.command "interpret" |
17068 | 338 |
"prove and register interpretation of locale expression in proof context" |
339 |
(K.tag_proof K.prf_goal) |
|
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16604
diff
changeset
|
340 |
(P.opt_thm_name ":" -- P.locale_expr -- P.!!! opt_inst |
15703 | 341 |
>> ((Toplevel.print oo Toplevel.proof) o IsarThy.register_locally)); |
342 |
||
343 |
||
5832 | 344 |
|
345 |
(** proof commands **) |
|
346 |
||
347 |
(* statements *) |
|
348 |
||
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
349 |
val statement = P.and_list1 (P.opt_thm_name ":" -- Scan.repeat1 P.propp); |
12956 | 350 |
val general_statement = |
15127 | 351 |
statement >> pair [] || Scan.repeat P.locale_elem_or_expr -- (P.$$$ "shows" |-- statement); |
5832 | 352 |
|
12242
282a92bc5655
multi_theorem: common statement header (covers *all* results);
wenzelm
parents:
12142
diff
changeset
|
353 |
fun gen_theorem k = |
282a92bc5655
multi_theorem: common statement header (covers *all* results);
wenzelm
parents:
12142
diff
changeset
|
354 |
OuterSyntax.command k ("state " ^ k) K.thy_goal |
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16604
diff
changeset
|
355 |
(P.opt_locale_target -- Scan.optional (P.opt_thm_name ":" --| |
12956 | 356 |
Scan.ahead (P.locale_keyword || P.$$$ "shows")) ("", []) -- |
357 |
general_statement >> (fn ((x, y), (z, w)) => |
|
358 |
(Toplevel.print o Toplevel.theory_to_proof (IsarThy.smart_multi_theorem k x y z w)))); |
|
5832 | 359 |
|
12242
282a92bc5655
multi_theorem: common statement header (covers *all* results);
wenzelm
parents:
12142
diff
changeset
|
360 |
val theoremP = gen_theorem Drule.theoremK; |
282a92bc5655
multi_theorem: common statement header (covers *all* results);
wenzelm
parents:
12142
diff
changeset
|
361 |
val lemmaP = gen_theorem Drule.lemmaK; |
282a92bc5655
multi_theorem: common statement header (covers *all* results);
wenzelm
parents:
12142
diff
changeset
|
362 |
val corollaryP = gen_theorem Drule.corollaryK; |
5832 | 363 |
|
364 |
val showP = |
|
17068 | 365 |
OuterSyntax.command "show" "state local goal, solving current obligation" |
366 |
(K.tag_proof K.prf_goal) |
|
12006 | 367 |
(statement >> ((Toplevel.print oo Toplevel.proof') o IsarThy.show)); |
5832 | 368 |
|
369 |
val haveP = |
|
17068 | 370 |
OuterSyntax.command "have" "state local goal" |
371 |
(K.tag_proof K.prf_goal) |
|
16812 | 372 |
(statement >> ((Toplevel.print oo Toplevel.proof) o IsarThy.have)); |
5832 | 373 |
|
6501 | 374 |
val thusP = |
17068 | 375 |
OuterSyntax.command "thus" "abbreviates \"then show\"" |
376 |
(K.tag_proof K.prf_goal) |
|
12006 | 377 |
(statement >> ((Toplevel.print oo Toplevel.proof') o IsarThy.thus)); |
6501 | 378 |
|
379 |
val henceP = |
|
17068 | 380 |
OuterSyntax.command "hence" "abbreviates \"then have\"" |
381 |
(K.tag_proof K.prf_goal) |
|
12006 | 382 |
(statement >> ((Toplevel.print oo Toplevel.proof) o IsarThy.hence)); |
6501 | 383 |
|
5832 | 384 |
|
5914 | 385 |
(* facts *) |
5832 | 386 |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
387 |
val facts = P.and_list1 P.xthms1; |
9197 | 388 |
|
5832 | 389 |
val thenP = |
17068 | 390 |
OuterSyntax.command "then" "forward chaining" |
391 |
(K.tag_proof K.prf_chain) |
|
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
392 |
(Scan.succeed (Toplevel.print o Toplevel.proof (ProofHistory.apply Proof.chain))); |
5832 | 393 |
|
394 |
val fromP = |
|
17068 | 395 |
OuterSyntax.command "from" "forward chaining from given facts" |
396 |
(K.tag_proof K.prf_chain) |
|
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
397 |
(facts >> (Toplevel.print oo (Toplevel.proof o ProofHistory.apply o Proof.from_thmss))); |
5914 | 398 |
|
6878 | 399 |
val withP = |
17068 | 400 |
OuterSyntax.command "with" "forward chaining from given and current facts" |
401 |
(K.tag_proof K.prf_chain) |
|
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
402 |
(facts >> (Toplevel.print oo (Toplevel.proof o ProofHistory.apply o Proof.with_thmss))); |
6878 | 403 |
|
6773 | 404 |
val noteP = |
17068 | 405 |
OuterSyntax.command "note" "define facts" |
406 |
(K.tag_proof K.prf_decl) |
|
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
407 |
(name_facts >> (Toplevel.print oo (Toplevel.proof o ProofHistory.apply o Proof.note_thmss))); |
5832 | 408 |
|
12926 | 409 |
val usingP = |
17068 | 410 |
OuterSyntax.command "using" "augment goal facts" |
411 |
(K.tag_proof K.prf_decl) |
|
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
412 |
(facts >> (Toplevel.print oo (Toplevel.proof o ProofHistory.apply o Proof.using_thmss))); |
12926 | 413 |
|
5832 | 414 |
|
415 |
(* proof context *) |
|
416 |
||
11890 | 417 |
val fixP = |
17068 | 418 |
OuterSyntax.command "fix" "fix local variables (Skolem constants)" |
419 |
(K.tag_proof K.prf_asm) |
|
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
420 |
(vars >> (Toplevel.print oo (Toplevel.proof o ProofHistory.apply o Proof.fix))); |
11890 | 421 |
|
5832 | 422 |
val assumeP = |
17068 | 423 |
OuterSyntax.command "assume" "assume propositions" |
424 |
(K.tag_proof K.prf_asm) |
|
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
425 |
(statement >> (Toplevel.print oo (Toplevel.proof o ProofHistory.apply o Proof.assume))); |
5832 | 426 |
|
6850 | 427 |
val presumeP = |
17068 | 428 |
OuterSyntax.command "presume" "assume propositions, to be established later" |
429 |
(K.tag_proof K.prf_asm) |
|
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
430 |
(statement >> (Toplevel.print oo (Toplevel.proof o ProofHistory.apply o Proof.presume))); |
6850 | 431 |
|
6953 | 432 |
val defP = |
17068 | 433 |
OuterSyntax.command "def" "local definition" |
434 |
(K.tag_proof K.prf_asm) |
|
10688 | 435 |
(P.opt_thm_name ":" -- (P.name -- ((P.$$$ "\\<equiv>" || P.$$$ "==") |-- P.!!! P.termp)) |
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
436 |
>> (Toplevel.print oo (Toplevel.proof o ProofHistory.apply o uncurry Proof.def))); |
6953 | 437 |
|
11890 | 438 |
val obtainP = |
439 |
OuterSyntax.command "obtain" "generalized existence" |
|
17068 | 440 |
(K.tag_proof K.prf_asm_goal) |
11890 | 441 |
(Scan.optional |
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
442 |
(P.and_list1 (Scan.repeat1 P.name -- Scan.option (P.$$$ "::" |-- P.typ)) |
12968 | 443 |
--| P.$$$ "where") [] -- statement >> (Toplevel.print oo IsarThy.obtain)); |
5832 | 444 |
|
445 |
val letP = |
|
17068 | 446 |
OuterSyntax.command "let" "bind text variables" |
447 |
(K.tag_proof K.prf_decl) |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
448 |
(P.and_list1 (P.enum1 "and" P.term -- (P.$$$ "=" |-- P.term)) |
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
449 |
>> (Toplevel.print oo (Toplevel.proof o ProofHistory.apply o Proof.let_bind))); |
5832 | 450 |
|
11793
5f0ab6f5c280
support impromptu terminology of cases parameters;
wenzelm
parents:
11742
diff
changeset
|
451 |
val case_spec = |
15703 | 452 |
(P.$$$ "(" |-- P.!!! (P.xname -- Scan.repeat1 (P.maybe P.name) --| P.$$$ ")") || |
12267 | 453 |
P.xname >> rpair []) -- P.opt_attribs >> P.triple1; |
11793
5f0ab6f5c280
support impromptu terminology of cases parameters;
wenzelm
parents:
11742
diff
changeset
|
454 |
|
8370 | 455 |
val caseP = |
17068 | 456 |
OuterSyntax.command "case" "invoke local context" |
457 |
(K.tag_proof K.prf_asm) |
|
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
458 |
(case_spec >> (Toplevel.print oo (Toplevel.proof o ProofHistory.apply o Proof.invoke_case))); |
8370 | 459 |
|
5832 | 460 |
|
461 |
(* proof structure *) |
|
462 |
||
463 |
val beginP = |
|
17068 | 464 |
OuterSyntax.command "{" "begin explicit proof block" |
465 |
(K.tag_proof K.prf_open) |
|
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
466 |
(Scan.succeed (Toplevel.print o (Toplevel.proof (ProofHistory.apply Proof.begin_block)))); |
5832 | 467 |
|
6687 | 468 |
val endP = |
17068 | 469 |
OuterSyntax.command "}" "end explicit proof block" |
470 |
(K.tag_proof K.prf_close) |
|
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
471 |
(Scan.succeed (Toplevel.print o (Toplevel.proof (ProofHistory.applys Proof.end_block)))); |
6687 | 472 |
|
5832 | 473 |
val nextP = |
17068 | 474 |
OuterSyntax.command "next" "enter next proof block" |
475 |
(K.tag_proof K.prf_block) |
|
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
476 |
(Scan.succeed (Toplevel.print o (Toplevel.proof (ProofHistory.apply Proof.next_block)))); |
5832 | 477 |
|
478 |
||
479 |
(* end proof *) |
|
480 |
||
6404 | 481 |
val qedP = |
17068 | 482 |
OuterSyntax.command "qed" "conclude (sub-)proof" |
483 |
(K.tag_proof K.qed_block) |
|
16604
6207f475bebb
cond_print for end-of-proof and calculational commands;
wenzelm
parents:
16447
diff
changeset
|
484 |
(Scan.option P.method >> (IsarThy.cond_print oo IsarThy.qed)); |
5832 | 485 |
|
6404 | 486 |
val terminal_proofP = |
17068 | 487 |
OuterSyntax.command "by" "terminal backward proof" |
488 |
(K.tag_proof K.qed) |
|
16604
6207f475bebb
cond_print for end-of-proof and calculational commands;
wenzelm
parents:
16447
diff
changeset
|
489 |
(P.method -- Scan.option P.method >> (IsarThy.cond_print oo IsarThy.terminal_proof)); |
6404 | 490 |
|
8966 | 491 |
val default_proofP = |
17068 | 492 |
OuterSyntax.command ".." "default proof" |
493 |
(K.tag_proof K.qed) |
|
16604
6207f475bebb
cond_print for end-of-proof and calculational commands;
wenzelm
parents:
16447
diff
changeset
|
494 |
(Scan.succeed (IsarThy.cond_print o IsarThy.default_proof)); |
8966 | 495 |
|
6404 | 496 |
val immediate_proofP = |
17068 | 497 |
OuterSyntax.command "." "immediate proof" |
498 |
(K.tag_proof K.qed) |
|
16604
6207f475bebb
cond_print for end-of-proof and calculational commands;
wenzelm
parents:
16447
diff
changeset
|
499 |
(Scan.succeed (IsarThy.cond_print o IsarThy.immediate_proof)); |
6404 | 500 |
|
8966 | 501 |
val done_proofP = |
17068 | 502 |
OuterSyntax.command "done" "done proof" |
503 |
(K.tag_proof K.qed) |
|
16604
6207f475bebb
cond_print for end-of-proof and calculational commands;
wenzelm
parents:
16447
diff
changeset
|
504 |
(Scan.succeed (IsarThy.cond_print o IsarThy.done_proof)); |
5832 | 505 |
|
6888
d0c68ebdabc5
skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents:
6886
diff
changeset
|
506 |
val skip_proofP = |
17068 | 507 |
OuterSyntax.improper_command "sorry" "skip proof (quick-and-dirty mode only!)" |
508 |
(K.tag_proof K.qed) |
|
16604
6207f475bebb
cond_print for end-of-proof and calculational commands;
wenzelm
parents:
16447
diff
changeset
|
509 |
(Scan.succeed (IsarThy.cond_print o IsarThy.skip_proof)); |
6888
d0c68ebdabc5
skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents:
6886
diff
changeset
|
510 |
|
8210 | 511 |
val forget_proofP = |
17068 | 512 |
OuterSyntax.command "oops" "forget proof" |
513 |
(K.tag_proof K.qed_global) |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
514 |
(Scan.succeed IsarThy.forget_proof); |
8210 | 515 |
|
5832 | 516 |
|
517 |
(* proof steps *) |
|
518 |
||
8165 | 519 |
val deferP = |
17068 | 520 |
OuterSyntax.command "defer" "shuffle internal proof state" |
521 |
(K.tag_proof K.prf_script) |
|
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
522 |
(Scan.option P.nat >> |
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
523 |
(Toplevel.print oo (Toplevel.proof o ProofHistory.applys o Proof.defer))); |
8165 | 524 |
|
525 |
val preferP = |
|
17068 | 526 |
OuterSyntax.command "prefer" "shuffle internal proof state" |
527 |
(K.tag_proof K.prf_script) |
|
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
528 |
(P.nat >> (Toplevel.print oo (Toplevel.proof o ProofHistory.applys o Proof.prefer))); |
8165 | 529 |
|
6850 | 530 |
val applyP = |
17068 | 531 |
OuterSyntax.command "apply" "initial refinement step (unstructured)" |
532 |
(K.tag_proof K.prf_script) |
|
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
533 |
(P.method >> (Toplevel.print oo (Toplevel.proof o ProofHistory.applys o Proof.apply))); |
5832 | 534 |
|
8235 | 535 |
val apply_endP = |
17068 | 536 |
OuterSyntax.command "apply_end" "terminal refinement (unstructured)" |
537 |
(K.tag_proof K.prf_script) |
|
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
538 |
(P.method >> (Toplevel.print oo (Toplevel.proof o ProofHistory.applys o Proof.apply_end))); |
5832 | 539 |
|
6404 | 540 |
val proofP = |
17068 | 541 |
OuterSyntax.command "proof" "backward proof" |
542 |
(K.tag_proof K.prf_block) |
|
16812 | 543 |
(Scan.option P.method >> (fn m => Toplevel.print o |
17107
2c35e00ee2ab
various Toplevel.theory_context commands: proper presentation in context;
wenzelm
parents:
17068
diff
changeset
|
544 |
Toplevel.actual_proof (ProofHistory.applys (Proof.proof m)) o |
15237
250e9be7a09d
Some changes to allow skipping of proof scripts.
berghofe
parents:
15141
diff
changeset
|
545 |
Toplevel.skip_proof (History.apply (fn i => i + 1)))); |
5832 | 546 |
|
547 |
||
6773 | 548 |
(* calculational proof commands *) |
549 |
||
6878 | 550 |
val calc_args = |
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
551 |
Scan.option (P.$$$ "(" |-- P.!!! ((P.xthms1 --| P.$$$ ")"))); |
6878 | 552 |
|
6773 | 553 |
val alsoP = |
17068 | 554 |
OuterSyntax.command "also" "combine calculation and current facts" |
555 |
(K.tag_proof K.prf_decl) |
|
16604
6207f475bebb
cond_print for end-of-proof and calculational commands;
wenzelm
parents:
16447
diff
changeset
|
556 |
(calc_args >> (IsarThy.cond_print oo IsarThy.also)); |
6773 | 557 |
|
558 |
val finallyP = |
|
17068 | 559 |
OuterSyntax.command "finally" "combine calculation and current facts, exhibit result" |
560 |
(K.tag_proof K.prf_chain) |
|
16604
6207f475bebb
cond_print for end-of-proof and calculational commands;
wenzelm
parents:
16447
diff
changeset
|
561 |
(calc_args >> (IsarThy.cond_print oo IsarThy.finally)); |
6773 | 562 |
|
8562 | 563 |
val moreoverP = |
17068 | 564 |
OuterSyntax.command "moreover" "augment calculation by current facts" |
565 |
(K.tag_proof K.prf_decl) |
|
16604
6207f475bebb
cond_print for end-of-proof and calculational commands;
wenzelm
parents:
16447
diff
changeset
|
566 |
(Scan.succeed (IsarThy.cond_print o IsarThy.moreover)); |
8562 | 567 |
|
8588 | 568 |
val ultimatelyP = |
569 |
OuterSyntax.command "ultimately" "augment calculation by current facts, exhibit result" |
|
17068 | 570 |
(K.tag_proof K.prf_chain) |
571 |
(Scan.succeed (IsarThy.cond_print o IsarThy.ultimately)); |
|
8588 | 572 |
|
6773 | 573 |
|
6742 | 574 |
(* proof navigation *) |
5944 | 575 |
|
5832 | 576 |
val backP = |
17068 | 577 |
OuterSyntax.command "back" "backtracking of proof command" |
578 |
(K.tag_proof K.prf_script) |
|
579 |
(Scan.succeed (Toplevel.print o IsarCmd.back)); |
|
5832 | 580 |
|
581 |
||
6742 | 582 |
(* history *) |
583 |
||
584 |
val cannot_undoP = |
|
585 |
OuterSyntax.improper_command "cannot_undo" "report 'cannot undo' error message" K.control |
|
9010 | 586 |
(P.name >> (Toplevel.no_timing oo IsarCmd.cannot_undo)); |
6742 | 587 |
|
7733 | 588 |
val clear_undosP = |
589 |
OuterSyntax.improper_command "clear_undos" "clear theory-level undo information" K.control |
|
9010 | 590 |
(P.nat >> (Toplevel.no_timing oo IsarCmd.clear_undos_theory)); |
6742 | 591 |
|
592 |
val redoP = |
|
593 |
OuterSyntax.improper_command "redo" "redo last command" K.control |
|
9010 | 594 |
(Scan.succeed (Toplevel.no_timing o Toplevel.print o IsarCmd.redo)); |
6742 | 595 |
|
596 |
val undos_proofP = |
|
597 |
OuterSyntax.improper_command "undos_proof" "undo last proof commands" K.control |
|
9010 | 598 |
(P.nat >> ((Toplevel.no_timing o Toplevel.print) oo IsarCmd.undos_proof)); |
6742 | 599 |
|
600 |
val undoP = |
|
601 |
OuterSyntax.improper_command "undo" "undo last command" K.control |
|
9010 | 602 |
(Scan.succeed ((Toplevel.no_timing o Toplevel.print) o IsarCmd.undo)); |
6742 | 603 |
|
8500 | 604 |
val killP = |
605 |
OuterSyntax.improper_command "kill" "kill current history node" K.control |
|
9010 | 606 |
(Scan.succeed ((Toplevel.no_timing o Toplevel.print) o IsarCmd.kill)); |
8500 | 607 |
|
6742 | 608 |
|
5832 | 609 |
|
610 |
(** diagnostic commands (for interactive mode only) **) |
|
611 |
||
8464 | 612 |
val opt_modes = Scan.optional (P.$$$ "(" |-- P.!!! (Scan.repeat1 P.xname --| P.$$$ ")")) []; |
613 |
||
614 |
||
7124 | 615 |
val pretty_setmarginP = |
616 |
OuterSyntax.improper_command "pretty_setmargin" "change default margin for pretty printing" |
|
9010 | 617 |
K.diag (P.nat >> (Toplevel.no_timing oo IsarCmd.pretty_setmargin)); |
7124 | 618 |
|
5832 | 619 |
val print_commandsP = |
9221 | 620 |
OuterSyntax.improper_command "print_commands" "print outer syntax (global)" K.diag |
621 |
(Scan.succeed (Toplevel.no_timing o OuterSyntax.print_commands)); |
|
5832 | 622 |
|
7308 | 623 |
val print_contextP = |
624 |
OuterSyntax.improper_command "print_context" "print theory context name" K.diag |
|
9010 | 625 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_context)); |
7308 | 626 |
|
5832 | 627 |
val print_theoryP = |
6723 | 628 |
OuterSyntax.improper_command "print_theory" "print logical theory contents (verbose!)" K.diag |
9010 | 629 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_theory)); |
5832 | 630 |
|
631 |
val print_syntaxP = |
|
6723 | 632 |
OuterSyntax.improper_command "print_syntax" "print inner syntax of theory (verbose!)" K.diag |
9010 | 633 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_syntax)); |
5832 | 634 |
|
5881 | 635 |
val print_theoremsP = |
17068 | 636 |
OuterSyntax.improper_command "print_theorems" |
637 |
"print theorems of local theory or proof context" K.diag |
|
9010 | 638 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_theorems)); |
5881 | 639 |
|
12061 | 640 |
val print_localesP = |
641 |
OuterSyntax.improper_command "print_locales" "print locales of this theory" K.diag |
|
642 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_locales)); |
|
643 |
||
644 |
val print_localeP = |
|
15596 | 645 |
OuterSyntax.improper_command "print_locale" "print locale expression in this theory" K.diag |
12758 | 646 |
(locale_val >> (Toplevel.no_timing oo IsarCmd.print_locale)); |
12061 | 647 |
|
15596 | 648 |
val print_registrationsP = |
15598
4ab52355bb53
Registrations of global locale interpretations: improved, better naming.
ballarin
parents:
15596
diff
changeset
|
649 |
OuterSyntax.improper_command "print_interps" |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16074
diff
changeset
|
650 |
"print interpretations of named locale" K.diag |
17139
165c97f9bb63
Printing of interpretations: option to show witness theorems;
ballarin
parents:
17107
diff
changeset
|
651 |
(Scan.optional (P.$$$ "!" >> K true) false -- P.xname >> |
165c97f9bb63
Printing of interpretations: option to show witness theorems;
ballarin
parents:
17107
diff
changeset
|
652 |
(Toplevel.no_timing oo uncurry IsarCmd.print_registrations)); |
15596 | 653 |
|
5832 | 654 |
val print_attributesP = |
12061 | 655 |
OuterSyntax.improper_command "print_attributes" "print attributes of this theory" K.diag |
9010 | 656 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_attributes)); |
5832 | 657 |
|
16027 | 658 |
val print_simpsetP = |
659 |
OuterSyntax.improper_command "print_simpset" "print context of Simplifier" K.diag |
|
660 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_simpset)); |
|
661 |
||
12383 | 662 |
val print_rulesP = |
663 |
OuterSyntax.improper_command "print_rules" "print intro/elim rules" K.diag |
|
664 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_rules)); |
|
665 |
||
11666 | 666 |
val print_induct_rulesP = |
667 |
OuterSyntax.improper_command "print_induct_rules" "print induction and cases rules" K.diag |
|
668 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_induct_rules)); |
|
669 |
||
9221 | 670 |
val print_trans_rulesP = |
11666 | 671 |
OuterSyntax.improper_command "print_trans_rules" "print transitivity rules" K.diag |
9221 | 672 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_trans_rules)); |
673 |
||
5832 | 674 |
val print_methodsP = |
12061 | 675 |
OuterSyntax.improper_command "print_methods" "print methods of this theory" K.diag |
9010 | 676 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_methods)); |
5832 | 677 |
|
9221 | 678 |
val print_antiquotationsP = |
679 |
OuterSyntax.improper_command "print_antiquotations" "print antiquotations (global)" K.diag |
|
680 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_antiquotations)); |
|
681 |
||
9454 | 682 |
val thm_depsP = |
683 |
OuterSyntax.improper_command "thm_deps" "visualize theorem dependencies" |
|
684 |
K.diag (P.xthms1 >> (Toplevel.no_timing oo IsarCmd.thm_deps)); |
|
685 |
||
16027 | 686 |
val criterion = |
687 |
P.reserved "name" |-- P.!!! (P.$$$ ":" |-- P.xname) >> FindTheorems.Name || |
|
688 |
P.reserved "intro" >> K FindTheorems.Intro || |
|
689 |
P.reserved "elim" >> K FindTheorems.Elim || |
|
690 |
P.reserved "dest" >> K FindTheorems.Dest || |
|
16074 | 691 |
P.reserved "simp" |-- P.!!! (P.$$$ ":" |-- P.term) >> FindTheorems.Simp || |
16027 | 692 |
P.term >> FindTheorems.Pattern; |
693 |
||
694 |
val find_theoremsP = |
|
17219
515badbfc4d6
renamed 'thms_containing' to 'find_theorems' -- keep old version for the time being;
wenzelm
parents:
17142
diff
changeset
|
695 |
OuterSyntax.improper_command "find_theorems" |
515badbfc4d6
renamed 'thms_containing' to 'find_theorems' -- keep old version for the time being;
wenzelm
parents:
17142
diff
changeset
|
696 |
"print theorems meeting specified criteria" K.diag |
515badbfc4d6
renamed 'thms_containing' to 'find_theorems' -- keep old version for the time being;
wenzelm
parents:
17142
diff
changeset
|
697 |
(Scan.option (P.$$$ "(" |-- P.!!! (P.nat --| P.$$$ ")")) -- |
515badbfc4d6
renamed 'thms_containing' to 'find_theorems' -- keep old version for the time being;
wenzelm
parents:
17142
diff
changeset
|
698 |
Scan.repeat (((Scan.option P.minus >> is_none) -- criterion)) |
515badbfc4d6
renamed 'thms_containing' to 'find_theorems' -- keep old version for the time being;
wenzelm
parents:
17142
diff
changeset
|
699 |
>> (Toplevel.no_timing oo IsarCmd.find_theorems)); |
515badbfc4d6
renamed 'thms_containing' to 'find_theorems' -- keep old version for the time being;
wenzelm
parents:
17142
diff
changeset
|
700 |
|
515badbfc4d6
renamed 'thms_containing' to 'find_theorems' -- keep old version for the time being;
wenzelm
parents:
17142
diff
changeset
|
701 |
val thms_containingP = (* FIXME legacy *) |
16038 | 702 |
OuterSyntax.improper_command "thms_containing" |
16027 | 703 |
"print theorems meeting specified criteria" K.diag |
704 |
(Scan.option (P.$$$ "(" |-- P.!!! (P.nat --| P.$$$ ")")) -- |
|
705 |
Scan.repeat (((Scan.option P.minus >> is_none) -- criterion)) |
|
706 |
>> (Toplevel.no_timing oo IsarCmd.find_theorems)); |
|
707 |
||
5832 | 708 |
val print_bindsP = |
6723 | 709 |
OuterSyntax.improper_command "print_binds" "print term bindings of proof context" K.diag |
9010 | 710 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_binds)); |
5832 | 711 |
|
712 |
val print_lthmsP = |
|
8370 | 713 |
OuterSyntax.improper_command "print_facts" "print facts of proof context" K.diag |
9010 | 714 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_lthms)); |
5832 | 715 |
|
8370 | 716 |
val print_casesP = |
717 |
OuterSyntax.improper_command "print_cases" "print cases of proof context" K.diag |
|
9010 | 718 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_cases)); |
8370 | 719 |
|
5896 | 720 |
val print_thmsP = |
8464 | 721 |
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
|
722 |
(opt_modes -- P.xthms1 >> (Toplevel.no_timing oo IsarCmd.print_thms)); |
5832 | 723 |
|
11524
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11101
diff
changeset
|
724 |
val print_prfsP = |
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11101
diff
changeset
|
725 |
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
|
726 |
(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
|
727 |
|
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11101
diff
changeset
|
728 |
val print_full_prfsP = |
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11101
diff
changeset
|
729 |
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
|
730 |
(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
|
731 |
|
5832 | 732 |
val print_propP = |
6723 | 733 |
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
|
734 |
(opt_modes -- P.term >> (Toplevel.no_timing oo IsarCmd.print_prop)); |
5832 | 735 |
|
736 |
val print_termP = |
|
6723 | 737 |
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
|
738 |
(opt_modes -- P.term >> (Toplevel.no_timing oo IsarCmd.print_term)); |
5832 | 739 |
|
740 |
val print_typeP = |
|
6723 | 741 |
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
|
742 |
(opt_modes -- P.typ >> (Toplevel.no_timing oo IsarCmd.print_type)); |
5832 | 743 |
|
744 |
||
745 |
||
746 |
(** system commands (for interactive mode only) **) |
|
747 |
||
748 |
val cdP = |
|
8650 | 749 |
OuterSyntax.improper_command "cd" "change current working directory" K.diag |
14950 | 750 |
(P.path >> (Toplevel.no_timing oo IsarCmd.cd)); |
5832 | 751 |
|
752 |
val pwdP = |
|
6723 | 753 |
OuterSyntax.improper_command "pwd" "print current working directory" K.diag |
9010 | 754 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.pwd)); |
5832 | 755 |
|
756 |
val use_thyP = |
|
6723 | 757 |
OuterSyntax.improper_command "use_thy" "use theory file" K.diag |
9010 | 758 |
(P.name >> (Toplevel.no_timing oo IsarCmd.use_thy)); |
5832 | 759 |
|
6694 | 760 |
val use_thy_onlyP = |
7102 | 761 |
OuterSyntax.improper_command "use_thy_only" "use theory file only, ignoring associated ML" |
9010 | 762 |
K.diag (P.name >> (Toplevel.no_timing oo IsarCmd.use_thy_only)); |
6694 | 763 |
|
6196 | 764 |
val update_thyP = |
6723 | 765 |
OuterSyntax.improper_command "update_thy" "update theory file" K.diag |
9010 | 766 |
(P.name >> (Toplevel.no_timing oo IsarCmd.update_thy)); |
5832 | 767 |
|
7102 | 768 |
val update_thy_onlyP = |
769 |
OuterSyntax.improper_command "update_thy_only" "update theory file, ignoring associated ML" |
|
9010 | 770 |
K.diag (P.name >> (Toplevel.no_timing oo IsarCmd.update_thy_only)); |
7102 | 771 |
|
772 |
val touch_thyP = |
|
773 |
OuterSyntax.improper_command "touch_thy" "outdate theory, including descendants" K.diag |
|
9010 | 774 |
(P.name >> (Toplevel.no_timing oo IsarCmd.touch_thy)); |
7102 | 775 |
|
776 |
val touch_all_thysP = |
|
777 |
OuterSyntax.improper_command "touch_all_thys" "outdate all non-finished theories" K.diag |
|
9010 | 778 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.touch_all_thys)); |
7102 | 779 |
|
7908 | 780 |
val touch_child_thysP = |
781 |
OuterSyntax.improper_command "touch_child_thys" "outdate child theories" K.diag |
|
9010 | 782 |
(P.name >> (Toplevel.no_timing oo IsarCmd.touch_child_thys)); |
7908 | 783 |
|
7102 | 784 |
val remove_thyP = |
785 |
OuterSyntax.improper_command "remove_thy" "remove theory from loader database" K.diag |
|
9010 | 786 |
(P.name >> (Toplevel.no_timing oo IsarCmd.remove_thy)); |
7102 | 787 |
|
7931 | 788 |
val kill_thyP = |
789 |
OuterSyntax.improper_command "kill_thy" "kill theory -- try to remove from loader database" |
|
9010 | 790 |
K.diag (P.name >> (Toplevel.no_timing oo IsarCmd.kill_thy)); |
7931 | 791 |
|
14934 | 792 |
val display_draftsP = |
793 |
OuterSyntax.improper_command "display_drafts" "display raw source files with symbols" |
|
14950 | 794 |
K.diag (Scan.repeat1 P.path >> (Toplevel.no_timing oo IsarCmd.display_drafts)); |
14934 | 795 |
|
796 |
val print_draftsP = |
|
797 |
OuterSyntax.improper_command "print_drafts" "print raw source files with symbols" |
|
14950 | 798 |
K.diag (Scan.repeat1 P.path >> (Toplevel.no_timing oo IsarCmd.print_drafts)); |
14934 | 799 |
|
9731 | 800 |
val opt_limits = |
801 |
Scan.option P.nat -- Scan.option (P.$$$ "," |-- P.!!! P.nat); |
|
802 |
||
5832 | 803 |
val prP = |
8886 | 804 |
OuterSyntax.improper_command "pr" "print current proof state (if present)" K.diag |
9731 | 805 |
(opt_modes -- opt_limits >> (Toplevel.no_timing oo IsarCmd.pr)); |
7199 | 806 |
|
7222 | 807 |
val disable_prP = |
808 |
OuterSyntax.improper_command "disable_pr" "disable printing of toplevel state" K.diag |
|
9010 | 809 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.disable_pr)); |
5832 | 810 |
|
7222 | 811 |
val enable_prP = |
812 |
OuterSyntax.improper_command "enable_pr" "enable printing of toplevel state" K.diag |
|
9010 | 813 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.enable_pr)); |
7222 | 814 |
|
5832 | 815 |
val commitP = |
6723 | 816 |
OuterSyntax.improper_command "commit" "commit current session to ML database" K.diag |
9010 | 817 |
(P.opt_unit >> (Toplevel.no_timing oo K IsarCmd.use_commit)); |
5832 | 818 |
|
819 |
val quitP = |
|
6723 | 820 |
OuterSyntax.improper_command "quit" "quit Isabelle" K.control |
9010 | 821 |
(P.opt_unit >> (Toplevel.no_timing oo K IsarCmd.quit)); |
5832 | 822 |
|
823 |
val exitP = |
|
6723 | 824 |
OuterSyntax.improper_command "exit" "exit Isar loop" K.control |
9010 | 825 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.exit)); |
5832 | 826 |
|
7102 | 827 |
val init_toplevelP = |
828 |
OuterSyntax.improper_command "init_toplevel" "restart Isar toplevel loop" K.control |
|
9010 | 829 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.init_toplevel)); |
5991 | 830 |
|
7462 | 831 |
val welcomeP = |
8678 | 832 |
OuterSyntax.improper_command "welcome" "print welcome message" K.diag |
9010 | 833 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.welcome)); |
7462 | 834 |
|
5832 | 835 |
|
836 |
||
837 |
(** the Pure outer syntax **) |
|
838 |
||
839 |
(*keep keywords consistent with the parsers, including those in |
|
840 |
outer_parse.ML, otherwise be prepared for unexpected errors*) |
|
841 |
||
16038 | 842 |
val _ = OuterSyntax.add_keywords |
17068 | 843 |
["!", "!!", "%", "(", ")", "+", ",", "--", ":", "::", ";", "<", "<=", |
844 |
"=", "==", "=>", "?", "[", "]", "advanced", "and", "assumes", |
|
16264 | 845 |
"begin", "binder", "concl", "constrains", "defines", "files", |
846 |
"fixes", "imports", "in", "includes", "infix", "infixl", "infixr", |
|
847 |
"is", "notes", "open", "output", "overloaded", "shows", "structure", |
|
848 |
"uses", "where", "|", "\\<equiv>", "\\<leftharpoondown>", |
|
849 |
"\\<rightharpoonup>", "\\<rightleftharpoons>", "\\<subseteq>"]; |
|
5832 | 850 |
|
16038 | 851 |
val _ = OuterSyntax.add_parsers [ |
5832 | 852 |
(*theory structure*) |
8500 | 853 |
theoryP, end_excursionP, contextP, |
7775 | 854 |
(*markup commands*) |
7733 | 855 |
headerP, chapterP, sectionP, subsectionP, subsubsectionP, textP, |
7862 | 856 |
text_rawP, sectP, subsectP, subsubsectP, txtP, txt_rawP, |
5832 | 857 |
(*theory sections*) |
7172 | 858 |
classesP, classrelP, defaultsortP, typedeclP, typeabbrP, nontermP, |
15748 | 859 |
aritiesP, judgmentP, constsP, finalconstsP, syntaxP, no_syntaxP, |
860 |
translationsP, axiomsP, defsP, constdefsP, theoremsP, lemmasP, |
|
861 |
declareP, globalP, localP, hideP, useP, mlP, ml_commandP, ml_setupP, |
|
862 |
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
|
863 |
print_translationP, typed_print_translationP, |
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
864 |
print_ast_translationP, token_translationP, oracleP, localeP, |
5832 | 865 |
(*proof commands*) |
11890 | 866 |
theoremP, lemmaP, corollaryP, showP, haveP, thusP, henceP, fixP, |
867 |
assumeP, presumeP, defP, obtainP, letP, caseP, thenP, fromP, withP, |
|
12926 | 868 |
noteP, usingP, beginP, endP, nextP, qedP, terminal_proofP, |
869 |
default_proofP, immediate_proofP, done_proofP, skip_proofP, |
|
870 |
forget_proofP, deferP, preferP, applyP, apply_endP, proofP, alsoP, |
|
871 |
finallyP, moreoverP, ultimatelyP, backP, cannot_undoP, clear_undosP, |
|
16027 | 872 |
redoP, undos_proofP, undoP, killP, interpretationP, interpretP, |
16168
adb83939177f
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16102
diff
changeset
|
873 |
(*diagnostic commands*) |
adb83939177f
Locales: new element constrains, parameter renaming with syntax,
ballarin
parents:
16102
diff
changeset
|
874 |
pretty_setmarginP, |
16027 | 875 |
print_commandsP, print_contextP, print_theoryP, print_syntaxP, |
876 |
print_theoremsP, print_localesP, print_localeP, |
|
877 |
print_registrationsP, print_attributesP, print_simpsetP, |
|
878 |
print_rulesP, print_induct_rulesP, print_trans_rulesP, |
|
879 |
print_methodsP, print_antiquotationsP, thm_depsP, find_theoremsP, |
|
17219
515badbfc4d6
renamed 'thms_containing' to 'find_theorems' -- keep old version for the time being;
wenzelm
parents:
17142
diff
changeset
|
880 |
thms_containingP, (* FIXME legacy *) |
16027 | 881 |
print_bindsP, print_lthmsP, print_casesP, print_thmsP, print_prfsP, |
882 |
print_full_prfsP, print_propP, print_termP, print_typeP, |
|
5832 | 883 |
(*system commands*) |
7102 | 884 |
cdP, pwdP, use_thyP, use_thy_onlyP, update_thyP, update_thy_onlyP, |
7931 | 885 |
touch_thyP, touch_all_thysP, touch_child_thysP, remove_thyP, |
14934 | 886 |
kill_thyP, display_draftsP, print_draftsP, prP, disable_prP, |
887 |
enable_prP, commitP, quitP, exitP, init_toplevelP, welcomeP]; |
|
5832 | 888 |
|
889 |
end; |