author | wenzelm |
Wed, 09 Dec 2015 16:36:26 +0100 | |
changeset 61814 | 1ca1142e1711 |
parent 61527 | d05f3d86a758 |
child 61816 | 93d0af296c2f |
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 |
|
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57942
diff
changeset
|
9 |
type binding = binding * Token.src list |
28965 | 10 |
val empty_binding: binding |
45584
41a768a431a6
do not store vacuous theorem specifications -- relevant for frugal local theory content;
wenzelm
parents:
45537
diff
changeset
|
11 |
val is_empty_binding: binding -> bool |
59917
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59064
diff
changeset
|
12 |
val print_attributes: bool -> Proof.context -> unit |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57942
diff
changeset
|
13 |
val define_global: Binding.binding -> (Token.src -> attribute) -> |
57927 | 14 |
string -> theory -> string * theory |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57942
diff
changeset
|
15 |
val define: Binding.binding -> (Token.src -> attribute) -> |
57927 | 16 |
string -> local_theory -> string * local_theory |
55997
9dc5ce83202c
modernized Attrib.check_name/check_src similar to methods (see also a989bdaf8121);
wenzelm
parents:
55914
diff
changeset
|
17 |
val check_name_generic: Context.generic -> xstring * Position.T -> string |
9dc5ce83202c
modernized Attrib.check_name/check_src similar to methods (see also a989bdaf8121);
wenzelm
parents:
55914
diff
changeset
|
18 |
val check_name: Proof.context -> xstring * Position.T -> string |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57942
diff
changeset
|
19 |
val check_src: Proof.context -> Token.src -> Token.src |
61814
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
20 |
val attribs: Token.src list context_parser |
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
21 |
val opt_attribs: Token.src list context_parser |
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
22 |
val markup_extern: Proof.context -> string -> Markup.T * xstring |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57942
diff
changeset
|
23 |
val pretty_attribs: Proof.context -> Token.src list -> Pretty.T list |
60242
3a8501876dba
tuned output -- avoid empty quites and extra breaks;
wenzelm
parents:
59917
diff
changeset
|
24 |
val pretty_binding: Proof.context -> binding -> string -> Pretty.T list |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57942
diff
changeset
|
25 |
val attribute: Proof.context -> Token.src -> attribute |
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57942
diff
changeset
|
26 |
val attribute_global: theory -> Token.src -> attribute |
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57942
diff
changeset
|
27 |
val attribute_cmd: Proof.context -> Token.src -> attribute |
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57942
diff
changeset
|
28 |
val attribute_cmd_global: theory -> Token.src -> attribute |
45390
e29521ef9059
tuned signature -- avoid spurious Thm.mixed_attribute;
wenzelm
parents:
45375
diff
changeset
|
29 |
val map_specs: ('a list -> 'att list) -> |
30759 | 30 |
(('c * 'a list) * 'b) list -> (('c * 'att list) * 'b) list |
45390
e29521ef9059
tuned signature -- avoid spurious Thm.mixed_attribute;
wenzelm
parents:
45375
diff
changeset
|
31 |
val map_facts: ('a list -> 'att list) -> |
17105
1b07a176a880
added map_specs/facts operators (from locale.ML);
wenzelm
parents:
16934
diff
changeset
|
32 |
(('c * 'a list) * ('d * 'a list) list) list -> |
18905 | 33 |
(('c * 'att list) * ('d * 'att list) list) list |
45390
e29521ef9059
tuned signature -- avoid spurious Thm.mixed_attribute;
wenzelm
parents:
45375
diff
changeset
|
34 |
val map_facts_refs: ('a list -> 'att list) -> ('b -> 'fact) -> |
30759 | 35 |
(('c * 'a list) * ('b * 'a list) list) list -> |
36 |
(('c * 'att list) * ('fact * 'att list) list) list |
|
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57942
diff
changeset
|
37 |
val global_notes: string -> (binding * (thm list * Token.src list) list) list -> |
47249
c0481c3c2a6c
added Attrib.global_notes/local_notes/generic_notes convenience;
wenzelm
parents:
47005
diff
changeset
|
38 |
theory -> (string * thm list) list * theory |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57942
diff
changeset
|
39 |
val local_notes: string -> (binding * (thm list * Token.src list) list) list -> |
47249
c0481c3c2a6c
added Attrib.global_notes/local_notes/generic_notes convenience;
wenzelm
parents:
47005
diff
changeset
|
40 |
Proof.context -> (string * thm list) list * Proof.context |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57942
diff
changeset
|
41 |
val generic_notes: string -> (binding * (thm list * Token.src list) list) list -> |
47249
c0481c3c2a6c
added Attrib.global_notes/local_notes/generic_notes convenience;
wenzelm
parents:
47005
diff
changeset
|
42 |
Context.generic -> (string * thm list) list * Context.generic |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57942
diff
changeset
|
43 |
val eval_thms: Proof.context -> (Facts.ref * Token.src list) list -> thm list |
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57942
diff
changeset
|
44 |
val attribute_syntax: attribute context_parser -> Token.src -> attribute |
30525
8a5a0aa30e1c
added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents:
30513
diff
changeset
|
45 |
val setup: Binding.binding -> attribute context_parser -> string -> theory -> theory |
57927 | 46 |
val local_setup: Binding.binding -> attribute context_parser -> string -> |
47 |
local_theory -> local_theory |
|
59064 | 48 |
val attribute_setup: bstring * Position.T -> Input.source -> string -> |
57941
57200bdc2aa7
localized command 'method_setup' and 'attribute_setup';
wenzelm
parents:
57938
diff
changeset
|
49 |
local_theory -> local_theory |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57942
diff
changeset
|
50 |
val internal: (morphism -> attribute) -> Token.src |
30525
8a5a0aa30e1c
added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents:
30513
diff
changeset
|
51 |
val add_del: attribute -> attribute -> attribute context_parser |
30513 | 52 |
val thm: thm context_parser |
53 |
val thms: thm list context_parser |
|
54 |
val multi_thm: thm list context_parser |
|
58028
e4250d370657
tuned signature -- define some elementary operations earlier;
wenzelm
parents:
58025
diff
changeset
|
55 |
val transform_facts: morphism -> |
e4250d370657
tuned signature -- define some elementary operations earlier;
wenzelm
parents:
58025
diff
changeset
|
56 |
(Attrib.binding * (thm list * Token.src list) list) list -> |
e4250d370657
tuned signature -- define some elementary operations earlier;
wenzelm
parents:
58025
diff
changeset
|
57 |
(Attrib.binding * (thm list * Token.src list) list) list |
45493
12453fd8dcff
some support for partial evaluation of attributed facts;
wenzelm
parents:
45491
diff
changeset
|
58 |
val partial_evaluation: Proof.context -> |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57942
diff
changeset
|
59 |
(binding * (thm list * Token.src list) list) list -> |
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57942
diff
changeset
|
60 |
(binding * (thm list * Token.src list) list) list |
59917
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59064
diff
changeset
|
61 |
val print_options: bool -> Proof.context -> unit |
42616
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
62 |
val config_bool: Binding.binding -> |
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
63 |
(Context.generic -> bool) -> bool Config.T * (theory -> theory) |
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
64 |
val config_int: Binding.binding -> |
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
65 |
(Context.generic -> int) -> int Config.T * (theory -> theory) |
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
66 |
val config_real: Binding.binding -> |
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
67 |
(Context.generic -> real) -> real Config.T * (theory -> theory) |
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
68 |
val config_string: Binding.binding -> |
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
69 |
(Context.generic -> string) -> string Config.T * (theory -> theory) |
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
70 |
val setup_config_bool: Binding.binding -> (Context.generic -> bool) -> bool Config.T |
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
71 |
val setup_config_int: Binding.binding -> (Context.generic -> int) -> int Config.T |
52040
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
72 |
val setup_config_real: Binding.binding -> (Context.generic -> real) -> real Config.T |
42616
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
73 |
val setup_config_string: Binding.binding -> (Context.generic -> string) -> string Config.T |
56438 | 74 |
val option_bool: string * Position.T -> bool Config.T * (theory -> theory) |
75 |
val option_int: string * Position.T -> int Config.T * (theory -> theory) |
|
76 |
val option_real: string * Position.T -> real Config.T * (theory -> theory) |
|
77 |
val option_string: string * Position.T -> string Config.T * (theory -> theory) |
|
78 |
val setup_option_bool: string * Position.T -> bool Config.T |
|
79 |
val setup_option_int: string * Position.T -> int Config.T |
|
80 |
val setup_option_real: string * Position.T -> real Config.T |
|
81 |
val setup_option_string: string * Position.T -> string Config.T |
|
5823 | 82 |
end; |
83 |
||
84 |
structure Attrib: ATTRIB = |
|
85 |
struct |
|
86 |
||
28084
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
87 |
(* source and bindings *) |
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
88 |
|
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57942
diff
changeset
|
89 |
type binding = binding * Token.src list; |
45584
41a768a431a6
do not store vacuous theorem specifications -- relevant for frugal local theory content;
wenzelm
parents:
45537
diff
changeset
|
90 |
|
28965 | 91 |
val empty_binding: binding = (Binding.empty, []); |
45584
41a768a431a6
do not store vacuous theorem specifications -- relevant for frugal local theory content;
wenzelm
parents:
45537
diff
changeset
|
92 |
fun is_empty_binding ((b, srcs): binding) = Binding.is_empty b andalso null srcs; |
28084
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
93 |
|
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
94 |
|
27729 | 95 |
|
18734 | 96 |
(** named attributes **) |
18636 | 97 |
|
18734 | 98 |
(* theory data *) |
5823 | 99 |
|
57927 | 100 |
structure Attributes = Generic_Data |
22846 | 101 |
( |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57942
diff
changeset
|
102 |
type T = ((Token.src -> attribute) * string) Name_Space.table; |
33159 | 103 |
val empty : T = Name_Space.empty_table "attribute"; |
16458 | 104 |
val extend = I; |
33522 | 105 |
fun merge data : T = Name_Space.merge_tables data; |
22846 | 106 |
); |
5823 | 107 |
|
57927 | 108 |
val get_attributes = Attributes.get o Context.Proof; |
109 |
||
57937 | 110 |
fun transfer_attributes ctxt = |
57927 | 111 |
let |
57937 | 112 |
val attribs0 = Attributes.get (Context.Theory (Proof_Context.theory_of ctxt)); |
113 |
val attribs' = Name_Space.merge_tables (attribs0, get_attributes ctxt); |
|
57927 | 114 |
in Context.proof_map (Attributes.put attribs') ctxt end; |
55997
9dc5ce83202c
modernized Attrib.check_name/check_src similar to methods (see also a989bdaf8121);
wenzelm
parents:
55914
diff
changeset
|
115 |
|
59917
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59064
diff
changeset
|
116 |
fun print_attributes verbose ctxt = |
22846 | 117 |
let |
57927 | 118 |
val attribs = get_attributes ctxt; |
50301 | 119 |
fun prt_attr (name, (_, "")) = Pretty.mark_str name |
42813
6c841fa92fa2
optional description for 'attribute_setup' and 'method_setup';
wenzelm
parents:
42808
diff
changeset
|
120 |
| prt_attr (name, (_, comment)) = |
50301 | 121 |
Pretty.block |
122 |
(Pretty.mark_str name :: Pretty.str ":" :: Pretty.brk 2 :: Pretty.text comment); |
|
22846 | 123 |
in |
59917
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59064
diff
changeset
|
124 |
[Pretty.big_list "attributes:" (map prt_attr (Name_Space.markup_table verbose ctxt attribs))] |
56334
6b3739fee456
some shortcuts for chunks, which sometimes avoid bulky string output;
wenzelm
parents:
56303
diff
changeset
|
125 |
|> Pretty.writeln_chunks |
22846 | 126 |
end; |
7611 | 127 |
|
57927 | 128 |
val attribute_space = Name_Space.space_of_table o get_attributes; |
129 |
||
130 |
||
131 |
(* define *) |
|
132 |
||
133 |
fun define_global binding att comment thy = |
|
134 |
let |
|
135 |
val context = Context.Theory thy; |
|
136 |
val (name, attribs') = |
|
137 |
Name_Space.define context true (binding, (att, comment)) (Attributes.get context); |
|
138 |
in (name, Context.the_theory (Attributes.put attribs' context)) end; |
|
56027
25889f5c39a8
prefer Name_Space.pretty with its builtin markup;
wenzelm
parents:
56026
diff
changeset
|
139 |
|
57941
57200bdc2aa7
localized command 'method_setup' and 'attribute_setup';
wenzelm
parents:
57938
diff
changeset
|
140 |
fun define binding att comment = |
57200bdc2aa7
localized command 'method_setup' and 'attribute_setup';
wenzelm
parents:
57938
diff
changeset
|
141 |
Local_Theory.background_theory_result (define_global binding att comment) |
57200bdc2aa7
localized command 'method_setup' and 'attribute_setup';
wenzelm
parents:
57938
diff
changeset
|
142 |
#-> (fn name => |
57200bdc2aa7
localized command 'method_setup' and 'attribute_setup';
wenzelm
parents:
57938
diff
changeset
|
143 |
Local_Theory.map_contexts (K transfer_attributes) |
57200bdc2aa7
localized command 'method_setup' and 'attribute_setup';
wenzelm
parents:
57938
diff
changeset
|
144 |
#> Local_Theory.generic_alias Attributes.map binding name |
57200bdc2aa7
localized command 'method_setup' and 'attribute_setup';
wenzelm
parents:
57938
diff
changeset
|
145 |
#> pair name); |
31306
a74ee84288a0
eliminated old Attrib.add_attributes (and Attrib.syntax);
wenzelm
parents:
31305
diff
changeset
|
146 |
|
5823 | 147 |
|
55997
9dc5ce83202c
modernized Attrib.check_name/check_src similar to methods (see also a989bdaf8121);
wenzelm
parents:
55914
diff
changeset
|
148 |
(* check *) |
15703 | 149 |
|
57927 | 150 |
fun check_name_generic context = #1 o Name_Space.check context (Attributes.get context); |
56032
b034b9f0fa2a
clarified Args.check_src: retain name space information for error output;
wenzelm
parents:
56029
diff
changeset
|
151 |
val check_name = check_name_generic o Context.Proof; |
15703 | 152 |
|
56033 | 153 |
fun check_src ctxt src = |
61814
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
154 |
let |
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
155 |
val _ = |
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
156 |
if Token.checked_src src then () |
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
157 |
else |
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
158 |
Context_Position.report ctxt |
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
159 |
(Position.set_range (Token.range_of src)) Markup.language_attribute; |
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
160 |
in #1 (Token.check_src ctxt get_attributes src) end; |
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
161 |
|
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
162 |
val attribs = |
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
163 |
Args.context -- Scan.lift Parse.attribs |
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
164 |
>> (fn (ctxt, srcs) => map (check_src ctxt) srcs); |
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
165 |
|
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
166 |
val opt_attribs = Scan.optional attribs []; |
21031 | 167 |
|
168 |
||
169 |
(* pretty printing *) |
|
170 |
||
61814
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
171 |
fun markup_extern ctxt = |
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
172 |
Name_Space.markup_extern ctxt (Name_Space.space_of_table (get_attributes ctxt)); |
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
173 |
|
21031 | 174 |
fun pretty_attribs _ [] = [] |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57942
diff
changeset
|
175 |
| pretty_attribs ctxt srcs = [Pretty.enum "," "[" "]" (map (Token.pretty_src ctxt) srcs)]; |
21031 | 176 |
|
60242
3a8501876dba
tuned output -- avoid empty quites and extra breaks;
wenzelm
parents:
59917
diff
changeset
|
177 |
fun pretty_binding ctxt (b, atts) sep = |
60243 | 178 |
(case (Binding.is_empty b, null atts) of |
179 |
(true, true) => [] |
|
180 |
| (false, true) => [Pretty.block [Binding.pretty b, Pretty.str sep]] |
|
181 |
| (true, false) => [Pretty.block (pretty_attribs ctxt atts @ [Pretty.str sep])] |
|
182 |
| (false, false) => |
|
183 |
[Pretty.block |
|
184 |
(Binding.pretty b :: Pretty.brk 1 :: pretty_attribs ctxt atts @ [Pretty.str sep])]); |
|
60242
3a8501876dba
tuned output -- avoid empty quites and extra breaks;
wenzelm
parents:
59917
diff
changeset
|
185 |
|
15703 | 186 |
|
18734 | 187 |
(* get attributes *) |
5823 | 188 |
|
47816
cd0dfb06b0c8
prefer Context_Position.report_generic, which observes is_visible flag and thus reduces number of echos;
wenzelm
parents:
47815
diff
changeset
|
189 |
fun attribute_generic context = |
57927 | 190 |
let val table = Attributes.get context |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57942
diff
changeset
|
191 |
in fn src => #1 (Name_Space.get table (#1 (Token.name_of_src src))) src end; |
5823 | 192 |
|
47816
cd0dfb06b0c8
prefer Context_Position.report_generic, which observes is_visible flag and thus reduces number of echos;
wenzelm
parents:
47815
diff
changeset
|
193 |
val attribute = attribute_generic o Context.Proof; |
cd0dfb06b0c8
prefer Context_Position.report_generic, which observes is_visible flag and thus reduces number of echos;
wenzelm
parents:
47815
diff
changeset
|
194 |
val attribute_global = attribute_generic o Context.Theory; |
47815 | 195 |
|
55997
9dc5ce83202c
modernized Attrib.check_name/check_src similar to methods (see also a989bdaf8121);
wenzelm
parents:
55914
diff
changeset
|
196 |
fun attribute_cmd ctxt = attribute ctxt o check_src ctxt; |
56032
b034b9f0fa2a
clarified Args.check_src: retain name space information for error output;
wenzelm
parents:
56029
diff
changeset
|
197 |
fun attribute_cmd_global thy = attribute_global thy o check_src (Proof_Context.init_global thy); |
18636 | 198 |
|
5823 | 199 |
|
17105
1b07a176a880
added map_specs/facts operators (from locale.ML);
wenzelm
parents:
16934
diff
changeset
|
200 |
(* attributed declarations *) |
1b07a176a880
added map_specs/facts operators (from locale.ML);
wenzelm
parents:
16934
diff
changeset
|
201 |
|
45390
e29521ef9059
tuned signature -- avoid spurious Thm.mixed_attribute;
wenzelm
parents:
45375
diff
changeset
|
202 |
fun map_specs f = map (apfst (apsnd f)); |
30759 | 203 |
|
45390
e29521ef9059
tuned signature -- avoid spurious Thm.mixed_attribute;
wenzelm
parents:
45375
diff
changeset
|
204 |
fun map_facts f = map (apfst (apsnd f) o apsnd (map (apsnd f))); |
30759 | 205 |
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
|
206 |
|
1b07a176a880
added map_specs/facts operators (from locale.ML);
wenzelm
parents:
16934
diff
changeset
|
207 |
|
38330 | 208 |
(* fact expressions *) |
209 |
||
47249
c0481c3c2a6c
added Attrib.global_notes/local_notes/generic_notes convenience;
wenzelm
parents:
47005
diff
changeset
|
210 |
fun global_notes kind facts thy = thy |> |
47815 | 211 |
Global_Theory.note_thmss kind (map_facts (map (attribute_global thy)) facts); |
47249
c0481c3c2a6c
added Attrib.global_notes/local_notes/generic_notes convenience;
wenzelm
parents:
47005
diff
changeset
|
212 |
|
c0481c3c2a6c
added Attrib.global_notes/local_notes/generic_notes convenience;
wenzelm
parents:
47005
diff
changeset
|
213 |
fun local_notes kind facts ctxt = ctxt |> |
47815 | 214 |
Proof_Context.note_thmss kind (map_facts (map (attribute ctxt)) facts); |
47249
c0481c3c2a6c
added Attrib.global_notes/local_notes/generic_notes convenience;
wenzelm
parents:
47005
diff
changeset
|
215 |
|
c0481c3c2a6c
added Attrib.global_notes/local_notes/generic_notes convenience;
wenzelm
parents:
47005
diff
changeset
|
216 |
fun generic_notes kind facts context = context |> |
c0481c3c2a6c
added Attrib.global_notes/local_notes/generic_notes convenience;
wenzelm
parents:
47005
diff
changeset
|
217 |
Context.mapping_result (global_notes kind facts) (local_notes kind facts); |
c0481c3c2a6c
added Attrib.global_notes/local_notes/generic_notes convenience;
wenzelm
parents:
47005
diff
changeset
|
218 |
|
38330 | 219 |
fun eval_thms ctxt srcs = ctxt |
42360 | 220 |
|> Proof_Context.note_thmss "" |
47815 | 221 |
(map_facts_refs (map (attribute_cmd ctxt)) (Proof_Context.get_fact ctxt) |
38330 | 222 |
[((Binding.empty, []), srcs)]) |
223 |
|> fst |> maps snd; |
|
224 |
||
225 |
||
30525
8a5a0aa30e1c
added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents:
30513
diff
changeset
|
226 |
(* attribute setup *) |
8a5a0aa30e1c
added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents:
30513
diff
changeset
|
227 |
|
57927 | 228 |
fun attribute_syntax scan src (context, th) = |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57942
diff
changeset
|
229 |
let val (a, context') = Token.syntax_generic scan src context in a (context', th) end; |
57927 | 230 |
|
231 |
fun setup binding scan comment = define_global binding (attribute_syntax scan) comment #> snd; |
|
232 |
fun local_setup binding scan comment = define binding (attribute_syntax scan) comment #> snd; |
|
5879 | 233 |
|
58979
162a4c2e97bc
more careful ML source positions, for improved PIDE markup;
wenzelm
parents:
58978
diff
changeset
|
234 |
fun attribute_setup name source comment = |
162a4c2e97bc
more careful ML source positions, for improved PIDE markup;
wenzelm
parents:
58978
diff
changeset
|
235 |
ML_Lex.read_source false source |
59064 | 236 |
|> ML_Context.expression (Input.range_of source) "parser" "Thm.attribute context_parser" |
58979
162a4c2e97bc
more careful ML source positions, for improved PIDE markup;
wenzelm
parents:
58978
diff
changeset
|
237 |
("Context.map_proof (Attrib.local_setup " ^ ML_Syntax.atomic (ML_Syntax.make_binding name) ^ |
162a4c2e97bc
more careful ML source positions, for improved PIDE markup;
wenzelm
parents:
58978
diff
changeset
|
238 |
" parser " ^ ML_Syntax.print_string comment ^ ")") |
57941
57200bdc2aa7
localized command 'method_setup' and 'attribute_setup';
wenzelm
parents:
57938
diff
changeset
|
239 |
|> Context.proof_map; |
30525
8a5a0aa30e1c
added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents:
30513
diff
changeset
|
240 |
|
8a5a0aa30e1c
added setup and attribute_setup -- expect plain parser instead of syntax function;
wenzelm
parents:
30513
diff
changeset
|
241 |
|
55140
7eb0c04e4c40
define basic attributes in user-space Pure.thy -- which provides better hyperlinks and may serve as example;
wenzelm
parents:
53171
diff
changeset
|
242 |
(* internal attribute *) |
7eb0c04e4c40
define basic attributes in user-space Pure.thy -- which provides better hyperlinks and may serve as example;
wenzelm
parents:
53171
diff
changeset
|
243 |
|
58025 | 244 |
fun internal att = |
61814
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
245 |
Token.make_src ("Pure.attribute", Position.none) |
58025 | 246 |
[Token.make_value "<attribute>" (Token.Attribute att)]; |
55140
7eb0c04e4c40
define basic attributes in user-space Pure.thy -- which provides better hyperlinks and may serve as example;
wenzelm
parents:
53171
diff
changeset
|
247 |
|
7eb0c04e4c40
define basic attributes in user-space Pure.thy -- which provides better hyperlinks and may serve as example;
wenzelm
parents:
53171
diff
changeset
|
248 |
val _ = Theory.setup |
56436 | 249 |
(setup (Binding.make ("attribute", @{here})) |
250 |
(Scan.lift Args.internal_attribute >> Morphism.form) |
|
55140
7eb0c04e4c40
define basic attributes in user-space Pure.thy -- which provides better hyperlinks and may serve as example;
wenzelm
parents:
53171
diff
changeset
|
251 |
"internal attribute"); |
7eb0c04e4c40
define basic attributes in user-space Pure.thy -- which provides better hyperlinks and may serve as example;
wenzelm
parents:
53171
diff
changeset
|
252 |
|
7eb0c04e4c40
define basic attributes in user-space Pure.thy -- which provides better hyperlinks and may serve as example;
wenzelm
parents:
53171
diff
changeset
|
253 |
|
31305 | 254 |
(* add/del syntax *) |
5823 | 255 |
|
31305 | 256 |
fun add_del add del = Scan.lift (Args.add >> K add || Args.del >> K del || Scan.succeed add); |
5879 | 257 |
|
258 |
||
25983 | 259 |
|
260 |
(** parsing attributed theorems **) |
|
5879 | 261 |
|
18636 | 262 |
local |
263 |
||
21698
43a842769765
thms etc.: proper treatment of internal_fact with selection;
wenzelm
parents:
21658
diff
changeset
|
264 |
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
|
265 |
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
266 |
fun gen_thm pick = Scan.depend (fn context => |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
267 |
let |
56140
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
wenzelm
parents:
56052
diff
changeset
|
268 |
val get = Proof_Context.get_fact_generic context; |
26361 | 269 |
val get_fact = get o Facts.Fact; |
57942
e5bec882fdd0
more informative Token.Fact: retain name of dynamic fact (without selection);
wenzelm
parents:
57941
diff
changeset
|
270 |
fun get_named is_sel pos name = |
e5bec882fdd0
more informative Token.Fact: retain name of dynamic fact (without selection);
wenzelm
parents:
57941
diff
changeset
|
271 |
let val (a, ths) = get (Facts.Named ((name, pos), NONE)) |
e5bec882fdd0
more informative Token.Fact: retain name of dynamic fact (without selection);
wenzelm
parents:
57941
diff
changeset
|
272 |
in (if is_sel then NONE else a, ths) end; |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
273 |
in |
61814
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
274 |
Parse.$$$ "[" |-- Scan.pass context attribs --| Parse.$$$ "]" >> (fn srcs => |
24008 | 275 |
let |
47815 | 276 |
val atts = map (attribute_generic context) srcs; |
46775
6287653e63ec
canonical argument order for attribute application;
wenzelm
parents:
46512
diff
changeset
|
277 |
val (th', context') = fold (uncurry o Thm.apply_attribute) atts (Drule.dummy_thm, context); |
55740 | 278 |
in (context', pick ("", Position.none) [th']) end) |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
279 |
|| |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
280 |
(Scan.ahead Args.alt_name -- Args.named_fact get_fact |
27820 | 281 |
>> (fn (s, fact) => ("", Facts.Fact s, fact)) || |
58028
e4250d370657
tuned signature -- define some elementary operations earlier;
wenzelm
parents:
58025
diff
changeset
|
282 |
Scan.ahead (Parse.position fact_name -- Scan.option Parse.thm_sel) :|-- |
e4250d370657
tuned signature -- define some elementary operations earlier;
wenzelm
parents:
58025
diff
changeset
|
283 |
(fn ((name, pos), sel) => |
e4250d370657
tuned signature -- define some elementary operations earlier;
wenzelm
parents:
58025
diff
changeset
|
284 |
Args.named_fact (get_named (is_some sel) pos) --| Scan.option Parse.thm_sel |
e4250d370657
tuned signature -- define some elementary operations earlier;
wenzelm
parents:
58025
diff
changeset
|
285 |
>> (fn fact => (name, Facts.Named ((name, pos), sel), fact)))) |
61814
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
286 |
-- Scan.pass context opt_attribs >> (fn ((name, thmref, fact), srcs) => |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
287 |
let |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
288 |
val ths = Facts.select thmref fact; |
47815 | 289 |
val atts = map (attribute_generic context) srcs; |
46775
6287653e63ec
canonical argument order for attribute application;
wenzelm
parents:
46512
diff
changeset
|
290 |
val (ths', context') = |
6287653e63ec
canonical argument order for attribute application;
wenzelm
parents:
46512
diff
changeset
|
291 |
fold_map (curry (fold (uncurry o Thm.apply_attribute) atts)) ths context; |
55740 | 292 |
in (context', pick (name, Facts.pos_of_ref thmref) ths') end) |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
293 |
end); |
15456
956d6acacf89
Specific theorems in a named list of theorems can now be referred to
berghofe
parents:
15117
diff
changeset
|
294 |
|
18636 | 295 |
in |
296 |
||
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25983
diff
changeset
|
297 |
val thm = gen_thm Facts.the_single; |
18998 | 298 |
val multi_thm = gen_thm (K I); |
61476 | 299 |
val thms = Scan.repeats multi_thm; |
18636 | 300 |
|
301 |
end; |
|
302 |
||
5823 | 303 |
|
58028
e4250d370657
tuned signature -- define some elementary operations earlier;
wenzelm
parents:
58025
diff
changeset
|
304 |
(* transform fact expressions *) |
e4250d370657
tuned signature -- define some elementary operations earlier;
wenzelm
parents:
58025
diff
changeset
|
305 |
|
e4250d370657
tuned signature -- define some elementary operations earlier;
wenzelm
parents:
58025
diff
changeset
|
306 |
fun transform_facts phi = map (fn ((a, atts), bs) => |
61814
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
307 |
((Morphism.binding phi a, (map o map) (Token.transform phi) atts), |
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
308 |
bs |> map (fn (ths, btts) => (Morphism.fact phi ths, (map o map) (Token.transform phi) btts)))); |
58028
e4250d370657
tuned signature -- define some elementary operations earlier;
wenzelm
parents:
58025
diff
changeset
|
309 |
|
e4250d370657
tuned signature -- define some elementary operations earlier;
wenzelm
parents:
58025
diff
changeset
|
310 |
|
5879 | 311 |
|
45586
c94f149cdf5d
refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents:
45584
diff
changeset
|
312 |
(** partial evaluation -- observing rule/declaration/mixed attributes **) |
45493
12453fd8dcff
some support for partial evaluation of attributed facts;
wenzelm
parents:
45491
diff
changeset
|
313 |
|
56140
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
wenzelm
parents:
56052
diff
changeset
|
314 |
(*NB: result length may change due to rearrangement of symbolic expression*) |
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
wenzelm
parents:
56052
diff
changeset
|
315 |
|
45493
12453fd8dcff
some support for partial evaluation of attributed facts;
wenzelm
parents:
45491
diff
changeset
|
316 |
local |
45526 | 317 |
|
45493
12453fd8dcff
some support for partial evaluation of attributed facts;
wenzelm
parents:
45491
diff
changeset
|
318 |
fun apply_att src (context, th) = |
45526 | 319 |
let |
61814
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
320 |
val src1 = map Token.init_assignable src; |
47815 | 321 |
val result = attribute_generic context src1 (context, th); |
61814
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61527
diff
changeset
|
322 |
val src2 = map Token.closure src1; |
45526 | 323 |
in (src2, result) end; |
45493
12453fd8dcff
some support for partial evaluation of attributed facts;
wenzelm
parents:
45491
diff
changeset
|
324 |
|
45527
d2b3d16b673a
retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents:
45526
diff
changeset
|
325 |
fun err msg src = |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57942
diff
changeset
|
326 |
let val (name, pos) = Token.name_of_src src |
48992 | 327 |
in error (msg ^ " " ^ quote name ^ Position.here pos) end; |
45527
d2b3d16b673a
retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents:
45526
diff
changeset
|
328 |
|
d2b3d16b673a
retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents:
45526
diff
changeset
|
329 |
fun eval src ((th, dyn), (decls, context)) = |
d2b3d16b673a
retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents:
45526
diff
changeset
|
330 |
(case (apply_att src (context, th), dyn) of |
d2b3d16b673a
retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents:
45526
diff
changeset
|
331 |
((_, (NONE, SOME th')), NONE) => ((th', NONE), (decls, context)) |
d2b3d16b673a
retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents:
45526
diff
changeset
|
332 |
| ((_, (NONE, SOME _)), SOME _) => err "Mixed dynamic attribute followed by static rule" src |
d2b3d16b673a
retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents:
45526
diff
changeset
|
333 |
| ((src', (SOME context', NONE)), NONE) => |
45493
12453fd8dcff
some support for partial evaluation of attributed facts;
wenzelm
parents:
45491
diff
changeset
|
334 |
let |
12453fd8dcff
some support for partial evaluation of attributed facts;
wenzelm
parents:
45491
diff
changeset
|
335 |
val decls' = |
12453fd8dcff
some support for partial evaluation of attributed facts;
wenzelm
parents:
45491
diff
changeset
|
336 |
(case decls of |
45526 | 337 |
[] => [(th, [src'])] |
45493
12453fd8dcff
some support for partial evaluation of attributed facts;
wenzelm
parents:
45491
diff
changeset
|
338 |
| (th2, srcs2) :: rest => |
52683
fb028440473e
more official Thm.eq_thm_strict, without demanding ML equality type;
wenzelm
parents:
52487
diff
changeset
|
339 |
if Thm.eq_thm_strict (th, th2) |
45526 | 340 |
then ((th2, src' :: srcs2) :: rest) |
341 |
else (th, [src']) :: (th2, srcs2) :: rest); |
|
45527
d2b3d16b673a
retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents:
45526
diff
changeset
|
342 |
in ((th, NONE), (decls', context')) end |
d2b3d16b673a
retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents:
45526
diff
changeset
|
343 |
| ((src', (opt_context', opt_th')), _) => |
d2b3d16b673a
retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents:
45526
diff
changeset
|
344 |
let |
d2b3d16b673a
retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents:
45526
diff
changeset
|
345 |
val context' = the_default context opt_context'; |
d2b3d16b673a
retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents:
45526
diff
changeset
|
346 |
val th' = the_default th opt_th'; |
d2b3d16b673a
retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents:
45526
diff
changeset
|
347 |
val dyn' = |
d2b3d16b673a
retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents:
45526
diff
changeset
|
348 |
(case dyn of |
d2b3d16b673a
retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents:
45526
diff
changeset
|
349 |
NONE => SOME (th, [src']) |
d2b3d16b673a
retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents:
45526
diff
changeset
|
350 |
| SOME (dyn_th, srcs) => SOME (dyn_th, src' :: srcs)); |
d2b3d16b673a
retain mixed attributes as dynamic theorem expression, but disallow subsequent static rules;
wenzelm
parents:
45526
diff
changeset
|
351 |
in ((th', dyn'), (decls, context')) end); |
45493
12453fd8dcff
some support for partial evaluation of attributed facts;
wenzelm
parents:
45491
diff
changeset
|
352 |
|
12453fd8dcff
some support for partial evaluation of attributed facts;
wenzelm
parents:
45491
diff
changeset
|
353 |
in |
12453fd8dcff
some support for partial evaluation of attributed facts;
wenzelm
parents:
45491
diff
changeset
|
354 |
|
12453fd8dcff
some support for partial evaluation of attributed facts;
wenzelm
parents:
45491
diff
changeset
|
355 |
fun partial_evaluation ctxt facts = |
57858
39d9c7f175e0
refined context visibility again (amending f5f9fad3321c, 8e3e004f1c31): avoid spurious warning due to global config options;
wenzelm
parents:
56438
diff
changeset
|
356 |
(facts, Context.Proof (Context_Position.not_really ctxt)) |-> |
45586
c94f149cdf5d
refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents:
45584
diff
changeset
|
357 |
fold_map (fn ((b, more_atts), fact) => fn context => |
c94f149cdf5d
refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents:
45584
diff
changeset
|
358 |
let |
c94f149cdf5d
refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents:
45584
diff
changeset
|
359 |
val (fact', (decls, context')) = |
c94f149cdf5d
refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents:
45584
diff
changeset
|
360 |
(fact, ([], context)) |-> fold_map (fn (ths, atts) => fn res1 => |
c94f149cdf5d
refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents:
45584
diff
changeset
|
361 |
(ths, res1) |-> fold_map (fn th => fn res2 => |
c94f149cdf5d
refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents:
45584
diff
changeset
|
362 |
let |
c94f149cdf5d
refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents:
45584
diff
changeset
|
363 |
val ((th', dyn'), res3) = fold eval (atts @ more_atts) ((th, NONE), res2); |
c94f149cdf5d
refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents:
45584
diff
changeset
|
364 |
val th_atts' = |
c94f149cdf5d
refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents:
45584
diff
changeset
|
365 |
(case dyn' of |
c94f149cdf5d
refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents:
45584
diff
changeset
|
366 |
NONE => (th', []) |
c94f149cdf5d
refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents:
45584
diff
changeset
|
367 |
| SOME (dyn_th', atts') => (dyn_th', rev atts')); |
c94f149cdf5d
refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents:
45584
diff
changeset
|
368 |
in (th_atts', res3) end)) |
c94f149cdf5d
refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents:
45584
diff
changeset
|
369 |
|>> flat; |
c94f149cdf5d
refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents:
45584
diff
changeset
|
370 |
val decls' = rev (map (apsnd rev) decls); |
c94f149cdf5d
refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents:
45584
diff
changeset
|
371 |
val facts' = |
52683
fb028440473e
more official Thm.eq_thm_strict, without demanding ML equality type;
wenzelm
parents:
52487
diff
changeset
|
372 |
if eq_list (eq_fst Thm.eq_thm_strict) (decls', fact') then |
45586
c94f149cdf5d
refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents:
45584
diff
changeset
|
373 |
[((b, []), map2 (fn (th, atts1) => fn (_, atts2) => (th, atts1 @ atts2)) decls' fact')] |
45619 | 374 |
else if null decls' then [((b, []), fact')] |
45586
c94f149cdf5d
refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents:
45584
diff
changeset
|
375 |
else [(empty_binding, decls'), ((b, []), fact')]; |
c94f149cdf5d
refined partial evaluation of attributes: avoid duplication of facts for plain declarations;
wenzelm
parents:
45584
diff
changeset
|
376 |
in (facts', context') end) |
46906
3c1787d46935
suppress vacous notes elements, with subtle change of semantics: 'interpret' no longer pulls-in unnamed facts "by fact";
wenzelm
parents:
46903
diff
changeset
|
377 |
|> fst |> flat |> map (apsnd (map (apfst single))) |
3c1787d46935
suppress vacous notes elements, with subtle change of semantics: 'interpret' no longer pulls-in unnamed facts "by fact";
wenzelm
parents:
46903
diff
changeset
|
378 |
|> filter_out (fn (b, fact) => is_empty_binding b andalso forall (null o #2) fact); |
45493
12453fd8dcff
some support for partial evaluation of attributed facts;
wenzelm
parents:
45491
diff
changeset
|
379 |
|
12453fd8dcff
some support for partial evaluation of attributed facts;
wenzelm
parents:
45491
diff
changeset
|
380 |
end; |
12453fd8dcff
some support for partial evaluation of attributed facts;
wenzelm
parents:
45491
diff
changeset
|
381 |
|
12453fd8dcff
some support for partial evaluation of attributed facts;
wenzelm
parents:
45491
diff
changeset
|
382 |
|
12453fd8dcff
some support for partial evaluation of attributed facts;
wenzelm
parents:
45491
diff
changeset
|
383 |
|
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
384 |
(** configuration options **) |
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 |
(* naming *) |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
387 |
|
33522 | 388 |
structure Configs = Theory_Data |
24713 | 389 |
( |
39163
4d701c0388c3
more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents:
39137
diff
changeset
|
390 |
type T = Config.raw Symtab.table; |
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
391 |
val empty = Symtab.empty; |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
392 |
val extend = I; |
33522 | 393 |
fun merge data = Symtab.merge (K true) data; |
24713 | 394 |
); |
5823 | 395 |
|
59917
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59064
diff
changeset
|
396 |
fun print_options verbose ctxt = |
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
397 |
let |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
398 |
fun prt (name, config) = |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
399 |
let val value = Config.get ctxt config in |
50301 | 400 |
Pretty.block [Pretty.mark_str name, Pretty.str (": " ^ Config.print_type value ^ " ="), |
401 |
Pretty.brk 1, Pretty.str (Config.print_value value)] |
|
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
402 |
end; |
56027
25889f5c39a8
prefer Name_Space.pretty with its builtin markup;
wenzelm
parents:
56026
diff
changeset
|
403 |
val space = attribute_space ctxt; |
56052 | 404 |
val configs = |
59917
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59064
diff
changeset
|
405 |
Name_Space.markup_entries verbose ctxt space |
56052 | 406 |
(Symtab.dest (Configs.get (Proof_Context.theory_of ctxt))); |
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
407 |
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
|
408 |
|
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
409 |
|
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
410 |
(* concrete syntax *) |
23988
aa46577f4f44
added attribute "option" for setting configuration options;
wenzelm
parents:
23937
diff
changeset
|
411 |
|
24003
da76d7e6435c
attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents:
23988
diff
changeset
|
412 |
local |
da76d7e6435c
attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents:
23988
diff
changeset
|
413 |
|
36950 | 414 |
val equals = Parse.$$$ "="; |
24003
da76d7e6435c
attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents:
23988
diff
changeset
|
415 |
|
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
416 |
fun scan_value (Config.Bool _) = |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
417 |
equals -- Args.$$$ "false" >> K (Config.Bool false) || |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
418 |
equals -- Args.$$$ "true" >> K (Config.Bool true) || |
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
419 |
Scan.succeed (Config.Bool true) |
36950 | 420 |
| scan_value (Config.Int _) = equals |-- Parse.int >> Config.Int |
40291 | 421 |
| scan_value (Config.Real _) = equals |-- Parse.real >> Config.Real |
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
422 |
| scan_value (Config.String _) = equals |-- Args.name >> Config.String; |
24003
da76d7e6435c
attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents:
23988
diff
changeset
|
423 |
|
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
424 |
fun scan_config thy config = |
36787
f60e4dd6d76f
renamed Config.get_thy to Config.get_global etc. to indicate that this is not the real thing;
wenzelm
parents:
36002
diff
changeset
|
425 |
let val config_type = Config.get_global thy config |
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
426 |
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
|
427 |
|
42616
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
428 |
fun register binding config thy = |
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
429 |
let val name = Sign.full_name thy binding in |
24126
913e1fa904fb
turned simp_depth_limit into configuration option;
wenzelm
parents:
24110
diff
changeset
|
430 |
thy |
42616
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
431 |
|> setup binding (Scan.lift (scan_config thy config) >> Morphism.form) "configuration option" |
24126
913e1fa904fb
turned simp_depth_limit into configuration option;
wenzelm
parents:
24110
diff
changeset
|
432 |
|> Configs.map (Symtab.update (name, config)) |
913e1fa904fb
turned simp_depth_limit into configuration option;
wenzelm
parents:
24110
diff
changeset
|
433 |
end; |
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
434 |
|
42808
30870aee8a3f
discontinued global config options within attribute name space;
wenzelm
parents:
42669
diff
changeset
|
435 |
fun declare make coerce binding default = |
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
436 |
let |
42616
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
437 |
val name = Binding.name_of binding; |
56438 | 438 |
val pos = Binding.pos_of binding; |
439 |
val config_value = Config.declare (name, pos) (make o default); |
|
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
440 |
val config = coerce config_value; |
42616
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
441 |
in (config, register binding config_value) end; |
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
442 |
|
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
443 |
in |
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
444 |
|
56438 | 445 |
fun register_config config = |
446 |
register (Binding.make (Config.name_of config, Config.pos_of config)) config; |
|
52040
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
447 |
|
42808
30870aee8a3f
discontinued global config options within attribute name space;
wenzelm
parents:
42669
diff
changeset
|
448 |
val config_bool = declare Config.Bool Config.bool; |
30870aee8a3f
discontinued global config options within attribute name space;
wenzelm
parents:
42669
diff
changeset
|
449 |
val config_int = declare Config.Int Config.int; |
30870aee8a3f
discontinued global config options within attribute name space;
wenzelm
parents:
42669
diff
changeset
|
450 |
val config_real = declare Config.Real Config.real; |
30870aee8a3f
discontinued global config options within attribute name space;
wenzelm
parents:
42669
diff
changeset
|
451 |
val config_string = declare Config.String Config.string; |
42616
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
452 |
|
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
453 |
end; |
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
454 |
|
42616
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
455 |
|
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
456 |
(* implicit setup *) |
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
457 |
|
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
458 |
local |
24110
4ab3084e311c
tuned config options: eliminated separate attribute "option";
wenzelm
parents:
24030
diff
changeset
|
459 |
|
42616
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
460 |
fun setup_config declare_config binding default = |
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
461 |
let |
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
462 |
val (config, setup) = declare_config binding default; |
53171 | 463 |
val _ = Theory.setup setup; |
42616
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
464 |
in config end; |
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
465 |
|
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
466 |
in |
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
467 |
|
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
468 |
val setup_config_bool = setup_config config_bool; |
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
469 |
val setup_config_int = setup_config config_int; |
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
470 |
val setup_config_string = setup_config config_string; |
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents:
42380
diff
changeset
|
471 |
val setup_config_real = setup_config config_real; |
24003
da76d7e6435c
attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents:
23988
diff
changeset
|
472 |
|
da76d7e6435c
attribute "option": more elaborate syntax (with value parsing);
wenzelm
parents:
23988
diff
changeset
|
473 |
end; |
23988
aa46577f4f44
added attribute "option" for setting configuration options;
wenzelm
parents:
23937
diff
changeset
|
474 |
|
aa46577f4f44
added attribute "option" for setting configuration options;
wenzelm
parents:
23937
diff
changeset
|
475 |
|
52040
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
476 |
(* system options *) |
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
477 |
|
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
478 |
local |
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
479 |
|
56438 | 480 |
fun declare_option coerce (name, pos) = |
52040
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
481 |
let |
56438 | 482 |
val config = Config.declare_option (name, pos); |
52040
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
483 |
in (coerce config, register_config config) end; |
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
484 |
|
56438 | 485 |
fun setup_option coerce (name, pos) = |
52040
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
486 |
let |
56438 | 487 |
val config = Config.declare_option (name, pos); |
53171 | 488 |
val _ = Theory.setup (register_config config); |
52040
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
489 |
in coerce config end; |
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
490 |
|
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
491 |
in |
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
492 |
|
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
493 |
val option_bool = declare_option Config.bool; |
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
494 |
val option_int = declare_option Config.int; |
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
495 |
val option_real = declare_option Config.real; |
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
496 |
val option_string = declare_option Config.string; |
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
497 |
|
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
498 |
val setup_option_bool = setup_option Config.bool; |
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
499 |
val setup_option_int = setup_option Config.int; |
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
500 |
val setup_option_real = setup_option Config.real; |
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
501 |
val setup_option_string = setup_option Config.string; |
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
502 |
|
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
503 |
end; |
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
504 |
|
852939d19216
system options as context-sensitive configuration options within the attribute name space;
wenzelm
parents:
52039
diff
changeset
|
505 |
|
18636 | 506 |
(* theory setup *) |
5823 | 507 |
|
53171 | 508 |
val _ = Theory.setup |
61527 | 509 |
(register_config Goal.quick_and_dirty_raw #> |
52059 | 510 |
register_config Ast.trace_raw #> |
43347 | 511 |
register_config Ast.stats_raw #> |
42289
dafae095d733
discontinued special status of structure Printer;
wenzelm
parents:
42284
diff
changeset
|
512 |
register_config Printer.show_brackets_raw #> |
dafae095d733
discontinued special status of structure Printer;
wenzelm
parents:
42284
diff
changeset
|
513 |
register_config Printer.show_sorts_raw #> |
dafae095d733
discontinued special status of structure Printer;
wenzelm
parents:
42284
diff
changeset
|
514 |
register_config Printer.show_types_raw #> |
49657
40e4feac2921
turn constraints into Isabelle_Markup.typing, depending on show_markup options;
wenzelm
parents:
48992
diff
changeset
|
515 |
register_config Printer.show_markup_raw #> |
42289
dafae095d733
discontinued special status of structure Printer;
wenzelm
parents:
42284
diff
changeset
|
516 |
register_config Printer.show_structs_raw #> |
dafae095d733
discontinued special status of structure Printer;
wenzelm
parents:
42284
diff
changeset
|
517 |
register_config Printer.show_question_marks_raw #> |
46512
4f9f61f9b535
simplified configuration options for syntax ambiguity;
wenzelm
parents:
46506
diff
changeset
|
518 |
register_config Syntax.ambiguity_warning_raw #> |
46506
c7faa011bfa7
simplified configuration options for syntax ambiguity;
wenzelm
parents:
46126
diff
changeset
|
519 |
register_config Syntax.ambiguity_limit_raw #> |
42284 | 520 |
register_config Syntax_Trans.eta_contract_raw #> |
42669
04dfffda5671
more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents:
42616
diff
changeset
|
521 |
register_config Name_Space.names_long_raw #> |
04dfffda5671
more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents:
42616
diff
changeset
|
522 |
register_config Name_Space.names_short_raw #> |
04dfffda5671
more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents:
42616
diff
changeset
|
523 |
register_config Name_Space.names_unique_raw #> |
56303
4cc3f4db3447
clarified Isabelle/ML bootstrap, such that Execution does not require ML_Compiler;
wenzelm
parents:
56281
diff
changeset
|
524 |
register_config ML_Options.source_trace_raw #> |
4cc3f4db3447
clarified Isabelle/ML bootstrap, such that Execution does not require ML_Compiler;
wenzelm
parents:
56281
diff
changeset
|
525 |
register_config ML_Options.exception_trace_raw #> |
60743 | 526 |
register_config ML_Options.debugger_raw #> |
56303
4cc3f4db3447
clarified Isabelle/ML bootstrap, such that Execution does not require ML_Compiler;
wenzelm
parents:
56281
diff
changeset
|
527 |
register_config ML_Options.print_depth_raw #> |
42360 | 528 |
register_config Proof_Context.show_abbrevs_raw #> |
39163
4d701c0388c3
more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents:
39137
diff
changeset
|
529 |
register_config Goal_Display.goals_limit_raw #> |
4d701c0388c3
more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents:
39137
diff
changeset
|
530 |
register_config Goal_Display.show_main_goal_raw #> |
61268 | 531 |
register_config Thm.show_consts_raw #> |
532 |
register_config Thm.show_hyps_raw #> |
|
533 |
register_config Thm.show_tags_raw #> |
|
52709
0e4bacf21e77
turned pattern unify flag into configuration option (global only);
wenzelm
parents:
52683
diff
changeset
|
534 |
register_config Pattern.unify_trace_failure_raw #> |
39163
4d701c0388c3
more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents:
39137
diff
changeset
|
535 |
register_config Unify.trace_bound_raw #> |
4d701c0388c3
more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents:
39137
diff
changeset
|
536 |
register_config Unify.search_bound_raw #> |
4d701c0388c3
more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents:
39137
diff
changeset
|
537 |
register_config Unify.trace_simp_raw #> |
4d701c0388c3
more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents:
39137
diff
changeset
|
538 |
register_config Unify.trace_types_raw #> |
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41183
diff
changeset
|
539 |
register_config Raw_Simplifier.simp_depth_limit_raw #> |
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41183
diff
changeset
|
540 |
register_config Raw_Simplifier.simp_trace_depth_limit_raw #> |
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
41183
diff
changeset
|
541 |
register_config Raw_Simplifier.simp_debug_raw #> |
53171 | 542 |
register_config Raw_Simplifier.simp_trace_raw); |
5823 | 543 |
|
544 |
end; |