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