author | wenzelm |
Tue, 02 Sep 2008 14:10:45 +0200 | |
changeset 28083 | 103d9282a946 |
parent 27877 | af9f0adbab1f |
child 28084 | a05ca48ef263 |
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 |
||
24868 | 14 |
(** keywords **) |
15 |
||
16 |
(*keep keywords consistent with the parsers, otherwise be prepared for |
|
17 |
unexpected errors*) |
|
18 |
||
27353
71c4dd53d4cb
moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents:
27200
diff
changeset
|
19 |
val _ = List.app OuterKeyword.keyword |
24868 | 20 |
["!!", "!", "%", "(", ")", "+", ",", "--", ":", "::", ";", "<", "<=", |
21 |
"=", "==", "=>", "?", "[", "\\<equiv>", "\\<leftharpoondown>", |
|
22 |
"\\<rightharpoonup>", "\\<rightleftharpoons>", "\\<subseteq>", "]", |
|
26888 | 23 |
"advanced", "and", "assumes", "attach", "begin", "binder", |
24868 | 24 |
"constrains", "defines", "fixes", "for", "identifier", "if", |
25 |
"imports", "in", "includes", "infix", "infixl", "infixr", "is", |
|
25003 | 26 |
"notes", "obtains", "open", "output", "overloaded", "shows", |
24868 | 27 |
"structure", "unchecked", "uses", "where", "|"]; |
28 |
||
29 |
||
5832 | 30 |
(** init and exit **) |
31 |
||
24868 | 32 |
val _ = |
17068 | 33 |
OuterSyntax.command "theory" "begin theory" (K.tag_theory K.thy_begin) |
27575 | 34 |
(ThyHeader.args >> (Toplevel.print oo IsarCmd.init_theory)); |
5832 | 35 |
|
24868 | 36 |
val _ = |
20958 | 37 |
OuterSyntax.command "end" "end (local) theory" (K.tag_theory K.thy_end) |
21004 | 38 |
(Scan.succeed (Toplevel.exit o Toplevel.end_local_theory)); |
6687 | 39 |
|
5832 | 40 |
|
7749 | 41 |
(** markup commands **) |
5832 | 42 |
|
24868 | 43 |
val _ = OuterSyntax.markup_command ThyOutput.Markup "header" "theory header" K.diag |
27872
631371a02b8c
P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents:
27854
diff
changeset
|
44 |
(P.doc_source >> IsarCmd.header_markup); |
6353 | 45 |
|
24868 | 46 |
val _ = OuterSyntax.markup_command ThyOutput.Markup "chapter" "chapter heading" |
27872
631371a02b8c
P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents:
27854
diff
changeset
|
47 |
K.thy_heading (P.opt_target -- P.doc_source >> IsarCmd.local_theory_markup); |
5958 | 48 |
|
24868 | 49 |
val _ = OuterSyntax.markup_command ThyOutput.Markup "section" "section heading" |
27872
631371a02b8c
P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents:
27854
diff
changeset
|
50 |
K.thy_heading (P.opt_target -- P.doc_source >> IsarCmd.local_theory_markup); |
5958 | 51 |
|
24868 | 52 |
val _ = OuterSyntax.markup_command ThyOutput.Markup "subsection" "subsection heading" |
27872
631371a02b8c
P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents:
27854
diff
changeset
|
53 |
K.thy_heading (P.opt_target -- P.doc_source >> IsarCmd.local_theory_markup); |
5958 | 54 |
|
24868 | 55 |
val _ = |
22117 | 56 |
OuterSyntax.markup_command ThyOutput.Markup "subsubsection" "subsubsection heading" |
27872
631371a02b8c
P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents:
27854
diff
changeset
|
57 |
K.thy_heading (P.opt_target -- P.doc_source >> IsarCmd.local_theory_markup); |
5832 | 58 |
|
24868 | 59 |
val _ = OuterSyntax.markup_command ThyOutput.MarkupEnv "text" "formal comment (theory)" |
27872
631371a02b8c
P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents:
27854
diff
changeset
|
60 |
K.thy_decl (P.opt_target -- P.doc_source >> IsarCmd.local_theory_markup); |
7172 | 61 |
|
27872
631371a02b8c
P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents:
27854
diff
changeset
|
62 |
val _ = OuterSyntax.markup_command ThyOutput.Verbatim "text_raw" "raw document preparation text" |
631371a02b8c
P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents:
27854
diff
changeset
|
63 |
K.thy_decl (P.opt_target -- P.doc_source >> IsarCmd.local_theory_markup); |
7172 | 64 |
|
24868 | 65 |
val _ = OuterSyntax.markup_command ThyOutput.Markup "sect" "formal comment (proof)" |
27872
631371a02b8c
P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents:
27854
diff
changeset
|
66 |
(K.tag_proof K.prf_heading) (P.doc_source >> IsarCmd.proof_markup); |
7172 | 67 |
|
24868 | 68 |
val _ = OuterSyntax.markup_command ThyOutput.Markup "subsect" "formal comment (proof)" |
27872
631371a02b8c
P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents:
27854
diff
changeset
|
69 |
(K.tag_proof K.prf_heading) (P.doc_source >> IsarCmd.proof_markup); |
7172 | 70 |
|
27872
631371a02b8c
P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents:
27854
diff
changeset
|
71 |
val _ = OuterSyntax.markup_command ThyOutput.Markup "subsubsect" "formal comment (proof)" |
631371a02b8c
P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents:
27854
diff
changeset
|
72 |
(K.tag_proof K.prf_heading) (P.doc_source >> IsarCmd.proof_markup); |
7172 | 73 |
|
24868 | 74 |
val _ = OuterSyntax.markup_command ThyOutput.MarkupEnv "txt" "formal comment (proof)" |
27872
631371a02b8c
P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents:
27854
diff
changeset
|
75 |
(K.tag_proof K.prf_decl) (P.doc_source >> IsarCmd.proof_markup); |
7172 | 76 |
|
24868 | 77 |
val _ = OuterSyntax.markup_command ThyOutput.Verbatim "txt_raw" |
17068 | 78 |
"raw document preparation text (proof)" (K.tag_proof K.prf_decl) |
27872
631371a02b8c
P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents:
27854
diff
changeset
|
79 |
(P.doc_source >> IsarCmd.proof_markup); |
7775 | 80 |
|
5832 | 81 |
|
6886 | 82 |
|
83 |
(** theory sections **) |
|
84 |
||
5832 | 85 |
(* classes and sorts *) |
86 |
||
24868 | 87 |
val _ = |
6723 | 88 |
OuterSyntax.command "classes" "declare type classes" K.thy_decl |
11101
014e7b5c77ba
support \<subseteq> syntax in classes/classrel/axclass/instance;
wenzelm
parents:
11017
diff
changeset
|
89 |
(Scan.repeat1 (P.name -- Scan.optional ((P.$$$ "\\<subseteq>" || P.$$$ "<") |-- |
24932
86ef9a828a9e
AxClass.axiomatize and Specification: renamed XXX_i to XXX, and XXX to XXX_cmd;
wenzelm
parents:
24914
diff
changeset
|
90 |
P.!!! (P.list1 P.xname)) []) >> (Toplevel.theory o fold AxClass.axiomatize_class_cmd)); |
5832 | 91 |
|
24868 | 92 |
val _ = |
6723 | 93 |
OuterSyntax.command "classrel" "state inclusion of type classes (axiomatic!)" K.thy_decl |
14779 | 94 |
(P.and_list1 (P.xname -- ((P.$$$ "\\<subseteq>" || P.$$$ "<") |-- P.!!! P.xname)) |
24932
86ef9a828a9e
AxClass.axiomatize and Specification: renamed XXX_i to XXX, and XXX to XXX_cmd;
wenzelm
parents:
24914
diff
changeset
|
95 |
>> (Toplevel.theory o AxClass.axiomatize_classrel_cmd)); |
5832 | 96 |
|
24868 | 97 |
val _ = |
6723 | 98 |
OuterSyntax.command "defaultsort" "declare default sort" K.thy_decl |
22796 | 99 |
(P.sort >> (Toplevel.theory o Sign.add_defsort)); |
5832 | 100 |
|
24868 | 101 |
val _ = |
19245 | 102 |
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
|
103 |
(P.name -- Scan.optional ((P.$$$ "\\<subseteq>" || P.$$$ "<") |-- |
74ddf3a522f8
added Isar syntax for adding parameters to axclasses
haftmann
parents:
21437
diff
changeset
|
104 |
P.!!! (P.list1 P.xname)) [] |
22117 | 105 |
-- Scan.repeat (SpecParse.thm_name ":" -- (P.prop >> single)) |
24219 | 106 |
>> (fn (x, y) => Toplevel.theory (snd o Class.axclass_cmd x y))); |
19245 | 107 |
|
5832 | 108 |
|
109 |
(* types *) |
|
110 |
||
24868 | 111 |
val _ = |
12624 | 112 |
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
|
113 |
(P.type_args -- P.name -- P.opt_infix >> (fn ((args, a), mx) => |
25495 | 114 |
Toplevel.theory (ObjectLogic.typedecl (a, args, mx) #> snd))); |
5832 | 115 |
|
24868 | 116 |
val _ = |
6723 | 117 |
OuterSyntax.command "types" "declare type abbreviations" K.thy_decl |
6727 | 118 |
(Scan.repeat1 |
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
119 |
(P.type_args -- P.name -- (P.$$$ "=" |-- P.!!! (P.typ -- P.opt_infix'))) |
22796 | 120 |
>> (Toplevel.theory o Sign.add_tyabbrs o |
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12768
diff
changeset
|
121 |
map (fn ((args, a), (T, mx)) => (a, args, T, mx)))); |
5832 | 122 |
|
24868 | 123 |
val _ = |
6370 | 124 |
OuterSyntax.command "nonterminals" "declare types treated as grammar nonterminal symbols" |
22796 | 125 |
K.thy_decl (Scan.repeat1 P.name >> (Toplevel.theory o Sign.add_nonterminals)); |
5832 | 126 |
|
24868 | 127 |
val _ = |
6723 | 128 |
OuterSyntax.command "arities" "state type arities (axiomatic!)" K.thy_decl |
24932
86ef9a828a9e
AxClass.axiomatize and Specification: renamed XXX_i to XXX, and XXX to XXX_cmd;
wenzelm
parents:
24914
diff
changeset
|
129 |
(Scan.repeat1 P.arity >> (Toplevel.theory o fold AxClass.axiomatize_arity_cmd)); |
5832 | 130 |
|
131 |
||
132 |
(* consts and syntax *) |
|
133 |
||
24868 | 134 |
val _ = |
8227 | 135 |
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
|
136 |
(P.const >> (Toplevel.theory o ObjectLogic.add_judgment)); |
8227 | 137 |
|
24868 | 138 |
val _ = |
6723 | 139 |
OuterSyntax.command "consts" "declare constants" K.thy_decl |
22796 | 140 |
(Scan.repeat1 P.const >> (Toplevel.theory o Sign.add_consts)); |
5832 | 141 |
|
14642 | 142 |
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
|
143 |
|
24868 | 144 |
val _ = |
14223
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13802
diff
changeset
|
145 |
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
|
146 |
(opt_overloaded -- Scan.repeat1 P.term >> (uncurry (Toplevel.theory oo Theory.add_finals))); |
9731 | 147 |
|
12142 | 148 |
val mode_spec = |
9731 | 149 |
(P.$$$ "output" >> K ("", false)) || P.name -- Scan.optional (P.$$$ "output" >> K false) true; |
150 |
||
14900 | 151 |
val opt_mode = |
24960 | 152 |
Scan.optional (P.$$$ "(" |-- P.!!! (mode_spec --| P.$$$ ")")) Syntax.mode_default; |
5832 | 153 |
|
24868 | 154 |
val _ = |
6723 | 155 |
OuterSyntax.command "syntax" "declare syntactic constants" K.thy_decl |
22796 | 156 |
(opt_mode -- Scan.repeat1 P.const >> (Toplevel.theory o uncurry Sign.add_modesyntax)); |
5832 | 157 |
|
24868 | 158 |
val _ = |
15748 | 159 |
OuterSyntax.command "no_syntax" "delete syntax declarations" K.thy_decl |
22796 | 160 |
(opt_mode -- Scan.repeat1 P.const >> (Toplevel.theory o uncurry Sign.del_modesyntax)); |
15748 | 161 |
|
5832 | 162 |
|
163 |
(* translations *) |
|
164 |
||
165 |
val trans_pat = |
|
6723 | 166 |
Scan.optional (P.$$$ "(" |-- P.!!! (P.xname --| P.$$$ ")")) "logic" -- P.string; |
5832 | 167 |
|
168 |
fun trans_arrow toks = |
|
10688 | 169 |
((P.$$$ "\\<rightharpoonup>" || P.$$$ "=>") >> K Syntax.ParseRule || |
170 |
(P.$$$ "\\<leftharpoondown>" || P.$$$ "<=") >> K Syntax.PrintRule || |
|
171 |
(P.$$$ "\\<rightleftharpoons>" || P.$$$ "==") >> K Syntax.ParsePrintRule) toks; |
|
5832 | 172 |
|
173 |
val trans_line = |
|
6723 | 174 |
trans_pat -- P.!!! (trans_arrow -- trans_pat) |
5832 | 175 |
>> (fn (left, (arr, right)) => arr (left, right)); |
176 |
||
24868 | 177 |
val _ = |
6723 | 178 |
OuterSyntax.command "translations" "declare syntax translation rules" K.thy_decl |
22796 | 179 |
(Scan.repeat1 trans_line >> (Toplevel.theory o Sign.add_trrules)); |
5832 | 180 |
|
24868 | 181 |
val _ = |
19260 | 182 |
OuterSyntax.command "no_translations" "remove syntax translation rules" K.thy_decl |
22796 | 183 |
(Scan.repeat1 trans_line >> (Toplevel.theory o Sign.del_trrules)); |
19260 | 184 |
|
5832 | 185 |
|
186 |
(* axioms and definitions *) |
|
187 |
||
24868 | 188 |
val _ = |
6723 | 189 |
OuterSyntax.command "axioms" "state arbitrary propositions (axiomatic!)" K.thy_decl |
22117 | 190 |
(Scan.repeat1 SpecParse.spec_name >> (Toplevel.theory o IsarCmd.add_axioms)); |
5832 | 191 |
|
19631 | 192 |
val opt_unchecked_overloaded = |
193 |
Scan.optional (P.$$$ "(" |-- P.!!! |
|
194 |
(((P.$$$ "unchecked" >> K true) -- Scan.optional (P.$$$ "overloaded" >> K true) false || |
|
195 |
P.$$$ "overloaded" >> K (false, true)) --| P.$$$ ")")) (false, false); |
|
196 |
||
24868 | 197 |
val _ = |
6723 | 198 |
OuterSyntax.command "defs" "define constants" K.thy_decl |
22117 | 199 |
(opt_unchecked_overloaded -- Scan.repeat1 SpecParse.spec_name |
21350 | 200 |
>> (Toplevel.theory o IsarCmd.add_defs)); |
6370 | 201 |
|
14642 | 202 |
|
21601
6588b947d631
simplified syntax for 'definition', 'abbreviation';
wenzelm
parents:
21527
diff
changeset
|
203 |
(* old constdefs *) |
14642 | 204 |
|
21601
6588b947d631
simplified syntax for 'definition', 'abbreviation';
wenzelm
parents:
21527
diff
changeset
|
205 |
val old_constdecl = |
28083
103d9282a946
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
27877
diff
changeset
|
206 |
P.binding --| P.where_ >> (fn x => (x, NONE, NoSyn)) || |
103d9282a946
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
27877
diff
changeset
|
207 |
P.binding -- (P.$$$ "::" |-- P.!!! P.typ >> SOME) -- P.opt_mixfix' |
21601
6588b947d631
simplified syntax for 'definition', 'abbreviation';
wenzelm
parents:
21527
diff
changeset
|
208 |
--| Scan.option P.where_ >> P.triple1 || |
28083
103d9282a946
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
27877
diff
changeset
|
209 |
P.binding -- (P.mixfix >> pair NONE) --| Scan.option P.where_ >> P.triple2; |
19076 | 210 |
|
22117 | 211 |
val old_constdef = Scan.option old_constdecl -- (SpecParse.opt_thm_name ":" -- P.prop); |
14642 | 212 |
|
19076 | 213 |
val structs = |
214 |
Scan.optional ((P.$$$ "(" -- P.$$$ "structure") |-- P.!!! (P.simple_fixes --| P.$$$ ")")) []; |
|
215 |
||
24868 | 216 |
val _ = |
19076 | 217 |
OuterSyntax.command "constdefs" "old-style constant definition" K.thy_decl |
21601
6588b947d631
simplified syntax for 'definition', 'abbreviation';
wenzelm
parents:
21527
diff
changeset
|
218 |
(structs -- Scan.repeat1 old_constdef >> (Toplevel.theory o Constdefs.add_constdefs)); |
6588b947d631
simplified syntax for 'definition', 'abbreviation';
wenzelm
parents:
21527
diff
changeset
|
219 |
|
6588b947d631
simplified syntax for 'definition', 'abbreviation';
wenzelm
parents:
21527
diff
changeset
|
220 |
|
6588b947d631
simplified syntax for 'definition', 'abbreviation';
wenzelm
parents:
21527
diff
changeset
|
221 |
(* constant definitions and abbreviations *) |
6588b947d631
simplified syntax for 'definition', 'abbreviation';
wenzelm
parents:
21527
diff
changeset
|
222 |
|
6588b947d631
simplified syntax for 'definition', 'abbreviation';
wenzelm
parents:
21527
diff
changeset
|
223 |
val constdecl = |
28083
103d9282a946
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
27877
diff
changeset
|
224 |
P.binding -- |
21601
6588b947d631
simplified syntax for 'definition', 'abbreviation';
wenzelm
parents:
21527
diff
changeset
|
225 |
(P.where_ >> K (NONE, NoSyn) || |
6588b947d631
simplified syntax for 'definition', 'abbreviation';
wenzelm
parents:
21527
diff
changeset
|
226 |
P.$$$ "::" |-- P.!!! ((P.typ >> SOME) -- P.opt_mixfix' --| P.where_) || |
6588b947d631
simplified syntax for 'definition', 'abbreviation';
wenzelm
parents:
21527
diff
changeset
|
227 |
Scan.ahead (P.$$$ "(") |-- P.!!! (P.mixfix' --| P.where_ >> pair NONE)) |
6588b947d631
simplified syntax for 'definition', 'abbreviation';
wenzelm
parents:
21527
diff
changeset
|
228 |
>> P.triple2; |
6588b947d631
simplified syntax for 'definition', 'abbreviation';
wenzelm
parents:
21527
diff
changeset
|
229 |
|
22117 | 230 |
val constdef = Scan.option constdecl -- (SpecParse.opt_thm_name ":" -- P.prop); |
5832 | 231 |
|
24868 | 232 |
val _ = |
26988
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
233 |
OuterSyntax.local_theory "definition" "constant definition" K.thy_decl |
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
234 |
(constdef >> (fn args => #2 o Specification.definition_cmd args)); |
18780 | 235 |
|
24868 | 236 |
val _ = |
26988
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
237 |
OuterSyntax.local_theory "abbreviation" "constant abbreviation" K.thy_decl |
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
238 |
(opt_mode -- (Scan.option constdecl -- P.prop) |
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
239 |
>> (fn (mode, args) => Specification.abbreviation_cmd mode args)); |
19659 | 240 |
|
24868 | 241 |
val _ = |
26988
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
242 |
OuterSyntax.local_theory "notation" "add notation for constants / fixed variables" K.thy_decl |
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
243 |
(opt_mode -- P.and_list1 (P.xname -- SpecParse.locale_mixfix) |
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
244 |
>> (fn (mode, args) => Specification.notation_cmd true mode args)); |
24950 | 245 |
|
246 |
val _ = |
|
26988
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
247 |
OuterSyntax.local_theory "no_notation" "delete notation for constants / fixed variables" K.thy_decl |
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
248 |
(opt_mode -- P.and_list1 (P.xname -- SpecParse.locale_mixfix) |
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
249 |
>> (fn (mode, args) => Specification.notation_cmd false mode args)); |
19076 | 250 |
|
5832 | 251 |
|
18616 | 252 |
(* constant specifications *) |
253 |
||
24868 | 254 |
val _ = |
26988
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
255 |
OuterSyntax.local_theory "axiomatization" "axiomatic constant specification" K.thy_decl |
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
256 |
(Scan.optional P.fixes [] -- |
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
257 |
Scan.optional (P.where_ |-- P.!!! (P.and_list1 SpecParse.spec)) [] |
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
258 |
>> (fn (x, y) => #2 o Specification.axiomatization_cmd x y)); |
18616 | 259 |
|
260 |
||
5914 | 261 |
(* theorems *) |
262 |
||
26988
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
263 |
fun theorems kind = |
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
264 |
SpecParse.name_facts >> (fn args => #2 o Specification.theorems_cmd kind args); |
12712 | 265 |
|
24868 | 266 |
val _ = |
26988
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
267 |
OuterSyntax.local_theory "theorems" "define theorems" K.thy_decl (theorems Thm.theoremK); |
5914 | 268 |
|
24868 | 269 |
val _ = |
26988
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
270 |
OuterSyntax.local_theory "lemmas" "define lemmas" K.thy_decl (theorems Thm.lemmaK); |
5914 | 271 |
|
24868 | 272 |
val _ = |
26988
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
273 |
OuterSyntax.local_theory "declare" "declare theorems (improper)" K.thy_decl |
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
274 |
(P.and_list1 SpecParse.xthms1 |
28083
103d9282a946
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
27877
diff
changeset
|
275 |
>> (fn args => #2 o Specification.theorems_cmd "" [((Name.no_binding, []), flat args)])); |
9589 | 276 |
|
5914 | 277 |
|
5832 | 278 |
(* name space entry path *) |
279 |
||
24868 | 280 |
val _ = |
6723 | 281 |
OuterSyntax.command "global" "disable prefixing of theory name" K.thy_decl |
16447 | 282 |
(Scan.succeed (Toplevel.theory Sign.root_path)); |
5832 | 283 |
|
24868 | 284 |
val _ = |
6723 | 285 |
OuterSyntax.command "local" "enable prefixing of theory name" K.thy_decl |
16447 | 286 |
(Scan.succeed (Toplevel.theory Sign.local_path)); |
8723 | 287 |
|
24868 | 288 |
val _ = |
8723 | 289 |
OuterSyntax.command "hide" "hide names from given name space" K.thy_decl |
17397 | 290 |
((P.opt_keyword "open" >> not) -- (P.name -- Scan.repeat1 P.xname) >> |
26672 | 291 |
(Toplevel.theory o uncurry IsarCmd.hide_names)); |
5832 | 292 |
|
293 |
||
294 |
(* use ML text *) |
|
295 |
||
24868 | 296 |
val _ = |
26490 | 297 |
OuterSyntax.command "use" "eval ML text from file" (K.tag_ml K.thy_decl) |
298 |
(P.path >> (Toplevel.generic_theory o ThyInfo.exec_file false)); |
|
5832 | 299 |
|
24868 | 300 |
val _ = |
26490 | 301 |
OuterSyntax.command "ML" "eval ML text (diagnostic)" (K.tag_ml K.thy_decl) |
27877 | 302 |
(P.ML_source >> (fn (txt, pos) => |
26490 | 303 |
Toplevel.generic_theory (ML_Context.exec (fn () => ML_Context.eval true pos txt)))); |
7891 | 304 |
|
24868 | 305 |
val _ = |
26396 | 306 |
OuterSyntax.command "ML_val" "eval ML text (diagnostic)" (K.tag_ml K.diag) |
27877 | 307 |
(P.ML_source >> IsarCmd.ml_diag true); |
26396 | 308 |
|
309 |
val _ = |
|
310 |
OuterSyntax.command "ML_command" "silently eval ML text (diagnostic)" (K.tag_ml K.diag) |
|
27877 | 311 |
(P.ML_source >> (Toplevel.no_timing oo IsarCmd.ml_diag false)); |
5832 | 312 |
|
24868 | 313 |
val _ = |
17068 | 314 |
OuterSyntax.command "setup" "apply ML theory setup" (K.tag_ml K.thy_decl) |
27877 | 315 |
(P.ML_source >> (Toplevel.theory o IsarCmd.generic_setup)); |
5832 | 316 |
|
24868 | 317 |
val _ = |
17068 | 318 |
OuterSyntax.command "method_setup" "define proof method in ML" (K.tag_ml K.thy_decl) |
27877 | 319 |
(P.name -- P.!!! (P.$$$ "=" |-- P.ML_source -- P.text) |
26385
ae7564661e76
ML runtime compilation: pass position, tuned signature;
wenzelm
parents:
26248
diff
changeset
|
320 |
>> (fn (name, (txt, cmt)) => Toplevel.theory (Method.method_setup name txt cmt))); |
9197 | 321 |
|
24868 | 322 |
val _ = |
26988
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
323 |
OuterSyntax.local_theory "declaration" "generic ML declaration" (K.tag_ml K.thy_decl) |
27877 | 324 |
(P.ML_source >> IsarCmd.declaration); |
22088 | 325 |
|
24868 | 326 |
val _ = |
26988
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
327 |
OuterSyntax.local_theory "simproc_setup" "define simproc in ML" (K.tag_ml K.thy_decl) |
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
328 |
(P.name -- (P.$$$ "(" |-- P.enum1 "|" P.term --| P.$$$ ")" --| P.$$$ "=") -- |
27877 | 329 |
P.ML_source -- Scan.optional (P.$$$ "identifier" |-- Scan.repeat1 P.xname) [] |
26988
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
330 |
>> (fn (((a, b), c), d) => IsarCmd.simproc_setup a b c d)); |
22202 | 331 |
|
5832 | 332 |
|
333 |
(* translation functions *) |
|
334 |
||
27877 | 335 |
val trfun = P.opt_keyword "advanced" -- P.ML_source; |
14642 | 336 |
|
24868 | 337 |
val _ = |
17068 | 338 |
OuterSyntax.command "parse_ast_translation" "install parse ast translation functions" |
339 |
(K.tag_ml K.thy_decl) |
|
22117 | 340 |
(trfun >> (Toplevel.theory o IsarCmd.parse_ast_translation)); |
5832 | 341 |
|
24868 | 342 |
val _ = |
17068 | 343 |
OuterSyntax.command "parse_translation" "install parse translation functions" |
344 |
(K.tag_ml K.thy_decl) |
|
22117 | 345 |
(trfun >> (Toplevel.theory o IsarCmd.parse_translation)); |
5832 | 346 |
|
24868 | 347 |
val _ = |
17068 | 348 |
OuterSyntax.command "print_translation" "install print translation functions" |
349 |
(K.tag_ml K.thy_decl) |
|
22117 | 350 |
(trfun >> (Toplevel.theory o IsarCmd.print_translation)); |
5832 | 351 |
|
24868 | 352 |
val _ = |
6370 | 353 |
OuterSyntax.command "typed_print_translation" "install typed print translation functions" |
17068 | 354 |
(K.tag_ml K.thy_decl) |
22117 | 355 |
(trfun >> (Toplevel.theory o IsarCmd.typed_print_translation)); |
5832 | 356 |
|
24868 | 357 |
val _ = |
17068 | 358 |
OuterSyntax.command "print_ast_translation" "install print ast translation functions" |
359 |
(K.tag_ml K.thy_decl) |
|
22117 | 360 |
(trfun >> (Toplevel.theory o IsarCmd.print_ast_translation)); |
5832 | 361 |
|
362 |
||
363 |
(* oracles *) |
|
364 |
||
24868 | 365 |
val _ = |
17068 | 366 |
OuterSyntax.command "oracle" "declare oracle" (K.tag_ml K.thy_decl) |
27877 | 367 |
(P.name -- (P.$$$ "(" |-- P.ML_source --| P.$$$ ")" --| P.$$$ "=") |
368 |
-- P.ML_source >> (fn ((x, y), z) => Toplevel.theory (IsarCmd.oracle x y z))); |
|
5832 | 369 |
|
370 |
||
21306
7ab6e95e6b0b
turned 'context' into plain thy_decl, discontinued thy_switch;
wenzelm
parents:
21269
diff
changeset
|
371 |
(* local theories *) |
7ab6e95e6b0b
turned 'context' into plain thy_decl, discontinued thy_switch;
wenzelm
parents:
21269
diff
changeset
|
372 |
|
24868 | 373 |
val _ = |
21306
7ab6e95e6b0b
turned 'context' into plain thy_decl, discontinued thy_switch;
wenzelm
parents:
21269
diff
changeset
|
374 |
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
|
375 |
(P.name --| P.begin >> (fn name => |
25290 | 376 |
Toplevel.print o Toplevel.begin_local_theory true (TheoryTarget.context name))); |
21306
7ab6e95e6b0b
turned 'context' into plain thy_decl, discontinued thy_switch;
wenzelm
parents:
21269
diff
changeset
|
377 |
|
7ab6e95e6b0b
turned 'context' into plain thy_decl, discontinued thy_switch;
wenzelm
parents:
21269
diff
changeset
|
378 |
|
12061 | 379 |
(* locales *) |
380 |
||
12758 | 381 |
val locale_val = |
24868 | 382 |
SpecParse.locale_expr -- |
22117 | 383 |
Scan.optional (P.$$$ "+" |-- P.!!! (Scan.repeat1 SpecParse.context_element)) [] || |
24868 | 384 |
Scan.repeat1 SpecParse.context_element >> pair Locale.empty; |
12061 | 385 |
|
24868 | 386 |
val _ = |
12061 | 387 |
OuterSyntax.command "locale" "define named proof context" K.thy_decl |
27681 | 388 |
(P.name -- Scan.optional (P.$$$ "=" |-- P.!!! locale_val) (Locale.empty, []) -- P.opt_begin |
389 |
>> (fn ((name, (expr, elems)), begin) => |
|
21843 | 390 |
(begin ? Toplevel.print) o Toplevel.begin_local_theory begin |
27681 | 391 |
(Locale.add_locale "" name expr elems #-> TheoryTarget.begin))); |
12061 | 392 |
|
24868 | 393 |
val _ = |
15598
4ab52355bb53
Registrations of global locale interpretations: improved, better naming.
ballarin
parents:
15596
diff
changeset
|
394 |
OuterSyntax.command "interpretation" |
16736
1e792b32abef
Preparations for interpretation of locales in locales.
ballarin
parents:
16604
diff
changeset
|
395 |
"prove and register interpretation of locale expression in theory or locale" K.thy_goal |
22117 | 396 |
(P.xname --| (P.$$$ "\\<subseteq>" || P.$$$ "<") -- P.!!! SpecParse.locale_expr |
20365 | 397 |
>> (Toplevel.print oo (Toplevel.theory_to_proof o Locale.interpretation_in_locale I)) || |
22866 | 398 |
SpecParse.opt_thm_name ":" -- SpecParse.locale_expr -- SpecParse.locale_insts |
28083
103d9282a946
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
27877
diff
changeset
|
399 |
>> (fn (((name, atts), expr), insts) => Toplevel.print o |
103d9282a946
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
27877
diff
changeset
|
400 |
Toplevel.theory_to_proof |
103d9282a946
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
27877
diff
changeset
|
401 |
(Locale.interpretation I ((true, Name.name_of name), atts) expr insts))); |
12061 | 402 |
|
24868 | 403 |
val _ = |
15624
484178635bd8
Further work on interpretation commands. New command `interpret' for
ballarin
parents:
15598
diff
changeset
|
404 |
OuterSyntax.command "interpret" |
17068 | 405 |
"prove and register interpretation of locale expression in proof context" |
406 |
(K.tag_proof K.prf_goal) |
|
22117 | 407 |
(SpecParse.opt_thm_name ":" -- SpecParse.locale_expr -- SpecParse.locale_insts |
28083
103d9282a946
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
27877
diff
changeset
|
408 |
>> (fn (((name, atts), expr), insts) => Toplevel.print o |
103d9282a946
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
27877
diff
changeset
|
409 |
Toplevel.proof' |
103d9282a946
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
27877
diff
changeset
|
410 |
(Locale.interpret Seq.single ((true, Name.name_of name), atts) expr insts))); |
15703 | 411 |
|
412 |
||
22299 | 413 |
(* classes *) |
414 |
||
24868 | 415 |
val class_val = |
416 |
SpecParse.class_expr -- |
|
26248 | 417 |
Scan.optional (P.$$$ "+" |-- P.!!! (Scan.repeat1 SpecParse.context_element)) [] || |
418 |
Scan.repeat1 SpecParse.context_element >> pair []; |
|
22299 | 419 |
|
24868 | 420 |
val _ = |
421 |
OuterSyntax.command "class" "define type class" K.thy_decl |
|
26516 | 422 |
(P.name -- (P.$$$ "=" |-- class_val) -- P.opt_begin |
423 |
>> (fn ((name, (supclasses, elems)), begin) => |
|
24938 | 424 |
(begin ? Toplevel.print) o Toplevel.begin_local_theory begin |
26516 | 425 |
(Class.class_cmd name supclasses elems #-> TheoryTarget.begin))); |
22299 | 426 |
|
24868 | 427 |
val _ = |
26988
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
428 |
OuterSyntax.local_theory_to_proof "subclass" "prove a subclass relation" K.thy_goal |
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
429 |
(P.xname >> Subclass.subclass_cmd); |
24914
95cda5dd58d5
added proper subclass concept; improved class target
haftmann
parents:
24871
diff
changeset
|
430 |
|
95cda5dd58d5
added proper subclass concept; improved class target
haftmann
parents:
24871
diff
changeset
|
431 |
val _ = |
25519 | 432 |
OuterSyntax.command "instantiation" "instantiate and prove type arity" K.thy_decl |
25536 | 433 |
(P.multi_arity --| P.begin |
25462 | 434 |
>> (fn arities => Toplevel.print o |
435 |
Toplevel.begin_local_theory true (Instance.instantiation_cmd arities))); |
|
24589 | 436 |
|
25485 | 437 |
val _ = |
438 |
OuterSyntax.command "instance" "prove type arity or subclass relation" K.thy_goal |
|
439 |
((P.xname -- ((P.$$$ "\\<subseteq>" || P.$$$ "<") |-- P.!!! P.xname) >> Class.classrel_cmd || |
|
27113 | 440 |
P.arity >> Class.instance_arity_cmd) |
25485 | 441 |
>> (Toplevel.print oo Toplevel.theory_to_proof) |
442 |
|| Scan.succeed (Toplevel.print o Toplevel.local_theory_to_proof NONE (Class.instantiation_instance I))); |
|
22299 | 443 |
|
444 |
||
25519 | 445 |
(* arbitrary overloading *) |
446 |
||
447 |
val _ = |
|
448 |
OuterSyntax.command "overloading" "overloaded definitions" K.thy_decl |
|
25861 | 449 |
(Scan.repeat1 (P.name --| (P.$$$ "\\<equiv>" || P.$$$ "==") -- P.term -- |
26048 | 450 |
Scan.optional (P.$$$ "(" |-- (P.$$$ "unchecked" >> K false) --| P.$$$ ")") true |
451 |
>> P.triple1) --| P.begin |
|
25519 | 452 |
>> (fn operations => Toplevel.print o |
453 |
Toplevel.begin_local_theory true (TheoryTarget.overloading_cmd operations))); |
|
454 |
||
455 |
||
22866 | 456 |
(* code generation *) |
457 |
||
24868 | 458 |
val _ = |
22866 | 459 |
OuterSyntax.command "code_datatype" "define set of code datatype constructors" K.thy_decl |
24423
ae9cd0e92423
overloaded definitions accompanied by explicit constants
haftmann
parents:
24314
diff
changeset
|
460 |
(Scan.repeat1 P.term >> (Toplevel.theory o Code.add_datatype_cmd)); |
22866 | 461 |
|
462 |
||
5832 | 463 |
|
464 |
(** proof commands **) |
|
465 |
||
466 |
(* statements *) |
|
467 |
||
17353 | 468 |
fun gen_theorem kind = |
26988
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
469 |
OuterSyntax.local_theory_to_proof' kind ("state " ^ kind) K.thy_goal |
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
470 |
(Scan.optional (SpecParse.opt_thm_name ":" --| |
28083
103d9282a946
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
27877
diff
changeset
|
471 |
Scan.ahead (SpecParse.locale_keyword || SpecParse.statement_keyword)) (Name.no_binding, []) -- |
26988
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
472 |
SpecParse.general_statement >> (fn (a, (elems, concl)) => |
742e26213212
more uniform treatment of OuterSyntax.local_theory commands;
wenzelm
parents:
26888
diff
changeset
|
473 |
(Specification.theorem_cmd kind NONE (K I) a elems concl))); |
5832 | 474 |
|
24868 | 475 |
val _ = gen_theorem Thm.theoremK; |
476 |
val _ = gen_theorem Thm.lemmaK; |
|
477 |
val _ = gen_theorem Thm.corollaryK; |
|
5832 | 478 |
|
24868 | 479 |
val _ = |
17353 | 480 |
OuterSyntax.command "have" "state local goal" |
481 |
(K.tag_proof K.prf_goal) |
|
22117 | 482 |
(SpecParse.statement >> ((Toplevel.print oo Toplevel.proof') o IsarCmd.have)); |
17353 | 483 |
|
24868 | 484 |
val _ = |
17353 | 485 |
OuterSyntax.command "hence" "abbreviates \"then have\"" |
486 |
(K.tag_proof K.prf_goal) |
|
22117 | 487 |
(SpecParse.statement >> ((Toplevel.print oo Toplevel.proof') o IsarCmd.hence)); |
17353 | 488 |
|
24868 | 489 |
val _ = |
17068 | 490 |
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
|
491 |
(K.tag_proof K.prf_asm_goal) |
22117 | 492 |
(SpecParse.statement >> ((Toplevel.print oo Toplevel.proof') o IsarCmd.show)); |
5832 | 493 |
|
24868 | 494 |
val _ = |
17068 | 495 |
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
|
496 |
(K.tag_proof K.prf_asm_goal) |
22117 | 497 |
(SpecParse.statement >> ((Toplevel.print oo Toplevel.proof') o IsarCmd.thus)); |
6501 | 498 |
|
5832 | 499 |
|
5914 | 500 |
(* facts *) |
5832 | 501 |
|
22117 | 502 |
val facts = P.and_list1 SpecParse.xthms1; |
9197 | 503 |
|
24868 | 504 |
val _ = |
17068 | 505 |
OuterSyntax.command "then" "forward chaining" |
506 |
(K.tag_proof K.prf_chain) |
|
17900 | 507 |
(Scan.succeed (Toplevel.print o Toplevel.proof Proof.chain)); |
5832 | 508 |
|
24868 | 509 |
val _ = |
17068 | 510 |
OuterSyntax.command "from" "forward chaining from given facts" |
511 |
(K.tag_proof K.prf_chain) |
|
17900 | 512 |
(facts >> (Toplevel.print oo (Toplevel.proof o Proof.from_thmss))); |
5914 | 513 |
|
24868 | 514 |
val _ = |
17068 | 515 |
OuterSyntax.command "with" "forward chaining from given and current facts" |
516 |
(K.tag_proof K.prf_chain) |
|
17900 | 517 |
(facts >> (Toplevel.print oo (Toplevel.proof o Proof.with_thmss))); |
6878 | 518 |
|
24868 | 519 |
val _ = |
17068 | 520 |
OuterSyntax.command "note" "define facts" |
521 |
(K.tag_proof K.prf_decl) |
|
22117 | 522 |
(SpecParse.name_facts >> (Toplevel.print oo (Toplevel.proof o Proof.note_thmss))); |
5832 | 523 |
|
24868 | 524 |
val _ = |
17068 | 525 |
OuterSyntax.command "using" "augment goal facts" |
526 |
(K.tag_proof K.prf_decl) |
|
18544 | 527 |
(facts >> (Toplevel.print oo (Toplevel.proof o Proof.using))); |
528 |
||
24868 | 529 |
val _ = |
18544 | 530 |
OuterSyntax.command "unfolding" "unfold definitions in goal and facts" |
531 |
(K.tag_proof K.prf_decl) |
|
532 |
(facts >> (Toplevel.print oo (Toplevel.proof o Proof.unfolding))); |
|
12926 | 533 |
|
5832 | 534 |
|
535 |
(* proof context *) |
|
536 |
||
24868 | 537 |
val _ = |
17068 | 538 |
OuterSyntax.command "fix" "fix local variables (Skolem constants)" |
539 |
(K.tag_proof K.prf_asm) |
|
19844 | 540 |
(P.fixes >> (Toplevel.print oo (Toplevel.proof o Proof.fix))); |
11890 | 541 |
|
24868 | 542 |
val _ = |
17068 | 543 |
OuterSyntax.command "assume" "assume propositions" |
544 |
(K.tag_proof K.prf_asm) |
|
22117 | 545 |
(SpecParse.statement >> (Toplevel.print oo (Toplevel.proof o Proof.assume))); |
5832 | 546 |
|
24868 | 547 |
val _ = |
17068 | 548 |
OuterSyntax.command "presume" "assume propositions, to be established later" |
549 |
(K.tag_proof K.prf_asm) |
|
22117 | 550 |
(SpecParse.statement >> (Toplevel.print oo (Toplevel.proof o Proof.presume))); |
6850 | 551 |
|
24868 | 552 |
val _ = |
17068 | 553 |
OuterSyntax.command "def" "local definition" |
554 |
(K.tag_proof K.prf_asm) |
|
18308 | 555 |
(P.and_list1 |
22117 | 556 |
(SpecParse.opt_thm_name ":" -- |
28083
103d9282a946
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
27877
diff
changeset
|
557 |
((P.binding -- P.opt_mixfix) -- ((P.$$$ "\\<equiv>" || P.$$$ "==") |-- P.!!! P.termp))) |
18308 | 558 |
>> (Toplevel.print oo (Toplevel.proof o Proof.def))); |
6953 | 559 |
|
24868 | 560 |
val _ = |
11890 | 561 |
OuterSyntax.command "obtain" "generalized existence" |
17068 | 562 |
(K.tag_proof K.prf_asm_goal) |
22117 | 563 |
(P.parname -- Scan.optional (P.fixes --| P.where_) [] -- SpecParse.statement |
18895 | 564 |
>> (fn ((x, y), z) => Toplevel.print o Toplevel.proof' (Obtain.obtain x y z))); |
5832 | 565 |
|
24868 | 566 |
val _ = |
17854 | 567 |
OuterSyntax.command "guess" "wild guessing (unstructured)" |
568 |
(K.tag_proof K.prf_asm_goal) |
|
19844 | 569 |
(Scan.optional P.fixes [] >> (Toplevel.print oo (Toplevel.proof' o Obtain.guess))); |
17854 | 570 |
|
24868 | 571 |
val _ = |
17068 | 572 |
OuterSyntax.command "let" "bind text variables" |
573 |
(K.tag_proof K.prf_decl) |
|
27378 | 574 |
(P.and_list1 (P.and_list1 P.term -- (P.$$$ "=" |-- P.term)) |
17900 | 575 |
>> (Toplevel.print oo (Toplevel.proof o Proof.let_bind))); |
5832 | 576 |
|
11793
5f0ab6f5c280
support impromptu terminology of cases parameters;
wenzelm
parents:
11742
diff
changeset
|
577 |
val case_spec = |
15703 | 578 |
(P.$$$ "(" |-- P.!!! (P.xname -- Scan.repeat1 (P.maybe P.name) --| P.$$$ ")") || |
22117 | 579 |
P.xname >> rpair []) -- SpecParse.opt_attribs >> P.triple1; |
11793
5f0ab6f5c280
support impromptu terminology of cases parameters;
wenzelm
parents:
11742
diff
changeset
|
580 |
|
24868 | 581 |
val _ = |
17068 | 582 |
OuterSyntax.command "case" "invoke local context" |
583 |
(K.tag_proof K.prf_asm) |
|
17900 | 584 |
(case_spec >> (Toplevel.print oo (Toplevel.proof o Proof.invoke_case))); |
8370 | 585 |
|
5832 | 586 |
|
587 |
(* proof structure *) |
|
588 |
||
24868 | 589 |
val _ = |
17068 | 590 |
OuterSyntax.command "{" "begin explicit proof block" |
591 |
(K.tag_proof K.prf_open) |
|
17900 | 592 |
(Scan.succeed (Toplevel.print o Toplevel.proof Proof.begin_block)); |
5832 | 593 |
|
24868 | 594 |
val _ = |
17068 | 595 |
OuterSyntax.command "}" "end explicit proof block" |
596 |
(K.tag_proof K.prf_close) |
|
20305 | 597 |
(Scan.succeed (Toplevel.print o Toplevel.proof Proof.end_block)); |
6687 | 598 |
|
24868 | 599 |
val _ = |
17068 | 600 |
OuterSyntax.command "next" "enter next proof block" |
601 |
(K.tag_proof K.prf_block) |
|
17900 | 602 |
(Scan.succeed (Toplevel.print o Toplevel.proof Proof.next_block)); |
5832 | 603 |
|
604 |
||
605 |
(* end proof *) |
|
606 |
||
24868 | 607 |
val _ = |
17068 | 608 |
OuterSyntax.command "qed" "conclude (sub-)proof" |
609 |
(K.tag_proof K.qed_block) |
|
26676 | 610 |
(Scan.option Method.parse >> IsarCmd.qed); |
5832 | 611 |
|
24868 | 612 |
val _ = |
17068 | 613 |
OuterSyntax.command "by" "terminal backward proof" |
614 |
(K.tag_proof K.qed) |
|
26676 | 615 |
(Method.parse -- Scan.option Method.parse >> IsarCmd.terminal_proof); |
6404 | 616 |
|
24868 | 617 |
val _ = |
17068 | 618 |
OuterSyntax.command ".." "default proof" |
619 |
(K.tag_proof K.qed) |
|
26676 | 620 |
(Scan.succeed IsarCmd.default_proof); |
8966 | 621 |
|
24868 | 622 |
val _ = |
17068 | 623 |
OuterSyntax.command "." "immediate proof" |
624 |
(K.tag_proof K.qed) |
|
26676 | 625 |
(Scan.succeed IsarCmd.immediate_proof); |
6404 | 626 |
|
24868 | 627 |
val _ = |
17068 | 628 |
OuterSyntax.command "done" "done proof" |
629 |
(K.tag_proof K.qed) |
|
26676 | 630 |
(Scan.succeed IsarCmd.done_proof); |
5832 | 631 |
|
24868 | 632 |
val _ = |
25108 | 633 |
OuterSyntax.command "sorry" "skip proof (quick-and-dirty mode only!)" |
17068 | 634 |
(K.tag_proof K.qed) |
26676 | 635 |
(Scan.succeed IsarCmd.skip_proof); |
6888
d0c68ebdabc5
skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents:
6886
diff
changeset
|
636 |
|
24868 | 637 |
val _ = |
17068 | 638 |
OuterSyntax.command "oops" "forget proof" |
639 |
(K.tag_proof K.qed_global) |
|
18561 | 640 |
(Scan.succeed Toplevel.forget_proof); |
8210 | 641 |
|
5832 | 642 |
|
643 |
(* proof steps *) |
|
644 |
||
24868 | 645 |
val _ = |
17068 | 646 |
OuterSyntax.command "defer" "shuffle internal proof state" |
647 |
(K.tag_proof K.prf_script) |
|
17900 | 648 |
(Scan.option P.nat >> (Toplevel.print oo (Toplevel.proofs o Proof.defer))); |
8165 | 649 |
|
24868 | 650 |
val _ = |
17068 | 651 |
OuterSyntax.command "prefer" "shuffle internal proof state" |
652 |
(K.tag_proof K.prf_script) |
|
17900 | 653 |
(P.nat >> (Toplevel.print oo (Toplevel.proofs o Proof.prefer))); |
8165 | 654 |
|
24868 | 655 |
val _ = |
17068 | 656 |
OuterSyntax.command "apply" "initial refinement step (unstructured)" |
657 |
(K.tag_proof K.prf_script) |
|
22117 | 658 |
(Method.parse >> (Toplevel.print oo (Toplevel.proofs o Proof.apply))); |
5832 | 659 |
|
24868 | 660 |
val _ = |
17068 | 661 |
OuterSyntax.command "apply_end" "terminal refinement (unstructured)" |
662 |
(K.tag_proof K.prf_script) |
|
22117 | 663 |
(Method.parse >> (Toplevel.print oo (Toplevel.proofs o Proof.apply_end))); |
5832 | 664 |
|
24868 | 665 |
val _ = |
17068 | 666 |
OuterSyntax.command "proof" "backward proof" |
667 |
(K.tag_proof K.prf_block) |
|
22117 | 668 |
(Scan.option Method.parse >> (fn m => Toplevel.print o |
27563 | 669 |
Toplevel.actual_proof (ProofNode.applys (Proof.proof m)) o |
670 |
Toplevel.skip_proof (fn i => i + 1))); |
|
5832 | 671 |
|
672 |
||
6773 | 673 |
(* calculational proof commands *) |
674 |
||
6878 | 675 |
val calc_args = |
22117 | 676 |
Scan.option (P.$$$ "(" |-- P.!!! ((SpecParse.xthms1 --| P.$$$ ")"))); |
6878 | 677 |
|
24868 | 678 |
val _ = |
17068 | 679 |
OuterSyntax.command "also" "combine calculation and current facts" |
680 |
(K.tag_proof K.prf_decl) |
|
17900 | 681 |
(calc_args >> (Toplevel.proofs' o Calculation.also)); |
6773 | 682 |
|
24868 | 683 |
val _ = |
17068 | 684 |
OuterSyntax.command "finally" "combine calculation and current facts, exhibit result" |
685 |
(K.tag_proof K.prf_chain) |
|
22573 | 686 |
(calc_args >> (Toplevel.proofs' o Calculation.finally_)); |
6773 | 687 |
|
24868 | 688 |
val _ = |
17068 | 689 |
OuterSyntax.command "moreover" "augment calculation by current facts" |
690 |
(K.tag_proof K.prf_decl) |
|
17900 | 691 |
(Scan.succeed (Toplevel.proof' Calculation.moreover)); |
8562 | 692 |
|
24868 | 693 |
val _ = |
8588 | 694 |
OuterSyntax.command "ultimately" "augment calculation by current facts, exhibit result" |
17068 | 695 |
(K.tag_proof K.prf_chain) |
17900 | 696 |
(Scan.succeed (Toplevel.proof' Calculation.ultimately)); |
8588 | 697 |
|
6773 | 698 |
|
6742 | 699 |
(* proof navigation *) |
5944 | 700 |
|
24868 | 701 |
val _ = |
17068 | 702 |
OuterSyntax.command "back" "backtracking of proof command" |
703 |
(K.tag_proof K.prf_script) |
|
27563 | 704 |
(Scan.succeed (Toplevel.print o Toplevel.actual_proof ProofNode.back o Toplevel.skip_proof I)); |
6742 | 705 |
|
22744
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
haftmann
parents:
22573
diff
changeset
|
706 |
|
27614
f38c25d106a7
renamed IsarCmd.nested_command to OuterSyntax.prepare_command;
wenzelm
parents:
27575
diff
changeset
|
707 |
(* nested commands *) |
25578 | 708 |
|
27719
de34a576c756
Isar.command: explicitly set transaction position, as required for prepare_command errors;
wenzelm
parents:
27681
diff
changeset
|
709 |
val props_text = |
de34a576c756
Isar.command: explicitly set transaction position, as required for prepare_command errors;
wenzelm
parents:
27681
diff
changeset
|
710 |
Scan.optional P.properties [] -- P.position P.string >> (fn (props, (str, pos)) => |
de34a576c756
Isar.command: explicitly set transaction position, as required for prepare_command errors;
wenzelm
parents:
27681
diff
changeset
|
711 |
(Position.of_properties (Position.default_properties pos props), str)); |
de34a576c756
Isar.command: explicitly set transaction position, as required for prepare_command errors;
wenzelm
parents:
27681
diff
changeset
|
712 |
|
25578 | 713 |
val _ = |
714 |
OuterSyntax.improper_command "Isabelle.command" "nested Isabelle command" K.control |
|
27719
de34a576c756
Isar.command: explicitly set transaction position, as required for prepare_command errors;
wenzelm
parents:
27681
diff
changeset
|
715 |
(props_text :|-- (fn (pos, str) => |
27838
0340fd7cccc3
Isabelle.command: inline former OuterSyntax.prepare_command;
wenzelm
parents:
27831
diff
changeset
|
716 |
(case OuterSyntax.parse pos str of |
0340fd7cccc3
Isabelle.command: inline former OuterSyntax.prepare_command;
wenzelm
parents:
27831
diff
changeset
|
717 |
[tr] => Scan.succeed (K tr) |
0340fd7cccc3
Isabelle.command: inline former OuterSyntax.prepare_command;
wenzelm
parents:
27831
diff
changeset
|
718 |
| _ => Scan.fail_with (K "exactly one command expected")) |
0340fd7cccc3
Isabelle.command: inline former OuterSyntax.prepare_command;
wenzelm
parents:
27831
diff
changeset
|
719 |
handle ERROR msg => Scan.fail_with (K msg))); |
25578 | 720 |
|
721 |
||
27563 | 722 |
(* global history commands *) |
27525
ee2721e9e900
added Isar.undo, which emulates old-style undo on global tty state;
wenzelm
parents:
27494
diff
changeset
|
723 |
|
ee2721e9e900
added Isar.undo, which emulates old-style undo on global tty state;
wenzelm
parents:
27494
diff
changeset
|
724 |
val _ = |
27617
dee36037a832
added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents:
27614
diff
changeset
|
725 |
OuterSyntax.improper_command "Isar.command" "define command (Isar editor model)" K.control |
27719
de34a576c756
Isar.command: explicitly set transaction position, as required for prepare_command errors;
wenzelm
parents:
27681
diff
changeset
|
726 |
(props_text >> (fn (pos, str) => |
27827
03ed3519cf48
Isar.command: do not set position of enclosing transaction, to avoid of clash with the one being prepared here!
wenzelm
parents:
27719
diff
changeset
|
727 |
Toplevel.no_timing o Toplevel.imperative (fn () => |
27838
0340fd7cccc3
Isabelle.command: inline former OuterSyntax.prepare_command;
wenzelm
parents:
27831
diff
changeset
|
728 |
ignore (Isar.create_command (OuterSyntax.prepare_command pos str))))); |
27617
dee36037a832
added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents:
27614
diff
changeset
|
729 |
|
dee36037a832
added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents:
27614
diff
changeset
|
730 |
val _ = |
dee36037a832
added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents:
27614
diff
changeset
|
731 |
OuterSyntax.improper_command "Isar.insert" "insert command (Isar editor model)" K.control |
dee36037a832
added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents:
27614
diff
changeset
|
732 |
(P.string -- P.string >> (fn (prev, id) => |
dee36037a832
added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents:
27614
diff
changeset
|
733 |
Toplevel.no_timing o Toplevel.imperative (fn () => Isar.insert_command prev id))); |
dee36037a832
added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents:
27614
diff
changeset
|
734 |
|
dee36037a832
added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents:
27614
diff
changeset
|
735 |
val _ = |
dee36037a832
added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents:
27614
diff
changeset
|
736 |
OuterSyntax.improper_command "Isar.remove" "remove command (Isar editor model)" K.control |
dee36037a832
added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents:
27614
diff
changeset
|
737 |
(P.string >> (fn id => |
dee36037a832
added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents:
27614
diff
changeset
|
738 |
Toplevel.no_timing o Toplevel.imperative (fn () => Isar.remove_command id))); |
dee36037a832
added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents:
27614
diff
changeset
|
739 |
|
dee36037a832
added Isar.command, Isar.insert, Isar.remove (editor model);
wenzelm
parents:
27614
diff
changeset
|
740 |
val _ = |
27534
048294b251ee
activated new versions of init_toplevel, linear_undo, undo, undos_proof kill;
wenzelm
parents:
27531
diff
changeset
|
741 |
OuterSyntax.improper_command "init_toplevel" "init toplevel point-of-interest" K.control |
27531 | 742 |
(Scan.succeed (Toplevel.no_timing o Toplevel.imperative Isar.init_point)); |
743 |
||
744 |
val _ = |
|
27534
048294b251ee
activated new versions of init_toplevel, linear_undo, undo, undos_proof kill;
wenzelm
parents:
27531
diff
changeset
|
745 |
OuterSyntax.improper_command "linear_undo" "undo commands" K.control |
27529 | 746 |
(Scan.optional P.nat 1 >> |
747 |
(fn n => Toplevel.no_timing o Toplevel.imperative (fn () => Isar.linear_undo n))); |
|
748 |
||
749 |
val _ = |
|
27534
048294b251ee
activated new versions of init_toplevel, linear_undo, undo, undos_proof kill;
wenzelm
parents:
27531
diff
changeset
|
750 |
OuterSyntax.improper_command "undo" "undo commands (skipping closed proofs)" K.control |
27525
ee2721e9e900
added Isar.undo, which emulates old-style undo on global tty state;
wenzelm
parents:
27494
diff
changeset
|
751 |
(Scan.optional P.nat 1 >> |
ee2721e9e900
added Isar.undo, which emulates old-style undo on global tty state;
wenzelm
parents:
27494
diff
changeset
|
752 |
(fn n => Toplevel.no_timing o Toplevel.imperative (fn () => Isar.undo n))); |
ee2721e9e900
added Isar.undo, which emulates old-style undo on global tty state;
wenzelm
parents:
27494
diff
changeset
|
753 |
|
27531 | 754 |
val _ = |
27534
048294b251ee
activated new versions of init_toplevel, linear_undo, undo, undos_proof kill;
wenzelm
parents:
27531
diff
changeset
|
755 |
OuterSyntax.improper_command "undos_proof" "undo commands (skipping closed proofs)" K.control |
048294b251ee
activated new versions of init_toplevel, linear_undo, undo, undos_proof kill;
wenzelm
parents:
27531
diff
changeset
|
756 |
(Scan.optional P.nat 1 >> (fn n => Toplevel.no_timing o |
048294b251ee
activated new versions of init_toplevel, linear_undo, undo, undos_proof kill;
wenzelm
parents:
27531
diff
changeset
|
757 |
Toplevel.keep (fn state => |
048294b251ee
activated new versions of init_toplevel, linear_undo, undo, undos_proof kill;
wenzelm
parents:
27531
diff
changeset
|
758 |
if Toplevel.is_proof state then (Isar.undo n; Isar.print ()) else raise Toplevel.UNDEF))); |
048294b251ee
activated new versions of init_toplevel, linear_undo, undo, undos_proof kill;
wenzelm
parents:
27531
diff
changeset
|
759 |
|
048294b251ee
activated new versions of init_toplevel, linear_undo, undo, undos_proof kill;
wenzelm
parents:
27531
diff
changeset
|
760 |
val _ = |
27563 | 761 |
OuterSyntax.improper_command "cannot_undo" "partial undo -- Proof General legacy" K.control |
762 |
(P.name >> |
|
763 |
(fn "end" => Toplevel.no_timing o Toplevel.imperative (fn () => Isar.undo 1) |
|
764 |
| txt => Toplevel.imperative (fn () => error ("Cannot undo " ^ quote txt)))); |
|
765 |
||
766 |
val _ = |
|
27534
048294b251ee
activated new versions of init_toplevel, linear_undo, undo, undos_proof kill;
wenzelm
parents:
27531
diff
changeset
|
767 |
OuterSyntax.improper_command "kill" "kill partial proof or theory development" K.control |
27531 | 768 |
(Scan.succeed (Toplevel.no_timing o Toplevel.imperative Isar.kill)); |
769 |
||
27525
ee2721e9e900
added Isar.undo, which emulates old-style undo on global tty state;
wenzelm
parents:
27494
diff
changeset
|
770 |
|
22744
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
haftmann
parents:
22573
diff
changeset
|
771 |
|
5832 | 772 |
(** diagnostic commands (for interactive mode only) **) |
773 |
||
8464 | 774 |
val opt_modes = Scan.optional (P.$$$ "(" |-- P.!!! (Scan.repeat1 P.xname --| P.$$$ ")")) []; |
20621 | 775 |
val opt_bang = Scan.optional (P.$$$ "!" >> K true) false; |
8464 | 776 |
|
24868 | 777 |
val _ = |
7124 | 778 |
OuterSyntax.improper_command "pretty_setmargin" "change default margin for pretty printing" |
9010 | 779 |
K.diag (P.nat >> (Toplevel.no_timing oo IsarCmd.pretty_setmargin)); |
7124 | 780 |
|
24868 | 781 |
val _ = |
21714 | 782 |
OuterSyntax.improper_command "help" "print outer syntax commands" K.diag |
24871 | 783 |
(Scan.succeed (Toplevel.no_timing o Toplevel.imperative OuterSyntax.print_outer_syntax)); |
21714 | 784 |
|
24868 | 785 |
val _ = |
21714 | 786 |
OuterSyntax.improper_command "print_commands" "print outer syntax commands" K.diag |
24871 | 787 |
(Scan.succeed (Toplevel.no_timing o Toplevel.imperative OuterSyntax.print_outer_syntax)); |
5832 | 788 |
|
24868 | 789 |
val _ = |
24115 | 790 |
OuterSyntax.improper_command "print_configs" "print configuration options" K.diag |
791 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_configs)); |
|
23989 | 792 |
|
24868 | 793 |
val _ = |
7308 | 794 |
OuterSyntax.improper_command "print_context" "print theory context name" K.diag |
9010 | 795 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_context)); |
7308 | 796 |
|
24868 | 797 |
val _ = |
6723 | 798 |
OuterSyntax.improper_command "print_theory" "print logical theory contents (verbose!)" K.diag |
20621 | 799 |
(opt_bang >> (Toplevel.no_timing oo IsarCmd.print_theory)); |
5832 | 800 |
|
24868 | 801 |
val _ = |
21726 | 802 |
OuterSyntax.improper_command "print_syntax" "print inner syntax of context (verbose!)" K.diag |
9010 | 803 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_syntax)); |
5832 | 804 |
|
24868 | 805 |
val _ = |
21726 | 806 |
OuterSyntax.improper_command "print_abbrevs" "print constant abbreviation of context" K.diag |
807 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_abbrevs)); |
|
808 |
||
24868 | 809 |
val _ = |
17068 | 810 |
OuterSyntax.improper_command "print_theorems" |
811 |
"print theorems of local theory or proof context" K.diag |
|
9010 | 812 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_theorems)); |
5881 | 813 |
|
24868 | 814 |
val _ = |
12061 | 815 |
OuterSyntax.improper_command "print_locales" "print locales of this theory" K.diag |
816 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_locales)); |
|
817 |
||
24868 | 818 |
val _ = |
22744
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
haftmann
parents:
22573
diff
changeset
|
819 |
OuterSyntax.improper_command "print_classes" "print classes of this theory" K.diag |
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
haftmann
parents:
22573
diff
changeset
|
820 |
(Scan.succeed (Toplevel.no_timing o Toplevel.unknown_theory |
24219 | 821 |
o Toplevel.keep (Class.print_classes o Toplevel.theory_of))); |
22744
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
haftmann
parents:
22573
diff
changeset
|
822 |
|
24868 | 823 |
val _ = |
15596 | 824 |
OuterSyntax.improper_command "print_locale" "print locale expression in this theory" K.diag |
20621 | 825 |
(opt_bang -- locale_val >> (Toplevel.no_timing oo IsarCmd.print_locale)); |
12061 | 826 |
|
24868 | 827 |
val _ = |
15598
4ab52355bb53
Registrations of global locale interpretations: improved, better naming.
ballarin
parents:
15596
diff
changeset
|
828 |
OuterSyntax.improper_command "print_interps" |
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16074
diff
changeset
|
829 |
"print interpretations of named locale" K.diag |
18670 | 830 |
(Scan.optional (P.$$$ "!" >> K true) false -- P.xname |
831 |
>> (Toplevel.no_timing oo uncurry IsarCmd.print_registrations)); |
|
15596 | 832 |
|
24868 | 833 |
val _ = |
12061 | 834 |
OuterSyntax.improper_command "print_attributes" "print attributes of this theory" K.diag |
9010 | 835 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_attributes)); |
5832 | 836 |
|
24868 | 837 |
val _ = |
16027 | 838 |
OuterSyntax.improper_command "print_simpset" "print context of Simplifier" K.diag |
839 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_simpset)); |
|
840 |
||
24868 | 841 |
val _ = |
12383 | 842 |
OuterSyntax.improper_command "print_rules" "print intro/elim rules" K.diag |
843 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_rules)); |
|
844 |
||
24868 | 845 |
val _ = |
11666 | 846 |
OuterSyntax.improper_command "print_trans_rules" "print transitivity rules" K.diag |
9221 | 847 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_trans_rules)); |
848 |
||
24868 | 849 |
val _ = |
12061 | 850 |
OuterSyntax.improper_command "print_methods" "print methods of this theory" K.diag |
9010 | 851 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_methods)); |
5832 | 852 |
|
24868 | 853 |
val _ = |
9221 | 854 |
OuterSyntax.improper_command "print_antiquotations" "print antiquotations (global)" K.diag |
855 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_antiquotations)); |
|
856 |
||
24868 | 857 |
val _ = |
22485 | 858 |
OuterSyntax.improper_command "thy_deps" "visualize theory dependencies" |
859 |
K.diag (Scan.succeed (Toplevel.no_timing o IsarCmd.thy_deps)); |
|
860 |
||
24868 | 861 |
val _ = |
20574 | 862 |
OuterSyntax.improper_command "class_deps" "visualize class dependencies" |
863 |
K.diag (Scan.succeed (Toplevel.no_timing o IsarCmd.class_deps)); |
|
864 |
||
24868 | 865 |
val _ = |
9454 | 866 |
OuterSyntax.improper_command "thm_deps" "visualize theorem dependencies" |
22117 | 867 |
K.diag (SpecParse.xthms1 >> (Toplevel.no_timing oo IsarCmd.thm_deps)); |
9454 | 868 |
|
22866 | 869 |
local |
870 |
||
16027 | 871 |
val criterion = |
872 |
P.reserved "name" |-- P.!!! (P.$$$ ":" |-- P.xname) >> FindTheorems.Name || |
|
873 |
P.reserved "intro" >> K FindTheorems.Intro || |
|
874 |
P.reserved "elim" >> K FindTheorems.Elim || |
|
875 |
P.reserved "dest" >> K FindTheorems.Dest || |
|
16074 | 876 |
P.reserved "simp" |-- P.!!! (P.$$$ ":" |-- P.term) >> FindTheorems.Simp || |
16027 | 877 |
P.term >> FindTheorems.Pattern; |
878 |
||
22866 | 879 |
val options = |
880 |
Scan.optional |
|
881 |
(P.$$$ "(" |-- |
|
882 |
P.!!! (Scan.option P.nat -- Scan.optional (P.reserved "with_dups" >> K false) true |
|
883 |
--| P.$$$ ")")) (NONE, true); |
|
884 |
in |
|
885 |
||
24868 | 886 |
val _ = |
22866 | 887 |
OuterSyntax.improper_command "find_theorems" "print theorems meeting specified criteria" K.diag |
888 |
(options -- Scan.repeat (((Scan.option P.minus >> is_none) -- criterion)) |
|
17219
515badbfc4d6
renamed 'thms_containing' to 'find_theorems' -- keep old version for the time being;
wenzelm
parents:
17142
diff
changeset
|
889 |
>> (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
|
890 |
|
22866 | 891 |
end; |
892 |
||
24868 | 893 |
val _ = |
6723 | 894 |
OuterSyntax.improper_command "print_binds" "print term bindings of proof context" K.diag |
9010 | 895 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_binds)); |
5832 | 896 |
|
24868 | 897 |
val _ = |
8370 | 898 |
OuterSyntax.improper_command "print_facts" "print facts of proof context" K.diag |
21004 | 899 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_facts)); |
5832 | 900 |
|
24868 | 901 |
val _ = |
8370 | 902 |
OuterSyntax.improper_command "print_cases" "print cases of proof context" K.diag |
9010 | 903 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.print_cases)); |
8370 | 904 |
|
24868 | 905 |
val _ = |
19269 | 906 |
OuterSyntax.improper_command "print_statement" "print theorems as long statements" K.diag |
22117 | 907 |
(opt_modes -- SpecParse.xthms1 >> (Toplevel.no_timing oo IsarCmd.print_stmts)); |
19269 | 908 |
|
24868 | 909 |
val _ = |
8464 | 910 |
OuterSyntax.improper_command "thm" "print theorems" K.diag |
22117 | 911 |
(opt_modes -- SpecParse.xthms1 >> (Toplevel.no_timing oo IsarCmd.print_thms)); |
5832 | 912 |
|
24868 | 913 |
val _ = |
11524
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11101
diff
changeset
|
914 |
OuterSyntax.improper_command "prf" "print proof terms of theorems" K.diag |
22866 | 915 |
(opt_modes -- Scan.option SpecParse.xthms1 |
916 |
>> (Toplevel.no_timing oo IsarCmd.print_prfs false)); |
|
11524
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11101
diff
changeset
|
917 |
|
24868 | 918 |
val _ = |
11524
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11101
diff
changeset
|
919 |
OuterSyntax.improper_command "full_prf" "print full proof terms of theorems" K.diag |
22117 | 920 |
(opt_modes -- Scan.option SpecParse.xthms1 >> (Toplevel.no_timing oo IsarCmd.print_prfs true)); |
11524
197f2e14a714
Added functions for printing primitive proof terms.
berghofe
parents:
11101
diff
changeset
|
921 |
|
24868 | 922 |
val _ = |
6723 | 923 |
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
|
924 |
(opt_modes -- P.term >> (Toplevel.no_timing oo IsarCmd.print_prop)); |
5832 | 925 |
|
24868 | 926 |
val _ = |
6723 | 927 |
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
|
928 |
(opt_modes -- P.term >> (Toplevel.no_timing oo IsarCmd.print_term)); |
5832 | 929 |
|
24868 | 930 |
val _ = |
6723 | 931 |
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
|
932 |
(opt_modes -- P.typ >> (Toplevel.no_timing oo IsarCmd.print_type)); |
5832 | 933 |
|
24868 | 934 |
val _ = |
22744
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
haftmann
parents:
22573
diff
changeset
|
935 |
OuterSyntax.improper_command "print_codesetup" "print code generator setup of this theory" K.diag |
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
haftmann
parents:
22573
diff
changeset
|
936 |
(Scan.succeed |
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
haftmann
parents:
22573
diff
changeset
|
937 |
(Toplevel.no_timing o Toplevel.unknown_theory o Toplevel.keep |
24219 | 938 |
(Code.print_codesetup o Toplevel.theory_of))); |
5832 | 939 |
|
26184 | 940 |
val _ = |
941 |
OuterSyntax.improper_command "unused_thms" "find unused theorems" K.diag |
|
942 |
(Scan.option ((Scan.repeat1 (Scan.unless P.minus P.name) --| P.minus) -- |
|
943 |
Scan.option (Scan.repeat1 (Scan.unless P.minus P.name))) >> |
|
944 |
(Toplevel.no_timing oo IsarCmd.unused_thms)); |
|
945 |
||
5832 | 946 |
|
947 |
(** system commands (for interactive mode only) **) |
|
948 |
||
24868 | 949 |
val _ = |
8650 | 950 |
OuterSyntax.improper_command "cd" "change current working directory" K.diag |
14950 | 951 |
(P.path >> (Toplevel.no_timing oo IsarCmd.cd)); |
5832 | 952 |
|
24868 | 953 |
val _ = |
6723 | 954 |
OuterSyntax.improper_command "pwd" "print current working directory" K.diag |
9010 | 955 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.pwd)); |
5832 | 956 |
|
24868 | 957 |
val _ = |
6723 | 958 |
OuterSyntax.improper_command "use_thy" "use theory file" K.diag |
26404 | 959 |
(P.name >> (fn name => |
960 |
Toplevel.no_timing o Toplevel.imperative (fn () => ThyInfo.use_thy name))); |
|
5832 | 961 |
|
24868 | 962 |
val _ = |
7102 | 963 |
OuterSyntax.improper_command "touch_thy" "outdate theory, including descendants" K.diag |
27494 | 964 |
(P.name >> (fn name => |
965 |
Toplevel.no_timing o Toplevel.imperative (fn () => ThyInfo.touch_thy name))); |
|
7908 | 966 |
|
24868 | 967 |
val _ = |
7102 | 968 |
OuterSyntax.improper_command "remove_thy" "remove theory from loader database" K.diag |
27494 | 969 |
(P.name >> (fn name => |
970 |
Toplevel.no_timing o Toplevel.imperative (fn () => ThyInfo.remove_thy name))); |
|
7102 | 971 |
|
24868 | 972 |
val _ = |
7931 | 973 |
OuterSyntax.improper_command "kill_thy" "kill theory -- try to remove from loader database" |
27494 | 974 |
K.diag (P.name >> (fn name => |
975 |
Toplevel.no_timing o Toplevel.imperative (fn () => ThyInfo.kill_thy name))); |
|
7931 | 976 |
|
24868 | 977 |
val _ = |
14934 | 978 |
OuterSyntax.improper_command "display_drafts" "display raw source files with symbols" |
14950 | 979 |
K.diag (Scan.repeat1 P.path >> (Toplevel.no_timing oo IsarCmd.display_drafts)); |
14934 | 980 |
|
24868 | 981 |
val _ = |
14934 | 982 |
OuterSyntax.improper_command "print_drafts" "print raw source files with symbols" |
14950 | 983 |
K.diag (Scan.repeat1 P.path >> (Toplevel.no_timing oo IsarCmd.print_drafts)); |
14934 | 984 |
|
9731 | 985 |
val opt_limits = |
986 |
Scan.option P.nat -- Scan.option (P.$$$ "," |-- P.!!! P.nat); |
|
987 |
||
24868 | 988 |
val _ = |
8886 | 989 |
OuterSyntax.improper_command "pr" "print current proof state (if present)" K.diag |
9731 | 990 |
(opt_modes -- opt_limits >> (Toplevel.no_timing oo IsarCmd.pr)); |
7199 | 991 |
|
24868 | 992 |
val _ = |
7222 | 993 |
OuterSyntax.improper_command "disable_pr" "disable printing of toplevel state" K.diag |
9010 | 994 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.disable_pr)); |
5832 | 995 |
|
24868 | 996 |
val _ = |
7222 | 997 |
OuterSyntax.improper_command "enable_pr" "enable printing of toplevel state" K.diag |
9010 | 998 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.enable_pr)); |
7222 | 999 |
|
24868 | 1000 |
val _ = |
6723 | 1001 |
OuterSyntax.improper_command "commit" "commit current session to ML database" K.diag |
26490 | 1002 |
(P.opt_unit >> K (Toplevel.no_timing o Toplevel.imperative Secure.commit)); |
5832 | 1003 |
|
24868 | 1004 |
val _ = |
6723 | 1005 |
OuterSyntax.improper_command "quit" "quit Isabelle" K.control |
9010 | 1006 |
(P.opt_unit >> (Toplevel.no_timing oo K IsarCmd.quit)); |
5832 | 1007 |
|
24868 | 1008 |
val _ = |
6723 | 1009 |
OuterSyntax.improper_command "exit" "exit Isar loop" K.control |
9010 | 1010 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.exit)); |
5832 | 1011 |
|
24868 | 1012 |
val _ = |
8678 | 1013 |
OuterSyntax.improper_command "welcome" "print welcome message" K.diag |
9010 | 1014 |
(Scan.succeed (Toplevel.no_timing o IsarCmd.welcome)); |
7462 | 1015 |
|
5832 | 1016 |
end; |
27614
f38c25d106a7
renamed IsarCmd.nested_command to OuterSyntax.prepare_command;
wenzelm
parents:
27575
diff
changeset
|
1017 |