author | wenzelm |
Sat, 30 May 2009 15:25:46 +0200 | |
changeset 31305 | a16f4d4f5b24 |
parent 31177 | c39994cb152a |
child 31306 | a74ee84288a0 |
permissions | -rw-r--r-- |
5823 | 1 |
(* Title: Pure/Isar/attrib.ML |
2 |
Author: Markus Wenzel, TU Muenchen |
|
3 |
||
18734 | 4 |
Symbolic representation of attributes -- with name and syntax. |
5823 | 5 |
*) |
6 |
||
7 |
signature ATTRIB = |
|
8 |
sig |
|
27729 | 9 |
type src = Args.src |
29581 | 10 |
type binding = binding * src list |
28965 | 11 |
val empty_binding: binding |
27729 | 12 |
val print_attributes: theory -> unit |
16458 | 13 |
val intern: theory -> xstring -> string |
14 |
val intern_src: theory -> src -> src |
|
21031 | 15 |
val pretty_attribs: Proof.context -> src list -> Pretty.T list |
26891 | 16 |
val defined: theory -> string -> bool |
18734 | 17 |
val attribute: theory -> src -> attribute |
18 |
val attribute_i: theory -> src -> attribute |
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
19 |
val eval_thms: Proof.context -> (Facts.ref * src list) list -> thm list |
18905 | 20 |
val map_specs: ('a -> 'att) -> |
30759 | 21 |
(('c * 'a list) * 'b) list -> (('c * 'att list) * 'b) list |
18905 | 22 |
val map_facts: ('a -> 'att) -> |
17105
1b07a176a880
added map_specs/facts operators (from locale.ML);
wenzelm
parents:
16934
diff
changeset
|
23 |
(('c * 'a list) * ('d * 'a list) list) list -> |
18905 | 24 |
(('c * 'att list) * ('d * 'att list) list) list |
30759 | 25 |
val map_facts_refs: ('a -> 'att) -> ('b -> 'fact) -> |
26 |
(('c * 'a list) * ('b * 'a list) list) list -> |
|
27 |
(('c * 'att list) * ('fact * 'att list) list) list |
|
20289 | 28 |
val crude_closure: Proof.context -> src -> src |
18734 | 29 |
val add_attributes: (bstring * (src -> attribute) * string) list -> theory -> theory |
30513 | 30 |
val syntax: attribute context_parser -> src -> attribute |
30525
8a5a0aa30e1c
added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents:
30513
diff
changeset
|
31 |
val setup: Binding.binding -> attribute context_parser -> string -> theory -> theory |
30575 | 32 |
val attribute_setup: bstring * Position.T -> Symbol_Pos.text * Position.T -> string -> |
33 |
theory -> theory |
|
30525
8a5a0aa30e1c
added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents:
30513
diff
changeset
|
34 |
val add_del: attribute -> attribute -> attribute context_parser |
30513 | 35 |
val thm_sel: Facts.interval list parser |
36 |
val thm: thm context_parser |
|
37 |
val thms: thm list context_parser |
|
38 |
val multi_thm: thm list context_parser |
|
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
39 |
val print_configs: Proof.context -> unit |
25983 | 40 |
val internal: (morphism -> attribute) -> src |
24126
913e1fa904fb
turned simp_depth_limit into configuration option;
wenzelm
parents:
24110
diff
changeset
|
41 |
val register_config: Config.value Config.T -> theory -> theory |
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
42 |
val config_bool: bstring -> bool -> bool Config.T * (theory -> theory) |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
43 |
val config_int: bstring -> int -> int Config.T * (theory -> theory) |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
44 |
val config_string: bstring -> string -> string Config.T * (theory -> theory) |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
45 |
val config_bool_global: bstring -> bool -> bool Config.T * (theory -> theory) |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
46 |
val config_int_global: bstring -> int -> int Config.T * (theory -> theory) |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
47 |
val config_string_global: bstring -> string -> string Config.T * (theory -> theory) |
5823 | 48 |
end; |
49 |
||
50 |
structure Attrib: ATTRIB = |
|
51 |
struct |
|
52 |
||
27812
af8edf3ab68c
unified Args.T with OuterLex.token, renamed some operations;
wenzelm
parents:
27751
diff
changeset
|
53 |
structure T = OuterLex; |
af8edf3ab68c
unified Args.T with OuterLex.token, renamed some operations;
wenzelm
parents:
27751
diff
changeset
|
54 |
structure P = OuterParse; |
af8edf3ab68c
unified Args.T with OuterLex.token, renamed some operations;
wenzelm
parents:
27751
diff
changeset
|
55 |
|
28084
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
56 |
|
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
57 |
(* source and bindings *) |
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
58 |
|
15703 | 59 |
type src = Args.src; |
60 |
||
29581 | 61 |
type binding = binding * src list; |
28965 | 62 |
val empty_binding: binding = (Binding.empty, []); |
28084
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
63 |
|
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
64 |
|
27729 | 65 |
|
18734 | 66 |
(** named attributes **) |
18636 | 67 |
|
18734 | 68 |
(* theory data *) |
5823 | 69 |
|
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
70 |
structure Attributes = TheoryDataFun |
22846 | 71 |
( |
18734 | 72 |
type T = (((src -> attribute) * string) * stamp) NameSpace.table; |
16344 | 73 |
val empty = NameSpace.empty_table; |
6546 | 74 |
val copy = I; |
16458 | 75 |
val extend = I; |
23655
d2d1138e0ddc
replaced exception TableFun/GraphFun.DUPS by TableFun/GraphFun.DUP;
wenzelm
parents:
23577
diff
changeset
|
76 |
fun merge _ tables : T = NameSpace.merge_tables (eq_snd (op =)) tables handle Symtab.DUP dup => |
d2d1138e0ddc
replaced exception TableFun/GraphFun.DUPS by TableFun/GraphFun.DUP;
wenzelm
parents:
23577
diff
changeset
|
77 |
error ("Attempt to merge different versions of attribute " ^ quote dup); |
22846 | 78 |
); |
5823 | 79 |
|
22846 | 80 |
fun print_attributes thy = |
81 |
let |
|
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
82 |
val attribs = Attributes.get thy; |
22846 | 83 |
fun prt_attr (name, ((_, comment), _)) = Pretty.block |
84 |
[Pretty.str (name ^ ":"), Pretty.brk 2, Pretty.str comment]; |
|
85 |
in |
|
86 |
[Pretty.big_list "attributes:" (map prt_attr (NameSpace.extern_table attribs))] |
|
87 |
|> Pretty.chunks |> Pretty.writeln |
|
88 |
end; |
|
7611 | 89 |
|
5823 | 90 |
|
21031 | 91 |
(* name space *) |
15703 | 92 |
|
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
93 |
val intern = NameSpace.intern o #1 o Attributes.get; |
15703 | 94 |
val intern_src = Args.map_name o intern; |
95 |
||
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
96 |
val extern = NameSpace.extern o #1 o Attributes.get o ProofContext.theory_of; |
21031 | 97 |
|
98 |
||
99 |
(* pretty printing *) |
|
100 |
||
101 |
fun pretty_attribs _ [] = [] |
|
102 |
| pretty_attribs ctxt srcs = |
|
103 |
[Pretty.enclose "[" "]" |
|
104 |
(Pretty.commas (map (Args.pretty_src ctxt o Args.map_name (extern ctxt)) srcs))]; |
|
105 |
||
15703 | 106 |
|
18734 | 107 |
(* get attributes *) |
5823 | 108 |
|
26891 | 109 |
val defined = Symtab.defined o #2 o Attributes.get; |
110 |
||
18734 | 111 |
fun attribute_i thy = |
5823 | 112 |
let |
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
113 |
val attrs = #2 (Attributes.get thy); |
5879 | 114 |
fun attr src = |
16344 | 115 |
let val ((name, _), pos) = Args.dest_src src in |
17412 | 116 |
(case Symtab.lookup attrs name of |
15531 | 117 |
NONE => error ("Unknown attribute: " ^ quote name ^ Position.str_of pos) |
27751 | 118 |
| SOME ((att, _), _) => (Position.report (Markup.attribute name) pos; att src)) |
5823 | 119 |
end; |
120 |
in attr end; |
|
121 |
||
18734 | 122 |
fun attribute thy = attribute_i thy o intern_src thy; |
18636 | 123 |
|
31177 | 124 |
fun eval_thms ctxt args = ProofContext.note_thmss Thm.generatedK |
30759 | 125 |
[(Thm.empty_binding, args |> map (fn (a, atts) => |
126 |
(ProofContext.get_fact ctxt a, map (attribute (ProofContext.theory_of ctxt)) atts)))] ctxt |
|
26685 | 127 |
|> fst |> maps snd; |
24723 | 128 |
|
5823 | 129 |
|
17105
1b07a176a880
added map_specs/facts operators (from locale.ML);
wenzelm
parents:
16934
diff
changeset
|
130 |
(* attributed declarations *) |
1b07a176a880
added map_specs/facts operators (from locale.ML);
wenzelm
parents:
16934
diff
changeset
|
131 |
|
1b07a176a880
added map_specs/facts operators (from locale.ML);
wenzelm
parents:
16934
diff
changeset
|
132 |
fun map_specs f = map (apfst (apsnd (map f))); |
30759 | 133 |
|
17105
1b07a176a880
added map_specs/facts operators (from locale.ML);
wenzelm
parents:
16934
diff
changeset
|
134 |
fun map_facts f = map (apfst (apsnd (map f)) o apsnd (map (apsnd (map f)))); |
30759 | 135 |
fun map_facts_refs f g = map_facts f #> map (apsnd (map (apfst g))); |
17105
1b07a176a880
added map_specs/facts operators (from locale.ML);
wenzelm
parents:
16934
diff
changeset
|
136 |
|
1b07a176a880
added map_specs/facts operators (from locale.ML);
wenzelm
parents:
16934
diff
changeset
|
137 |
|
15703 | 138 |
(* crude_closure *) |
139 |
||
140 |
(*Produce closure without knowing facts in advance! The following |
|
18734 | 141 |
works reasonably well for attribute parsers that do not peek at the |
142 |
thm structure.*) |
|
15703 | 143 |
|
144 |
fun crude_closure ctxt src = |
|
18734 | 145 |
(try (fn () => attribute_i (ProofContext.theory_of ctxt) src |
146 |
(Context.Proof ctxt, Drule.asm_rl)) (); |
|
15703 | 147 |
Args.closure src); |
148 |
||
149 |
||
5823 | 150 |
(* add_attributes *) |
151 |
||
152 |
fun add_attributes raw_attrs thy = |
|
153 |
let |
|
18734 | 154 |
val new_attrs = |
29004 | 155 |
raw_attrs |> map (fn (name, att, comment) => (Binding.name name, ((att, comment), stamp ()))); |
30466 | 156 |
fun add attrs = fold (snd oo NameSpace.define (Sign.naming_of thy)) new_attrs attrs |
23655
d2d1138e0ddc
replaced exception TableFun/GraphFun.DUPS by TableFun/GraphFun.DUP;
wenzelm
parents:
23577
diff
changeset
|
157 |
handle Symtab.DUP dup => error ("Duplicate declaration of attributes " ^ quote dup); |
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
158 |
in Attributes.map add thy end; |
5823 | 159 |
|
5879 | 160 |
|
30525
8a5a0aa30e1c
added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents:
30513
diff
changeset
|
161 |
(* attribute setup *) |
8a5a0aa30e1c
added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents:
30513
diff
changeset
|
162 |
|
8a5a0aa30e1c
added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents:
30513
diff
changeset
|
163 |
fun syntax scan src (context, th) = |
8a5a0aa30e1c
added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents:
30513
diff
changeset
|
164 |
let val (f: attribute, context') = Args.syntax "attribute" scan src context |
8a5a0aa30e1c
added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents:
30513
diff
changeset
|
165 |
in f (context', th) end; |
8a5a0aa30e1c
added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents:
30513
diff
changeset
|
166 |
|
8a5a0aa30e1c
added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents:
30513
diff
changeset
|
167 |
fun setup name scan comment = add_attributes [(Binding.name_of name, syntax scan, comment)]; |
5879 | 168 |
|
30525
8a5a0aa30e1c
added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents:
30513
diff
changeset
|
169 |
fun attribute_setup name (txt, pos) cmt = |
8a5a0aa30e1c
added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents:
30513
diff
changeset
|
170 |
Context.theory_map (ML_Context.expression pos |
8a5a0aa30e1c
added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents:
30513
diff
changeset
|
171 |
"val (name, scan, comment): binding * attribute context_parser * string" |
8a5a0aa30e1c
added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents:
30513
diff
changeset
|
172 |
"Context.map_theory (Attrib.setup name scan comment)" |
8a5a0aa30e1c
added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents:
30513
diff
changeset
|
173 |
("(" ^ ML_Syntax.make_binding name ^ ", " ^ txt ^ ", " ^ ML_Syntax.print_string cmt ^ ")")); |
8a5a0aa30e1c
added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents:
30513
diff
changeset
|
174 |
|
8a5a0aa30e1c
added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents:
30513
diff
changeset
|
175 |
|
31305 | 176 |
(* add/del syntax *) |
5823 | 177 |
|
31305 | 178 |
fun add_del add del = Scan.lift (Args.add >> K add || Args.del >> K del || Scan.succeed add); |
5879 | 179 |
|
180 |
||
25983 | 181 |
|
182 |
(** parsing attributed theorems **) |
|
5879 | 183 |
|
27812
af8edf3ab68c
unified Args.T with OuterLex.token, renamed some operations;
wenzelm
parents:
27751
diff
changeset
|
184 |
val thm_sel = P.$$$ "(" |-- P.list1 |
af8edf3ab68c
unified Args.T with OuterLex.token, renamed some operations;
wenzelm
parents:
27751
diff
changeset
|
185 |
(P.nat --| P.minus -- P.nat >> Facts.FromTo || |
af8edf3ab68c
unified Args.T with OuterLex.token, renamed some operations;
wenzelm
parents:
27751
diff
changeset
|
186 |
P.nat --| P.minus >> Facts.From || |
af8edf3ab68c
unified Args.T with OuterLex.token, renamed some operations;
wenzelm
parents:
27751
diff
changeset
|
187 |
P.nat >> Facts.Single) --| P.$$$ ")"; |
af8edf3ab68c
unified Args.T with OuterLex.token, renamed some operations;
wenzelm
parents:
27751
diff
changeset
|
188 |
|
18636 | 189 |
local |
190 |
||
21698
43a842769765
thms etc.: proper treatment of internal_fact with selection;
wenzelm
parents:
21658
diff
changeset
|
191 |
val fact_name = Args.internal_fact >> K "<fact>" || Args.name; |
43a842769765
thms etc.: proper treatment of internal_fact with selection;
wenzelm
parents:
21658
diff
changeset
|
192 |
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
193 |
fun gen_thm pick = Scan.depend (fn context => |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
194 |
let |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
195 |
val thy = Context.theory_of context; |
26685 | 196 |
val get = Context.cases (PureThy.get_fact context) ProofContext.get_fact context; |
26361 | 197 |
val get_fact = get o Facts.Fact; |
27820 | 198 |
fun get_named pos name = get (Facts.Named ((name, pos), NONE)); |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
199 |
in |
27820 | 200 |
P.$$$ "[" |-- Args.attribs (intern thy) --| P.$$$ "]" >> (fn srcs => |
24008 | 201 |
let |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
202 |
val atts = map (attribute_i thy) srcs; |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
203 |
val (context', th') = Library.apply atts (context, Drule.dummy_thm); |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
204 |
in (context', pick "" [th']) end) |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
205 |
|| |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
206 |
(Scan.ahead Args.alt_name -- Args.named_fact get_fact |
27820 | 207 |
>> (fn (s, fact) => ("", Facts.Fact s, fact)) || |
208 |
Scan.ahead (P.position fact_name) :|-- (fn (name, pos) => |
|
209 |
Args.named_fact (get_named pos) -- Scan.option thm_sel |
|
210 |
>> (fn (fact, sel) => (name, Facts.Named ((name, pos), sel), fact)))) |
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
211 |
-- Args.opt_attribs (intern thy) >> (fn ((name, thmref, fact), srcs) => |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
212 |
let |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
213 |
val ths = Facts.select thmref fact; |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
214 |
val atts = map (attribute_i thy) srcs; |
30190 | 215 |
val (context', ths') = Library.foldl_map (Library.apply atts) (context, ths); |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
216 |
in (context', pick name ths') end) |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
217 |
end); |
15456
956d6acacf89
Specific theorems in a named list of theorems can now be referred to
berghofe
parents:
15117
diff
changeset
|
218 |
|
18636 | 219 |
in |
220 |
||
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
221 |
val thm = gen_thm Facts.the_single; |
18998 | 222 |
val multi_thm = gen_thm (K I); |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
223 |
val thms = Scan.repeat multi_thm >> flat; |
18636 | 224 |
|
225 |
end; |
|
226 |
||
5823 | 227 |
|
5879 | 228 |
|
25983 | 229 |
(** basic attributes **) |
230 |
||
231 |
(* internal *) |
|
232 |
||
27812
af8edf3ab68c
unified Args.T with OuterLex.token, renamed some operations;
wenzelm
parents:
27751
diff
changeset
|
233 |
fun internal att = Args.src (("Pure.attribute", [T.mk_attribute att]), Position.none); |
25983 | 234 |
|
235 |
||
236 |
(* rule composition *) |
|
237 |
||
238 |
val COMP_att = |
|
31305 | 239 |
Scan.lift (Scan.optional (Args.bracks P.nat) 1) -- thm |
240 |
>> (fn (i, B) => Thm.rule_attribute (fn _ => fn A => Drule.compose_single (A, i, B))); |
|
25983 | 241 |
|
242 |
val THEN_att = |
|
31305 | 243 |
Scan.lift (Scan.optional (Args.bracks P.nat) 1) -- thm |
244 |
>> (fn (i, B) => Thm.rule_attribute (fn _ => fn A => A RSN (i, B))); |
|
25983 | 245 |
|
246 |
val OF_att = |
|
31305 | 247 |
thms >> (fn Bs => Thm.rule_attribute (fn _ => fn A => Bs MRS A)); |
25983 | 248 |
|
249 |
||
250 |
(* rename_abs *) |
|
251 |
||
31305 | 252 |
val rename_abs = Scan.repeat (Args.maybe Args.name) >> (apsnd o Drule.rename_bvars'); |
25983 | 253 |
|
254 |
||
255 |
(* unfold / fold definitions *) |
|
256 |
||
257 |
fun unfolded_syntax rule = |
|
31305 | 258 |
thms >> (fn ths => Thm.rule_attribute (fn context => rule (Context.proof_of context) ths)); |
25983 | 259 |
|
260 |
val unfolded = unfolded_syntax LocalDefs.unfold; |
|
261 |
val folded = unfolded_syntax LocalDefs.fold; |
|
262 |
||
263 |
||
264 |
(* rule format *) |
|
265 |
||
31305 | 266 |
val rule_format = Args.mode "no_asm" |
267 |
>> (fn true => ObjectLogic.rule_format_no_asm | false => ObjectLogic.rule_format); |
|
25983 | 268 |
|
31305 | 269 |
val elim_format = Thm.rule_attribute (K Tactic.make_elim); |
25983 | 270 |
|
271 |
||
272 |
(* misc rules *) |
|
273 |
||
31305 | 274 |
val no_vars = Thm.rule_attribute (fn context => fn th => |
26715
00ff79ab6e6b
no_vars: reset body mode, i.e. invent global frees (which are acceptable to Variable.auto_fixes);
wenzelm
parents:
26685
diff
changeset
|
275 |
let |
00ff79ab6e6b
no_vars: reset body mode, i.e. invent global frees (which are acceptable to Variable.auto_fixes);
wenzelm
parents:
26685
diff
changeset
|
276 |
val ctxt = Variable.set_body false (Context.proof_of context); |
00ff79ab6e6b
no_vars: reset body mode, i.e. invent global frees (which are acceptable to Variable.auto_fixes);
wenzelm
parents:
26685
diff
changeset
|
277 |
val ((_, [th']), _) = Variable.import_thms true [th] ctxt; |
31305 | 278 |
in th' end); |
25983 | 279 |
|
280 |
val eta_long = |
|
31305 | 281 |
Thm.rule_attribute (K (Conv.fconv_rule Drule.eta_long_conversion)); |
25983 | 282 |
|
31305 | 283 |
val rotated = Scan.optional P.int 1 >> (fn n => Thm.rule_attribute (K (rotate_prems n))); |
29690 | 284 |
|
25983 | 285 |
|
286 |
(* theory setup *) |
|
5823 | 287 |
|
26463 | 288 |
val _ = Context.>> (Context.map_theory |
31305 | 289 |
(setup (Binding.name "attribute") (Scan.lift Args.internal_attribute >> Morphism.form) |
290 |
"internal attribute" #> |
|
291 |
setup (Binding.name "tagged") (Scan.lift (Args.name -- Args.name) >> Thm.tag) "tagged theorem" #> |
|
292 |
setup (Binding.name "untagged") (Scan.lift Args.name >> Thm.untag) "untagged theorem" #> |
|
293 |
setup (Binding.name "kind") (Scan.lift Args.name >> Thm.kind) "theorem kind" #> |
|
294 |
setup (Binding.name "COMP") COMP_att "direct composition with rules (no lifting)" #> |
|
295 |
setup (Binding.name "THEN") THEN_att "resolution with rule" #> |
|
296 |
setup (Binding.name "OF") OF_att "rule applied to facts" #> |
|
297 |
setup (Binding.name "rename_abs") (Scan.lift rename_abs) |
|
298 |
"rename bound variables in abstractions" #> |
|
299 |
setup (Binding.name "unfolded") unfolded "unfolded definitions" #> |
|
300 |
setup (Binding.name "folded") folded "folded definitions" #> |
|
301 |
setup (Binding.name "consumes") (Scan.lift (Scan.optional P.nat 1) >> RuleCases.consumes) |
|
302 |
"number of consumed facts" #> |
|
303 |
setup (Binding.name "case_names") (Scan.lift (Scan.repeat1 Args.name) >> RuleCases.case_names) |
|
304 |
"named rule cases" #> |
|
305 |
setup (Binding.name "case_conclusion") |
|
306 |
(Scan.lift (Args.name -- Scan.repeat Args.name) >> RuleCases.case_conclusion) |
|
307 |
"named conclusion of rule cases" #> |
|
308 |
setup (Binding.name "params") |
|
309 |
(Scan.lift (P.and_list1 (Scan.repeat Args.name)) >> RuleCases.params) |
|
310 |
"named rule parameters" #> |
|
311 |
setup (Binding.name "standard") (Scan.succeed (Thm.rule_attribute (K Drule.standard))) |
|
312 |
"result put into standard form (legacy)" #> |
|
313 |
setup (Binding.name "rule_format") rule_format "result put into canonical rule format" #> |
|
314 |
setup (Binding.name "elim_format") (Scan.succeed elim_format) |
|
315 |
"destruct rule turned into elimination rule format" #> |
|
316 |
setup (Binding.name "no_vars") (Scan.succeed no_vars) "frozen schematic vars" #> |
|
317 |
setup (Binding.name "eta_long") (Scan.succeed eta_long) |
|
318 |
"put theorem into eta long beta normal form" #> |
|
319 |
setup (Binding.name "atomize") (Scan.succeed ObjectLogic.declare_atomize) |
|
320 |
"declaration of atomize rule" #> |
|
321 |
setup (Binding.name "rulify") (Scan.succeed ObjectLogic.declare_rulify) |
|
322 |
"declaration of rulify rule" #> |
|
323 |
setup (Binding.name "rotated") (Scan.lift rotated) "rotated theorem premises" #> |
|
324 |
setup (Binding.name "defn") (add_del LocalDefs.defn_add LocalDefs.defn_del) |
|
325 |
"declaration of definitional transformations" #> |
|
326 |
setup (Binding.name "abs_def") (Scan.succeed (Thm.rule_attribute (K Drule.abs_def))) |
|
327 |
"abstract over free variables of a definition")); |
|
8633 | 328 |
|
5823 | 329 |
|
330 |
||
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
331 |
(** configuration options **) |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
332 |
|
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
333 |
(* naming *) |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
334 |
|
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
335 |
structure Configs = TheoryDataFun |
24713 | 336 |
( |
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
337 |
type T = Config.value Config.T Symtab.table; |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
338 |
val empty = Symtab.empty; |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
339 |
val copy = I; |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
340 |
val extend = I; |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
341 |
fun merge _ = Symtab.merge (K true); |
24713 | 342 |
); |
5823 | 343 |
|
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
344 |
fun print_configs ctxt = |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
345 |
let |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
346 |
val thy = ProofContext.theory_of ctxt; |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
347 |
fun prt (name, config) = |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
348 |
let val value = Config.get ctxt config in |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
349 |
Pretty.block [Pretty.str (name ^ ": " ^ Config.print_type value ^ " ="), Pretty.brk 1, |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
350 |
Pretty.str (Config.print_value value)] |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
351 |
end; |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
352 |
val configs = NameSpace.extern_table (#1 (Attributes.get thy), Configs.get thy); |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
353 |
in Pretty.writeln (Pretty.big_list "configuration options" (map prt configs)) end; |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
354 |
|
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
355 |
|
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
356 |
(* concrete syntax *) |
23988
aa46577f4f44
added attribute "option" for setting configuration options;
wenzelm
parents:
23937
diff
changeset
|
357 |
|
24003
da76d7e6435c
attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents:
23988
diff
changeset
|
358 |
local |
da76d7e6435c
attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents:
23988
diff
changeset
|
359 |
|
27820 | 360 |
val equals = P.$$$ "="; |
24003
da76d7e6435c
attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents:
23988
diff
changeset
|
361 |
|
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
362 |
fun scan_value (Config.Bool _) = |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
363 |
equals -- Args.$$$ "false" >> K (Config.Bool false) || |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
364 |
equals -- Args.$$$ "true" >> K (Config.Bool true) || |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
365 |
Scan.succeed (Config.Bool true) |
27812
af8edf3ab68c
unified Args.T with OuterLex.token, renamed some operations;
wenzelm
parents:
27751
diff
changeset
|
366 |
| scan_value (Config.Int _) = equals |-- P.int >> Config.Int |
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
367 |
| scan_value (Config.String _) = equals |-- Args.name >> Config.String; |
24003
da76d7e6435c
attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents:
23988
diff
changeset
|
368 |
|
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
369 |
fun scan_config thy config = |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
370 |
let val config_type = Config.get_thy thy config |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
371 |
in scan_value config_type >> (K o Thm.declaration_attribute o K o Config.put_generic config) end; |
24003
da76d7e6435c
attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents:
23988
diff
changeset
|
372 |
|
da76d7e6435c
attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents:
23988
diff
changeset
|
373 |
in |
da76d7e6435c
attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents:
23988
diff
changeset
|
374 |
|
24126
913e1fa904fb
turned simp_depth_limit into configuration option;
wenzelm
parents:
24110
diff
changeset
|
375 |
fun register_config config thy = |
913e1fa904fb
turned simp_depth_limit into configuration option;
wenzelm
parents:
24110
diff
changeset
|
376 |
let |
913e1fa904fb
turned simp_depth_limit into configuration option;
wenzelm
parents:
24110
diff
changeset
|
377 |
val bname = Config.name_of config; |
28965 | 378 |
val name = Sign.full_bname thy bname; |
24126
913e1fa904fb
turned simp_depth_limit into configuration option;
wenzelm
parents:
24110
diff
changeset
|
379 |
in |
913e1fa904fb
turned simp_depth_limit into configuration option;
wenzelm
parents:
24110
diff
changeset
|
380 |
thy |
913e1fa904fb
turned simp_depth_limit into configuration option;
wenzelm
parents:
24110
diff
changeset
|
381 |
|> add_attributes [(bname, syntax (Scan.lift (scan_config thy config) >> Morphism.form), |
913e1fa904fb
turned simp_depth_limit into configuration option;
wenzelm
parents:
24110
diff
changeset
|
382 |
"configuration option")] |
913e1fa904fb
turned simp_depth_limit into configuration option;
wenzelm
parents:
24110
diff
changeset
|
383 |
|> Configs.map (Symtab.update (name, config)) |
913e1fa904fb
turned simp_depth_limit into configuration option;
wenzelm
parents:
24110
diff
changeset
|
384 |
end; |
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
385 |
|
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
386 |
fun declare_config make coerce global name default = |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
387 |
let |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
388 |
val config_value = Config.declare global name (make default); |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
389 |
val config = coerce config_value; |
24126
913e1fa904fb
turned simp_depth_limit into configuration option;
wenzelm
parents:
24110
diff
changeset
|
390 |
in (config, register_config config_value) end; |
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
391 |
|
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
392 |
val config_bool = declare_config Config.Bool Config.bool false; |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
393 |
val config_int = declare_config Config.Int Config.int false; |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
394 |
val config_string = declare_config Config.String Config.string false; |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
395 |
|
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
396 |
val config_bool_global = declare_config Config.Bool Config.bool true; |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
397 |
val config_int_global = declare_config Config.Int Config.int true; |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
398 |
val config_string_global = declare_config Config.String Config.string true; |
24003
da76d7e6435c
attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents:
23988
diff
changeset
|
399 |
|
da76d7e6435c
attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents:
23988
diff
changeset
|
400 |
end; |
23988
aa46577f4f44
added attribute "option" for setting configuration options;
wenzelm
parents:
23937
diff
changeset
|
401 |
|
aa46577f4f44
added attribute "option" for setting configuration options;
wenzelm
parents:
23937
diff
changeset
|
402 |
|
18636 | 403 |
(* theory setup *) |
5823 | 404 |
|
26463 | 405 |
val _ = Context.>> (Context.map_theory |
24178
4ff1dc2aa18d
turned Unify flags into configuration options (global only);
wenzelm
parents:
24126
diff
changeset
|
406 |
(register_config Unify.trace_bound_value #> |
4ff1dc2aa18d
turned Unify flags into configuration options (global only);
wenzelm
parents:
24126
diff
changeset
|
407 |
register_config Unify.search_bound_value #> |
4ff1dc2aa18d
turned Unify flags into configuration options (global only);
wenzelm
parents:
24126
diff
changeset
|
408 |
register_config Unify.trace_simp_value #> |
4ff1dc2aa18d
turned Unify flags into configuration options (global only);
wenzelm
parents:
24126
diff
changeset
|
409 |
register_config Unify.trace_types_value #> |
26463 | 410 |
register_config MetaSimplifier.simp_depth_limit_value)); |
5823 | 411 |
|
412 |
end; |