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