author | wenzelm |
Mon, 15 Jan 2018 14:31:57 +0100 | |
changeset 67438 | fdb7b995974d |
parent 67147 | dea94b1aabc3 |
child 67625 | eb11d722e3ef |
permissions | -rw-r--r-- |
38379
67d71449e85b
more convenient split of class modules: class and class_declaration
haftmann
parents:
38377
diff
changeset
|
1 |
(* Title: Pure/Isar/class.ML |
24218 | 2 |
Author: Florian Haftmann, TU Muenchen |
3 |
||
38379
67d71449e85b
more convenient split of class modules: class and class_declaration
haftmann
parents:
38377
diff
changeset
|
4 |
Type classes derived from primitive axclasses and locales. |
24218 | 5 |
*) |
6 |
||
38379
67d71449e85b
more convenient split of class modules: class and class_declaration
haftmann
parents:
38377
diff
changeset
|
7 |
signature CLASS = |
24218 | 8 |
sig |
25462 | 9 |
(*classes*) |
29526 | 10 |
val is_class: theory -> class -> bool |
11 |
val these_params: theory -> sort -> (string * (class * (string * typ))) list |
|
38379
67d71449e85b
more convenient split of class modules: class and class_declaration
haftmann
parents:
38377
diff
changeset
|
12 |
val base_sort: theory -> class -> sort |
67d71449e85b
more convenient split of class modules: class and class_declaration
haftmann
parents:
38377
diff
changeset
|
13 |
val rules: theory -> class -> thm option * thm |
67d71449e85b
more convenient split of class modules: class and class_declaration
haftmann
parents:
38377
diff
changeset
|
14 |
val these_defs: theory -> sort -> thm list |
63347 | 15 |
val these_operations: theory -> sort -> (string * (class * ((typ * term) * bool))) list |
42359 | 16 |
val print_classes: Proof.context -> unit |
25311 | 17 |
val init: class -> theory -> Proof.context |
38379
67d71449e85b
more convenient split of class modules: class and class_declaration
haftmann
parents:
38377
diff
changeset
|
18 |
val begin: class list -> sort -> Proof.context -> Proof.context |
63347 | 19 |
val const: class -> (binding * mixfix) * term -> term list * term list -> |
20 |
local_theory -> local_theory |
|
21 |
val abbrev: class -> Syntax.mode -> (binding * mixfix) * term -> local_theory -> |
|
22 |
(term * term) * local_theory |
|
38379
67d71449e85b
more convenient split of class modules: class and class_declaration
haftmann
parents:
38377
diff
changeset
|
23 |
val redeclare_operations: theory -> sort -> Proof.context -> Proof.context |
29526 | 24 |
val class_prefix: string -> string |
63347 | 25 |
val register: class -> class list -> ((string * typ) * (string * typ)) list -> |
26 |
sort -> morphism -> morphism -> thm option -> thm option -> thm -> theory -> theory |
|
25485 | 27 |
|
25462 | 28 |
(*instances*) |
38379
67d71449e85b
more convenient split of class modules: class and class_declaration
haftmann
parents:
38377
diff
changeset
|
29 |
val instantiation: string list * (string * sort) list * sort -> theory -> local_theory |
26247 | 30 |
val instantiation_instance: (local_theory -> local_theory) |
31 |
-> local_theory -> Proof.state |
|
32 |
val prove_instantiation_instance: (Proof.context -> tactic) |
|
33 |
-> local_theory -> local_theory |
|
28666 | 34 |
val prove_instantiation_exit: (Proof.context -> tactic) |
35 |
-> local_theory -> theory |
|
36 |
val prove_instantiation_exit_result: (morphism -> 'a -> 'b) |
|
37 |
-> (Proof.context -> 'b -> tactic) -> 'a -> local_theory -> 'b * theory |
|
31869 | 38 |
val read_multi_arity: theory -> xstring list * xstring list * xstring |
39 |
-> string list * (string * sort) list * sort |
|
38348
cf7b2121ad9d
moved instantiation target formally to class_target.ML
haftmann
parents:
38107
diff
changeset
|
40 |
val instantiation_cmd: xstring list * xstring list * xstring -> theory -> local_theory |
38377 | 41 |
val instance_arity_cmd: xstring list * xstring list * xstring -> theory -> Proof.state |
25485 | 42 |
|
31635 | 43 |
(*subclasses*) |
44 |
val classrel: class * class -> theory -> Proof.state |
|
45 |
val classrel_cmd: xstring * xstring -> theory -> Proof.state |
|
38379
67d71449e85b
more convenient split of class modules: class and class_declaration
haftmann
parents:
38377
diff
changeset
|
46 |
val register_subclass: class * class -> morphism option -> Element.witness option |
54866
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
47 |
-> morphism -> local_theory -> local_theory |
31635 | 48 |
|
49 |
(*tactics*) |
|
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59423
diff
changeset
|
50 |
val intro_classes_tac: Proof.context -> thm list -> tactic |
60618
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60347
diff
changeset
|
51 |
val standard_intro_classes_tac: Proof.context -> thm list -> tactic |
59296
002d817b4c37
formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
haftmann
parents:
59150
diff
changeset
|
52 |
|
002d817b4c37
formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
haftmann
parents:
59150
diff
changeset
|
53 |
(*diagnostics*) |
59423
3a0044e95eba
backed out obsolete workaround from ef1edfb36af7
haftmann
parents:
59420
diff
changeset
|
54 |
val pretty_specification: theory -> class -> Pretty.T list |
24218 | 55 |
end; |
56 |
||
38379
67d71449e85b
more convenient split of class modules: class and class_declaration
haftmann
parents:
38377
diff
changeset
|
57 |
structure Class: CLASS = |
24218 | 58 |
struct |
59 |
||
24589 | 60 |
(** class data **) |
24218 | 61 |
|
46919 | 62 |
datatype class_data = Class_Data of { |
28715
238f9966c80e
class morphism stemming from locale interpretation
haftmann
parents:
28674
diff
changeset
|
63 |
|
238f9966c80e
class morphism stemming from locale interpretation
haftmann
parents:
28674
diff
changeset
|
64 |
(* static part *) |
24218 | 65 |
consts: (string * string) list |
24836 | 66 |
(*locale parameter ~> constant name*), |
25062 | 67 |
base_sort: sort, |
29545 | 68 |
base_morph: morphism |
29439 | 69 |
(*static part of canonical morphism*), |
32850 | 70 |
export_morph: morphism, |
25618 | 71 |
assm_intro: thm option, |
72 |
of_class: thm, |
|
73 |
axiom: thm option, |
|
42359 | 74 |
|
28715
238f9966c80e
class morphism stemming from locale interpretation
haftmann
parents:
28674
diff
changeset
|
75 |
(* dynamic part *) |
24657 | 76 |
defs: thm list, |
60346 | 77 |
operations: (string * (class * ((typ * term) * bool))) list |
28715
238f9966c80e
class morphism stemming from locale interpretation
haftmann
parents:
28674
diff
changeset
|
78 |
|
48106 | 79 |
(* n.b. |
80 |
params = logical parameters of class |
|
81 |
operations = operations participating in user-space type system |
|
82 |
*) |
|
24657 | 83 |
}; |
24218 | 84 |
|
32850 | 85 |
fun make_class_data ((consts, base_sort, base_morph, export_morph, assm_intro, of_class, axiom), |
25368
f12613fda79d
proper implementation of check phase; non-qualified names for class operations
haftmann
parents:
25344
diff
changeset
|
86 |
(defs, operations)) = |
46919 | 87 |
Class_Data {consts = consts, base_sort = base_sort, |
32850 | 88 |
base_morph = base_morph, export_morph = export_morph, assm_intro = assm_intro, |
46919 | 89 |
of_class = of_class, axiom = axiom, defs = defs, operations = operations}; |
90 |
fun map_class_data f (Class_Data {consts, base_sort, base_morph, export_morph, assm_intro, |
|
91 |
of_class, axiom, defs, operations}) = |
|
32850 | 92 |
make_class_data (f ((consts, base_sort, base_morph, export_morph, assm_intro, of_class, axiom), |
25368
f12613fda79d
proper implementation of check phase; non-qualified names for class operations
haftmann
parents:
25344
diff
changeset
|
93 |
(defs, operations))); |
46919 | 94 |
fun merge_class_data _ (Class_Data {consts = consts, |
32850 | 95 |
base_sort = base_sort, base_morph = base_morph, export_morph = export_morph, assm_intro = assm_intro, |
46919 | 96 |
of_class = of_class, axiom = axiom, defs = defs1, operations = operations1}, |
97 |
Class_Data {consts = _, base_sort = _, base_morph = _, export_morph = _, assm_intro = _, |
|
98 |
of_class = _, axiom = _, defs = defs2, operations = operations2}) = |
|
32850 | 99 |
make_class_data ((consts, base_sort, base_morph, export_morph, assm_intro, of_class, axiom), |
24914
95cda5dd58d5
added proper subclass concept; improved class target
haftmann
parents:
24901
diff
changeset
|
100 |
(Thm.merge_thms (defs1, defs2), |
25368
f12613fda79d
proper implementation of check phase; non-qualified names for class operations
haftmann
parents:
25344
diff
changeset
|
101 |
AList.merge (op =) (K true) (operations1, operations2))); |
24218 | 102 |
|
46919 | 103 |
structure Class_Data = Theory_Data |
24218 | 104 |
( |
25038 | 105 |
type T = class_data Graph.T |
106 |
val empty = Graph.empty; |
|
24218 | 107 |
val extend = I; |
33522 | 108 |
val merge = Graph.join merge_class_data; |
24218 | 109 |
); |
110 |
||
111 |
||
112 |
(* queries *) |
|
113 |
||
46919 | 114 |
fun lookup_class_data thy class = |
115 |
(case try (Graph.get_node (Class_Data.get thy)) class of |
|
116 |
SOME (Class_Data data) => SOME data |
|
117 |
| NONE => NONE); |
|
24218 | 118 |
|
46919 | 119 |
fun the_class_data thy class = |
120 |
(case lookup_class_data thy class of |
|
121 |
NONE => error ("Undeclared class " ^ quote class) |
|
122 |
| SOME data => data); |
|
24218 | 123 |
|
25038 | 124 |
val is_class = is_some oo lookup_class_data; |
125 |
||
46919 | 126 |
val ancestry = Graph.all_succs o Class_Data.get; |
127 |
val heritage = Graph.all_preds o Class_Data.get; |
|
29509
1ff0f3f08a7b
migrated class package to new locale implementation
haftmann
parents:
29439
diff
changeset
|
128 |
|
25002 | 129 |
fun these_params thy = |
24218 | 130 |
let |
131 |
fun params class = |
|
132 |
let |
|
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
133 |
val const_typs = (#params o Axclass.get_info thy) class; |
24657 | 134 |
val const_names = (#consts o the_class_data thy) class; |
24218 | 135 |
in |
26518 | 136 |
(map o apsnd) |
137 |
(fn c => (class, (c, (the o AList.lookup (op =) const_typs) c))) const_names |
|
24218 | 138 |
end; |
139 |
in maps params o ancestry thy end; |
|
140 |
||
29526 | 141 |
val base_sort = #base_sort oo the_class_data; |
142 |
||
143 |
fun rules thy class = |
|
46919 | 144 |
let val {axiom, of_class, ...} = the_class_data thy class |
29526 | 145 |
in (axiom, of_class) end; |
146 |
||
147 |
fun all_assm_intros thy = |
|
46919 | 148 |
Graph.fold (fn (_, (Class_Data {assm_intro, ...}, _)) => fold (insert Thm.eq_thm) |
149 |
(the_list assm_intro)) (Class_Data.get thy) []; |
|
24218 | 150 |
|
29526 | 151 |
fun these_defs thy = maps (#defs o the_class_data thy) o ancestry thy; |
152 |
fun these_operations thy = maps (#operations o the_class_data thy) o ancestry thy; |
|
29358 | 153 |
|
29526 | 154 |
val base_morphism = #base_morph oo the_class_data; |
47078 | 155 |
|
46919 | 156 |
fun morphism thy class = |
157 |
(case Element.eq_morphism thy (these_defs thy [class]) of |
|
158 |
SOME eq_morph => base_morphism thy class $> eq_morph |
|
159 |
| NONE => base_morphism thy class); |
|
47078 | 160 |
|
32850 | 161 |
val export_morphism = #export_morph oo the_class_data; |
28715
238f9966c80e
class morphism stemming from locale interpretation
haftmann
parents:
28674
diff
changeset
|
162 |
|
63347 | 163 |
fun pretty_param ctxt (c, ty) = |
164 |
Pretty.block |
|
165 |
[Name_Space.pretty ctxt (Proof_Context.const_space ctxt) c, Pretty.str " ::", |
|
166 |
Pretty.brk 1, Syntax.pretty_typ ctxt ty]; |
|
167 |
||
42359 | 168 |
fun print_classes ctxt = |
24218 | 169 |
let |
42360 | 170 |
val thy = Proof_Context.theory_of ctxt; |
24218 | 171 |
val algebra = Sign.classes_of thy; |
51510
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
172 |
|
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
173 |
val class_space = Proof_Context.class_space ctxt; |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
174 |
val type_space = Proof_Context.type_space ctxt; |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
175 |
|
24218 | 176 |
val arities = |
177 |
Symtab.empty |
|
178 |
|> Symtab.fold (fn (tyco, arities) => fold (fn (class, _) => |
|
179 |
Symtab.map_default (class, []) (insert (op =) tyco)) arities) |
|
36328
4d9deabf6474
replaced Sorts.rep_algebra by slightly more abstract selectors classes_of/arities_of;
wenzelm
parents:
36323
diff
changeset
|
180 |
(Sorts.arities_of algebra); |
51510
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
181 |
|
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
182 |
fun prt_supersort class = |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
183 |
Syntax.pretty_sort ctxt (Sign.minimize_sort thy (Sign.super_classes thy class)); |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
184 |
|
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
185 |
fun prt_arity class tyco = |
24218 | 186 |
let |
187 |
val Ss = Sorts.mg_domain algebra tyco [class]; |
|
24920 | 188 |
in Syntax.pretty_arity ctxt (tyco, Ss, [class]) end; |
51510
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
189 |
|
63347 | 190 |
fun prt_param (c, ty) = pretty_param ctxt (c, Type.strip_sorts_dummy ty); |
51510
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
191 |
|
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
192 |
fun prt_entry class = |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
193 |
Pretty.block |
55763 | 194 |
([Pretty.keyword1 "class", Pretty.brk 1, |
53539 | 195 |
Name_Space.pretty ctxt class_space class, Pretty.str ":", Pretty.fbrk, |
196 |
Pretty.block [Pretty.str "supersort: ", prt_supersort class]] @ |
|
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
197 |
(case try (Axclass.get_info thy) class of |
51510
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
198 |
NONE => [] |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
199 |
| SOME {params, ...} => |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
200 |
[Pretty.fbrk, Pretty.big_list "parameters:" (map prt_param params)]) @ |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
201 |
(case Symtab.lookup arities class of |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
202 |
NONE => [] |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
203 |
| SOME ars => |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
204 |
[Pretty.fbrk, Pretty.big_list "instances:" |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
205 |
(map (prt_arity class) (sort (Name_Space.extern_ord ctxt type_space) ars))])); |
24218 | 206 |
in |
51510
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
207 |
Sorts.all_classes algebra |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
208 |
|> sort (Name_Space.extern_ord ctxt class_space) |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
209 |
|> map prt_entry |
56334
6b3739fee456
some shortcuts for chunks, which sometimes avoid bulky string output;
wenzelm
parents:
56204
diff
changeset
|
210 |
|> Pretty.writeln_chunks2 |
24218 | 211 |
end; |
212 |
||
213 |
||
214 |
(* updaters *) |
|
215 |
||
32850 | 216 |
fun register class sups params base_sort base_morph export_morph |
52636 | 217 |
some_axiom some_assm_intro of_class thy = |
25002 | 218 |
let |
25368
f12613fda79d
proper implementation of check phase; non-qualified names for class operations
haftmann
parents:
25344
diff
changeset
|
219 |
val operations = map (fn (v_ty as (_, ty), (c, _)) => |
60346 | 220 |
(c, (class, ((ty, Free v_ty), false)))) params; |
25038 | 221 |
val add_class = Graph.new_node (class, |
59058
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents:
58837
diff
changeset
|
222 |
make_class_data (((map o apply2) fst params, base_sort, |
61085 | 223 |
base_morph, export_morph, Option.map Thm.trim_context some_assm_intro, |
224 |
Thm.trim_context of_class, Option.map Thm.trim_context some_axiom), ([], operations))) |
|
29526 | 225 |
#> fold (curry Graph.add_edge class) sups; |
46919 | 226 |
in Class_Data.map add_class thy end; |
24218 | 227 |
|
46919 | 228 |
fun activate_defs class thms thy = |
229 |
(case Element.eq_morphism thy thms of |
|
230 |
SOME eq_morph => fold (fn cls => fn thy => |
|
38107 | 231 |
Context.theory_map (Locale.amend_registration (cls, base_morphism thy cls) |
232 |
(eq_morph, true) (export_morphism thy cls)) thy) (heritage thy [class]) thy |
|
46919 | 233 |
| NONE => thy); |
29526 | 234 |
|
60346 | 235 |
fun register_operation class (c, t) input_only thy = |
25062 | 236 |
let |
29358 | 237 |
val base_sort = base_sort thy class; |
29439 | 238 |
val prep_typ = map_type_tfree |
239 |
(fn (v, sort) => if Name.aT = v |
|
240 |
then TFree (v, base_sort) else TVar ((v, 0), sort)); |
|
25368
f12613fda79d
proper implementation of check phase; non-qualified names for class operations
haftmann
parents:
25344
diff
changeset
|
241 |
val t' = map_types prep_typ t; |
f12613fda79d
proper implementation of check phase; non-qualified names for class operations
haftmann
parents:
25344
diff
changeset
|
242 |
val ty' = Term.fastype_of t'; |
25062 | 243 |
in |
244 |
thy |
|
57173
897cc57a6f55
always refine interpretation morphism using canonical constant's definition theorem
haftmann
parents:
57161
diff
changeset
|
245 |
|> (Class_Data.map o Graph.map_node class o map_class_data o apsnd o apsnd) |
60346 | 246 |
(cons (c, (class, ((ty', t'), input_only)))) |
57173
897cc57a6f55
always refine interpretation morphism using canonical constant's definition theorem
haftmann
parents:
57161
diff
changeset
|
247 |
end; |
897cc57a6f55
always refine interpretation morphism using canonical constant's definition theorem
haftmann
parents:
57161
diff
changeset
|
248 |
|
897cc57a6f55
always refine interpretation morphism using canonical constant's definition theorem
haftmann
parents:
57161
diff
changeset
|
249 |
fun register_def class def_thm thy = |
897cc57a6f55
always refine interpretation morphism using canonical constant's definition theorem
haftmann
parents:
57161
diff
changeset
|
250 |
let |
61085 | 251 |
val sym_thm = Thm.trim_context (Thm.symmetric def_thm) |
57173
897cc57a6f55
always refine interpretation morphism using canonical constant's definition theorem
haftmann
parents:
57161
diff
changeset
|
252 |
in |
897cc57a6f55
always refine interpretation morphism using canonical constant's definition theorem
haftmann
parents:
57161
diff
changeset
|
253 |
thy |
897cc57a6f55
always refine interpretation morphism using canonical constant's definition theorem
haftmann
parents:
57161
diff
changeset
|
254 |
|> (Class_Data.map o Graph.map_node class o map_class_data o apsnd o apfst) |
897cc57a6f55
always refine interpretation morphism using canonical constant's definition theorem
haftmann
parents:
57161
diff
changeset
|
255 |
(cons sym_thm) |
897cc57a6f55
always refine interpretation morphism using canonical constant's definition theorem
haftmann
parents:
57161
diff
changeset
|
256 |
|> activate_defs class [sym_thm] |
25062 | 257 |
end; |
24218 | 258 |
|
259 |
||
24589 | 260 |
(** classes and class target **) |
24218 | 261 |
|
25002 | 262 |
(* class context syntax *) |
24748 | 263 |
|
60347 | 264 |
fun make_rewrite t c_ty = |
265 |
let |
|
266 |
val (vs, t') = strip_abs t; |
|
267 |
val vts = map snd vs |
|
268 |
|> Name.invent_names Name.context Name.uu |
|
269 |
|> map (fn (v, T) => Var ((v, 0), T)); |
|
270 |
in (betapplys (t, vts), betapplys (Const c_ty, vts)) end; |
|
271 |
||
60346 | 272 |
fun these_unchecks thy = |
60347 | 273 |
these_operations thy |
274 |
#> map_filter (fn (c, (_, ((ty, t), input_only))) => |
|
275 |
if input_only then NONE else SOME (make_rewrite t (c, ty))); |
|
276 |
||
277 |
fun these_unchecks_reversed thy = |
|
278 |
these_operations thy |
|
279 |
#> map (fn (c, (_, ((ty, t), _))) => (Const (c, ty), t)); |
|
29577 | 280 |
|
29632
c3d576157244
fixed reading of class specs: declare class operations in context
haftmann
parents:
29610
diff
changeset
|
281 |
fun redeclare_const thy c = |
30364
577edc39b501
moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents:
30344
diff
changeset
|
282 |
let val b = Long_Name.base_name c |
29632
c3d576157244
fixed reading of class specs: declare class operations in context
haftmann
parents:
29610
diff
changeset
|
283 |
in Sign.intern_const thy b = c ? Variable.declare_const (b, c) end; |
c3d576157244
fixed reading of class specs: declare class operations in context
haftmann
parents:
29610
diff
changeset
|
284 |
|
29577 | 285 |
fun synchronize_class_syntax sort base_sort ctxt = |
24914
95cda5dd58d5
added proper subclass concept; improved class target
haftmann
parents:
24901
diff
changeset
|
286 |
let |
42360 | 287 |
val thy = Proof_Context.theory_of ctxt; |
26596 | 288 |
val algebra = Sign.classes_of thy; |
29577 | 289 |
val operations = these_operations thy sort; |
26518 | 290 |
fun subst_class_typ sort = map_type_tfree (K (TVar ((Name.aT, 0), sort))); |
291 |
val primary_constraints = |
|
60346 | 292 |
(map o apsnd) (subst_class_typ base_sort o fst o fst o snd) operations; |
26518 | 293 |
val secondary_constraints = |
60346 | 294 |
(map o apsnd) (fn (class, ((ty, _), _)) => subst_class_typ [class] ty) operations; |
46919 | 295 |
fun improve (c, ty) = |
296 |
(case AList.lookup (op =) primary_constraints c of |
|
297 |
SOME ty' => |
|
298 |
(case try (Type.raw_match (ty', ty)) Vartab.empty of |
|
299 |
SOME tyenv => |
|
300 |
(case Vartab.lookup tyenv (Name.aT, 0) of |
|
301 |
SOME (_, ty' as TVar (vi, sort)) => |
|
302 |
if Type_Infer.is_param vi andalso Sorts.sort_le algebra (base_sort, sort) |
|
303 |
then SOME (ty', TFree (Name.aT, base_sort)) |
|
304 |
else NONE |
|
26238 | 305 |
| _ => NONE) |
306 |
| NONE => NONE) |
|
46919 | 307 |
| NONE => NONE); |
60346 | 308 |
fun subst (c, _) = Option.map (fst o snd) (AList.lookup (op =) operations c); |
29577 | 309 |
val unchecks = these_unchecks thy sort; |
25083 | 310 |
in |
311 |
ctxt |
|
29632
c3d576157244
fixed reading of class specs: declare class operations in context
haftmann
parents:
29610
diff
changeset
|
312 |
|> fold (redeclare_const thy o fst) primary_constraints |
60338 | 313 |
|> Overloading.map_improvable_syntax (K {primary_constraints = primary_constraints, |
314 |
secondary_constraints = secondary_constraints, improve = improve, subst = subst, |
|
315 |
no_subst_in_abbrev_mode = true, unchecks = unchecks}) |
|
26518 | 316 |
|> Overloading.set_primary_constraints |
25083 | 317 |
end; |
318 |
||
54866
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
319 |
fun synchronize_class_syntax_target class lthy = |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
320 |
lthy |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
321 |
|> Local_Theory.map_contexts |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
322 |
(K (synchronize_class_syntax [class] (base_sort (Proof_Context.theory_of lthy) class))); |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
323 |
|
29632
c3d576157244
fixed reading of class specs: declare class operations in context
haftmann
parents:
29610
diff
changeset
|
324 |
fun redeclare_operations thy sort = |
c3d576157244
fixed reading of class specs: declare class operations in context
haftmann
parents:
29610
diff
changeset
|
325 |
fold (redeclare_const thy o fst) (these_operations thy sort); |
c3d576157244
fixed reading of class specs: declare class operations in context
haftmann
parents:
29610
diff
changeset
|
326 |
|
29577 | 327 |
fun begin sort base_sort ctxt = |
25083 | 328 |
ctxt |
329 |
|> Variable.declare_term |
|
330 |
(Logic.mk_type (TFree (Name.aT, base_sort))) |
|
29577 | 331 |
|> synchronize_class_syntax sort base_sort |
39378
df86b1b4ce10
more precise name for activation of improveable syntax
haftmann
parents:
39134
diff
changeset
|
332 |
|> Overloading.activate_improvable_syntax; |
24901
d3cbf79769b9
added first version of user-space type system for class target
haftmann
parents:
24847
diff
changeset
|
333 |
|
25311 | 334 |
fun init class thy = |
335 |
thy |
|
29509
1ff0f3f08a7b
migrated class package to new locale implementation
haftmann
parents:
29439
diff
changeset
|
336 |
|> Locale.init class |
29358 | 337 |
|> begin [class] (base_sort thy class); |
24914
95cda5dd58d5
added proper subclass concept; improved class target
haftmann
parents:
24901
diff
changeset
|
338 |
|
24748 | 339 |
|
27690
24738db98d34
some steps towards explicit class target for canonical interpretation
haftmann
parents:
27684
diff
changeset
|
340 |
(* class target *) |
24738db98d34
some steps towards explicit class target for canonical interpretation
haftmann
parents:
27684
diff
changeset
|
341 |
|
30364
577edc39b501
moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents:
30344
diff
changeset
|
342 |
val class_prefix = Logic.const_of_class o Long_Name.base_name; |
29526 | 343 |
|
57187
de00494fa8b3
less ad-hoc verision of educated guess: guess identity of declaration morphism wrt. canonical morphism rather than observing particular effects of declaration morphisms only;
haftmann
parents:
57186
diff
changeset
|
344 |
fun guess_morphism_identity (b, rhs) phi1 phi2 = |
de00494fa8b3
less ad-hoc verision of educated guess: guess identity of declaration morphism wrt. canonical morphism rather than observing particular effects of declaration morphisms only;
haftmann
parents:
57186
diff
changeset
|
345 |
let |
de00494fa8b3
less ad-hoc verision of educated guess: guess identity of declaration morphism wrt. canonical morphism rather than observing particular effects of declaration morphisms only;
haftmann
parents:
57186
diff
changeset
|
346 |
(*FIXME proper concept to identify morphism instead of educated guess*) |
58668 | 347 |
val name_of_binding = Name_Space.full_name Name_Space.global_naming; |
57187
de00494fa8b3
less ad-hoc verision of educated guess: guess identity of declaration morphism wrt. canonical morphism rather than observing particular effects of declaration morphisms only;
haftmann
parents:
57186
diff
changeset
|
348 |
val n1 = (name_of_binding o Morphism.binding phi1) b; |
de00494fa8b3
less ad-hoc verision of educated guess: guess identity of declaration morphism wrt. canonical morphism rather than observing particular effects of declaration morphisms only;
haftmann
parents:
57186
diff
changeset
|
349 |
val n2 = (name_of_binding o Morphism.binding phi2) b; |
de00494fa8b3
less ad-hoc verision of educated guess: guess identity of declaration morphism wrt. canonical morphism rather than observing particular effects of declaration morphisms only;
haftmann
parents:
57186
diff
changeset
|
350 |
val rhs1 = Morphism.term phi1 rhs; |
de00494fa8b3
less ad-hoc verision of educated guess: guess identity of declaration morphism wrt. canonical morphism rather than observing particular effects of declaration morphisms only;
haftmann
parents:
57186
diff
changeset
|
351 |
val rhs2 = Morphism.term phi2 rhs; |
de00494fa8b3
less ad-hoc verision of educated guess: guess identity of declaration morphism wrt. canonical morphism rather than observing particular effects of declaration morphisms only;
haftmann
parents:
57186
diff
changeset
|
352 |
in n1 = n2 andalso Term.aconv_untyped (rhs1, rhs2) end; |
de00494fa8b3
less ad-hoc verision of educated guess: guess identity of declaration morphism wrt. canonical morphism rather than observing particular effects of declaration morphisms only;
haftmann
parents:
57186
diff
changeset
|
353 |
|
60345
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
354 |
fun target_const class phi0 prmode (b, rhs) lthy = |
57189
5140ddfccea7
re-unified approach towards class and locale consts, with refined terminology: foo_const_declaration denotes declaration for a particular logical layer, foo_const the full stack for a particular target
haftmann
parents:
57188
diff
changeset
|
355 |
let |
60345
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
356 |
val export = Variable.export_morphism lthy (Local_Theory.target_of lthy); |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
357 |
val guess_identity = guess_morphism_identity (b, rhs) export; |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
358 |
val guess_canonical = guess_morphism_identity (b, rhs) (export $> phi0); |
57189
5140ddfccea7
re-unified approach towards class and locale consts, with refined terminology: foo_const_declaration denotes declaration for a particular logical layer, foo_const the full stack for a particular target
haftmann
parents:
57188
diff
changeset
|
359 |
in |
60345
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
360 |
lthy |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
361 |
|> Generic_Target.locale_target_const class |
57189
5140ddfccea7
re-unified approach towards class and locale consts, with refined terminology: foo_const_declaration denotes declaration for a particular logical layer, foo_const the full stack for a particular target
haftmann
parents:
57188
diff
changeset
|
362 |
(not o (guess_identity orf guess_canonical)) prmode ((b, NoSyn), rhs) |
5140ddfccea7
re-unified approach towards class and locale consts, with refined terminology: foo_const_declaration denotes declaration for a particular logical layer, foo_const the full stack for a particular target
haftmann
parents:
57188
diff
changeset
|
363 |
end; |
57072
dfac6ef0ca28
moved const declaration further down in bootstrap hierarchy: keep Named_Target free of low-level stuff
haftmann
parents:
57070
diff
changeset
|
364 |
|
60345
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
365 |
local |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
366 |
|
57119 | 367 |
fun dangling_params_for lthy class (type_params, term_params) = |
27690
24738db98d34
some steps towards explicit class target for canonical interpretation
haftmann
parents:
27684
diff
changeset
|
368 |
let |
57119 | 369 |
val class_param_names = |
370 |
map fst (these_params (Proof_Context.theory_of lthy) [class]); |
|
371 |
val dangling_term_params = |
|
372 |
subtract (fn (v, Free (w, _)) => v = w | _ => false) class_param_names term_params; |
|
57161
6254c51cd210
formal treatment of dangling parameters for class abbrevs analogously to class consts
haftmann
parents:
57148
diff
changeset
|
373 |
in (type_params, dangling_term_params) end; |
57119 | 374 |
|
375 |
fun global_def (b, eq) thy = |
|
376 |
thy |
|
377 |
|> Thm.add_def_global false false (b, eq) |
|
378 |
|>> (Thm.varifyT_global o snd) |
|
379 |
|-> (fn def_thm => Global_Theory.store_thm (b, def_thm) |
|
380 |
#> snd |
|
381 |
#> pair def_thm); |
|
382 |
||
57142 | 383 |
fun canonical_const class phi dangling_params ((b, mx), rhs) thy = |
57119 | 384 |
let |
57147 | 385 |
val b_def = Binding.suffix_name "_dict" b; |
386 |
val c = Sign.full_name thy b; |
|
387 |
val ty = map Term.fastype_of dangling_params ---> Term.fastype_of rhs; |
|
388 |
val def_eq = Logic.mk_equals (list_comb (Const (c, ty), dangling_params), rhs) |
|
29577 | 389 |
|> map_types Type.strip_sorts; |
27690
24738db98d34
some steps towards explicit class target for canonical interpretation
haftmann
parents:
27684
diff
changeset
|
390 |
in |
29577 | 391 |
thy |
57147 | 392 |
|> Sign.declare_const_global ((b, Type.strip_sorts ty), mx) |
29577 | 393 |
|> snd |
57119 | 394 |
|> global_def (b_def, def_eq) |
57173
897cc57a6f55
always refine interpretation morphism using canonical constant's definition theorem
haftmann
parents:
57161
diff
changeset
|
395 |
|-> (fn def_thm => register_def class def_thm) |
60346 | 396 |
|> null dangling_params ? register_operation class (c, rhs) false |
57147 | 397 |
|> Sign.add_const_constraint (c, SOME ty) |
27690
24738db98d34
some steps towards explicit class target for canonical interpretation
haftmann
parents:
27684
diff
changeset
|
398 |
end; |
24738db98d34
some steps towards explicit class target for canonical interpretation
haftmann
parents:
27684
diff
changeset
|
399 |
|
38619
25e401d53900
tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents:
38392
diff
changeset
|
400 |
in |
25e401d53900
tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents:
38392
diff
changeset
|
401 |
|
57119 | 402 |
fun const class ((b, mx), lhs) params lthy = |
403 |
let |
|
57141 | 404 |
val phi = morphism (Proof_Context.theory_of lthy) class; |
57161
6254c51cd210
formal treatment of dangling parameters for class abbrevs analogously to class consts
haftmann
parents:
57148
diff
changeset
|
405 |
val dangling_params = map (Morphism.term phi) (uncurry append (dangling_params_for lthy class params)); |
57119 | 406 |
in |
407 |
lthy |
|
60337 | 408 |
|> target_const class phi Syntax.mode_default (b, lhs) |
57148
4069c9b3803a
definition in class: provide explicit auxiliary abbreviation carrying potential mixfix syntax in presence of dangling parameters
haftmann
parents:
57147
diff
changeset
|
409 |
|> Local_Theory.raw_theory (canonical_const class phi dangling_params |
4069c9b3803a
definition in class: provide explicit auxiliary abbreviation carrying potential mixfix syntax in presence of dangling parameters
haftmann
parents:
57147
diff
changeset
|
410 |
((Morphism.binding phi b, if null dangling_params then mx else NoSyn), Morphism.term phi lhs)) |
57192
180e955711cf
yet another attempt for terminology: foo_target_bar denotes an operation bar operating solely on the target context of target foo, foo_bar denotes a whole stack of operations to accomplish bar for target foo
haftmann
parents:
57189
diff
changeset
|
411 |
|> Generic_Target.standard_const (fn (this, other) => other <> 0 andalso this <> other) |
57148
4069c9b3803a
definition in class: provide explicit auxiliary abbreviation carrying potential mixfix syntax in presence of dangling parameters
haftmann
parents:
57147
diff
changeset
|
412 |
Syntax.mode_default ((b, if null dangling_params then NoSyn else mx), lhs) |
57141 | 413 |
|> synchronize_class_syntax_target class |
57119 | 414 |
end; |
57072
dfac6ef0ca28
moved const declaration further down in bootstrap hierarchy: keep Named_Target free of low-level stuff
haftmann
parents:
57070
diff
changeset
|
415 |
|
60345
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
416 |
end; |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
417 |
|
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
418 |
local |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
419 |
|
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
420 |
fun canonical_abbrev class phi prmode with_syntax ((b, mx), rhs) thy = |
57141 | 421 |
let |
60345
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
422 |
val c = Sign.full_name thy b; |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
423 |
val constrain = map_atyps (fn T as TFree (v, _) => |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
424 |
if v = Name.aT then TFree (v, [class]) else T | T => T); |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
425 |
val rhs' = map_types constrain rhs; |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
426 |
in |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
427 |
thy |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
428 |
|> Sign.add_abbrev (#1 prmode) (b, Logic.varify_types_global rhs') |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
429 |
|> snd |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
430 |
|> with_syntax ? Sign.notation true prmode [(Const (c, fastype_of rhs), mx)] |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
431 |
|> with_syntax ? register_operation class (c, rhs) |
60346 | 432 |
(#1 prmode = Print_Mode.input) |
60345
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
433 |
|> Sign.add_const_constraint (c, SOME (fastype_of rhs')) |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
434 |
end; |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
435 |
|
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
436 |
fun canonical_abbrev_target class phi prmode ((b, mx), rhs) lthy = |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
437 |
let |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
438 |
val thy = Proof_Context.theory_of lthy; |
60347 | 439 |
val preprocess = perhaps (try (Pattern.rewrite_term_top thy (these_unchecks thy [class]) [])); |
60345
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
440 |
val (global_rhs, (extra_tfrees, (type_params, term_params))) = |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
441 |
Generic_Target.export_abbrev lthy preprocess rhs; |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
442 |
val mx' = Generic_Target.check_mixfix_global (b, null term_params) mx; |
57141 | 443 |
in |
444 |
lthy |
|
60345
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
445 |
|> Local_Theory.raw_theory (canonical_abbrev class phi prmode (null term_params) |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
446 |
((Morphism.binding phi b, mx'), Logic.unvarify_types_global global_rhs)) |
57141 | 447 |
end; |
38619
25e401d53900
tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents:
38392
diff
changeset
|
448 |
|
60345
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
449 |
fun further_abbrev_target class phi prmode (b, mx) rhs params = |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
450 |
Generic_Target.background_abbrev (b, rhs) (snd params) |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
451 |
#-> (fn (lhs, _) => target_const class phi prmode (b, lhs) |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
452 |
#> Generic_Target.standard_const (fn (this, other) => other <> 0 andalso this <> other) prmode ((b, mx), lhs)) |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
453 |
|
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
454 |
in |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
455 |
|
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
456 |
fun abbrev class prmode ((b, mx), rhs) lthy = |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
457 |
let |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
458 |
val thy = Proof_Context.theory_of lthy; |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
459 |
val phi = morphism thy class; |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
460 |
val rhs_generic = |
60347 | 461 |
perhaps (try (Pattern.rewrite_term_top thy (these_unchecks_reversed thy [class]) [])) rhs; |
60345
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
462 |
in |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
463 |
lthy |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
464 |
|> canonical_abbrev_target class phi prmode ((b, mx), rhs) |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
465 |
|> Generic_Target.abbrev (further_abbrev_target class phi) prmode ((b, mx), rhs_generic) |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
466 |
||> synchronize_class_syntax_target class |
592806806494
completely separated canonical class abbreviations from abbreviations stemming from non-canonical morphisms -- these have no shared concept
haftmann
parents:
60344
diff
changeset
|
467 |
end; |
60344
a40369ea3ba5
self-contained formulation of abbrev for named targets
haftmann
parents:
60341
diff
changeset
|
468 |
|
38619
25e401d53900
tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents:
38392
diff
changeset
|
469 |
end; |
25e401d53900
tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents:
38392
diff
changeset
|
470 |
|
27690
24738db98d34
some steps towards explicit class target for canonical interpretation
haftmann
parents:
27684
diff
changeset
|
471 |
|
54866
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
472 |
(* subclasses *) |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
473 |
|
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
474 |
fun register_subclass (sub, sup) some_dep_morph some_witn export lthy = |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
475 |
let |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
476 |
val thy = Proof_Context.theory_of lthy; |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
477 |
val intros = (snd o rules thy) sup :: map_filter I |
54883
dd04a8b654fc
proper context for norm_hhf and derived operations;
wenzelm
parents:
54866
diff
changeset
|
478 |
[Option.map (Drule.export_without_context_open o Element.conclude_witness lthy) some_witn, |
54866
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
479 |
(fst o rules thy) sub]; |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
480 |
val classrel = |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
481 |
Goal.prove_sorry_global thy [] [] (Logic.mk_classrel (sub, sup)) |
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59423
diff
changeset
|
482 |
(fn {context = ctxt, ...} => EVERY (map (TRYALL o resolve_tac ctxt o single) intros)); |
54866
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
483 |
val diff_sort = Sign.complete_sort thy [sup] |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
484 |
|> subtract (op =) (Sign.complete_sort thy [sub]) |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
485 |
|> filter (is_class thy); |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
486 |
fun add_dependency some_wit = case some_dep_morph of |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
487 |
SOME dep_morph => Generic_Target.locale_dependency sub |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
488 |
(sup, dep_morph $> Element.satisfy_morphism (the_list some_witn)) NONE export |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
489 |
| NONE => I; |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
490 |
in |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
491 |
lthy |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
492 |
|> Local_Theory.raw_theory |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
493 |
(Axclass.add_classrel classrel |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
494 |
#> Class_Data.map (Graph.add_edge (sub, sup)) |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
495 |
#> activate_defs sub (these_defs thy diff_sort)) |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
496 |
|> add_dependency some_witn |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
497 |
|> synchronize_class_syntax_target sub |
7b9a67cbd48f
self-contained formulation of subclass command, avoiding hard-wired Named_Target.init
haftmann
parents:
54742
diff
changeset
|
498 |
end; |
31635 | 499 |
|
500 |
local |
|
501 |
||
502 |
fun gen_classrel mk_prop classrel thy = |
|
503 |
let |
|
504 |
fun after_qed results = |
|
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
505 |
Proof_Context.background_theory ((fold o fold) Axclass.add_classrel results); |
31635 | 506 |
in |
507 |
thy |
|
42360 | 508 |
|> Proof_Context.init_global |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36106
diff
changeset
|
509 |
|> Proof.theorem NONE after_qed [[(mk_prop thy classrel, [])]] |
31635 | 510 |
end; |
511 |
||
512 |
in |
|
513 |
||
514 |
val classrel = |
|
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
515 |
gen_classrel (Logic.mk_classrel oo Axclass.cert_classrel); |
31635 | 516 |
val classrel_cmd = |
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
517 |
gen_classrel (Logic.mk_classrel oo Axclass.read_classrel); |
31635 | 518 |
|
519 |
end; (*local*) |
|
520 |
||
521 |
||
25462 | 522 |
(** instantiation target **) |
523 |
||
524 |
(* bookkeeping *) |
|
525 |
||
526 |
datatype instantiation = Instantiation of { |
|
25864 | 527 |
arities: string list * (string * sort) list * sort, |
25462 | 528 |
params: ((string * string) * (string * typ)) list |
25603 | 529 |
(*(instantiation parameter, type constructor), (local instantiation parameter, typ)*) |
25462 | 530 |
} |
531 |
||
59150 | 532 |
fun make_instantiation (arities, params) = |
533 |
Instantiation {arities = arities, params = params}; |
|
534 |
||
535 |
val empty_instantiation = make_instantiation (([], [], []), []); |
|
536 |
||
33519 | 537 |
structure Instantiation = Proof_Data |
25462 | 538 |
( |
46919 | 539 |
type T = instantiation; |
59150 | 540 |
fun init _ = empty_instantiation; |
25462 | 541 |
); |
542 |
||
46919 | 543 |
val get_instantiation = |
544 |
(fn Instantiation data => data) o Instantiation.get o Local_Theory.target_of; |
|
25462 | 545 |
|
46919 | 546 |
fun map_instantiation f = |
547 |
(Local_Theory.target o Instantiation.map) |
|
59150 | 548 |
(fn Instantiation {arities, params} => make_instantiation (f (arities, params))); |
46919 | 549 |
|
550 |
fun the_instantiation lthy = |
|
551 |
(case get_instantiation lthy of |
|
552 |
{arities = ([], [], []), ...} => error "No instantiation target" |
|
553 |
| data => data); |
|
25462 | 554 |
|
25485 | 555 |
val instantiation_params = #params o get_instantiation; |
25462 | 556 |
|
30519
c05c0199826f
coherent binding policy with primitive target operations
haftmann
parents:
30364
diff
changeset
|
557 |
fun instantiation_param lthy b = instantiation_params lthy |
c05c0199826f
coherent binding policy with primitive target operations
haftmann
parents:
30364
diff
changeset
|
558 |
|> find_first (fn (_, (v, _)) => Binding.name_of b = v) |
25462 | 559 |
|> Option.map (fst o fst); |
560 |
||
31869 | 561 |
fun read_multi_arity thy (raw_tycos, raw_sorts, raw_sort) = |
562 |
let |
|
42360 | 563 |
val ctxt = Proof_Context.init_global thy; |
564 |
val all_arities = map (fn raw_tyco => Proof_Context.read_arity ctxt |
|
31869 | 565 |
(raw_tyco, raw_sorts, raw_sort)) raw_tycos; |
566 |
val tycos = map #1 all_arities; |
|
567 |
val (_, sorts, sort) = hd all_arities; |
|
43329
84472e198515
tuned signature: Name.invent and Name.invent_names;
wenzelm
parents:
42402
diff
changeset
|
568 |
val vs = Name.invent_names Name.context Name.aT sorts; |
31869 | 569 |
in (tycos, vs, sort) end; |
570 |
||
25462 | 571 |
|
572 |
(* syntax *) |
|
573 |
||
26238 | 574 |
fun synchronize_inst_syntax ctxt = |
25462 | 575 |
let |
46919 | 576 |
val Instantiation {params, ...} = Instantiation.get ctxt; |
31249 | 577 |
|
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
578 |
val lookup_inst_param = Axclass.lookup_inst_param |
42360 | 579 |
(Sign.consts_of (Proof_Context.theory_of ctxt)) params; |
46919 | 580 |
fun subst (c, ty) = |
581 |
(case lookup_inst_param (c, ty) of |
|
582 |
SOME (v_ty as (_, ty)) => SOME (ty, Free v_ty) |
|
583 |
| NONE => NONE); |
|
26238 | 584 |
val unchecks = |
585 |
map (fn ((c, _), v_ty as (_, ty)) => (Free v_ty, Const (c, ty))) params; |
|
586 |
in |
|
587 |
ctxt |
|
60338 | 588 |
|> Overloading.map_improvable_syntax (fn {primary_constraints, improve, ...} => |
589 |
{primary_constraints = primary_constraints, secondary_constraints = [], |
|
590 |
improve = improve, subst = subst, no_subst_in_abbrev_mode = false, |
|
591 |
unchecks = unchecks}) |
|
26238 | 592 |
end; |
25462 | 593 |
|
42385
b46b47775cbe
simplified Sorts.class_error: plain Proof.context;
wenzelm
parents:
42383
diff
changeset
|
594 |
fun resort_terms ctxt algebra consts constraints ts = |
38382 | 595 |
let |
42385
b46b47775cbe
simplified Sorts.class_error: plain Proof.context;
wenzelm
parents:
42383
diff
changeset
|
596 |
fun matchings (Const (c_ty as (c, _))) = |
b46b47775cbe
simplified Sorts.class_error: plain Proof.context;
wenzelm
parents:
42383
diff
changeset
|
597 |
(case constraints c of |
b46b47775cbe
simplified Sorts.class_error: plain Proof.context;
wenzelm
parents:
42383
diff
changeset
|
598 |
NONE => I |
b46b47775cbe
simplified Sorts.class_error: plain Proof.context;
wenzelm
parents:
42383
diff
changeset
|
599 |
| SOME sorts => |
b46b47775cbe
simplified Sorts.class_error: plain Proof.context;
wenzelm
parents:
42383
diff
changeset
|
600 |
fold2 (curry (Sorts.meet_sort algebra)) (Consts.typargs consts c_ty) sorts) |
b46b47775cbe
simplified Sorts.class_error: plain Proof.context;
wenzelm
parents:
42383
diff
changeset
|
601 |
| matchings _ = I; |
38382 | 602 |
val tvartab = (fold o fold_aterms) matchings ts Vartab.empty |
61262
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents:
61085
diff
changeset
|
603 |
handle Sorts.CLASS_ERROR e => error (Sorts.class_error (Context.Proof ctxt) e); |
38382 | 604 |
val inst = map_type_tvar |
605 |
(fn (vi, sort) => TVar (vi, the_default sort (Vartab.lookup tvartab vi))); |
|
42402
c7139609b67d
simplified check/uncheck interfaces: result comparison is hardwired by default;
wenzelm
parents:
42388
diff
changeset
|
606 |
in if Vartab.is_empty tvartab then ts else (map o map_types) inst ts end; |
38382 | 607 |
|
25462 | 608 |
|
609 |
(* target *) |
|
610 |
||
63347 | 611 |
fun define_overloaded (c, U) b (b_def, rhs) lthy = |
612 |
let |
|
613 |
val name = Binding.name_of b; |
|
614 |
val pos = Binding.pos_of b; |
|
615 |
val _ = |
|
616 |
if Context_Position.is_reported lthy pos then |
|
617 |
Position.report_text pos Markup.class_parameter |
|
618 |
(Pretty.string_of |
|
619 |
(Pretty.block [Pretty.keyword1 "class", Pretty.brk 1, |
|
620 |
Pretty.str "parameter", Pretty.brk 1, pretty_param lthy (c, U)])) |
|
621 |
else (); |
|
622 |
in |
|
623 |
lthy |> Local_Theory.background_theory_result |
|
624 |
(Axclass.declare_overloaded (c, U) ##>> Axclass.define_overloaded b_def (c, rhs)) |
|
625 |
||> (map_instantiation o apsnd) (filter_out (fn (_, (v', _)) => v' = name)) |
|
626 |
||> Local_Theory.map_contexts (K synchronize_inst_syntax) |
|
627 |
end; |
|
38382 | 628 |
|
47289 | 629 |
fun foundation (((b, U), mx), (b_def, rhs)) params lthy = |
46919 | 630 |
(case instantiation_param lthy b of |
631 |
SOME c => |
|
63347 | 632 |
if Mixfix.is_empty mx then lthy |> define_overloaded (c, U) b (b_def, rhs) |
62765
5b95a12b7b19
tuned messages -- position is usually missing here;
wenzelm
parents:
62752
diff
changeset
|
633 |
else error ("Illegal mixfix syntax for overloaded constant " ^ quote c) |
60341
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
haftmann
parents:
60338
diff
changeset
|
634 |
| NONE => lthy |> Generic_Target.theory_target_foundation (((b, U), mx), (b_def, rhs)) params); |
38382 | 635 |
|
636 |
fun pretty lthy = |
|
26518 | 637 |
let |
46919 | 638 |
val {arities = (tycos, vs, sort), params} = the_instantiation lthy; |
38382 | 639 |
fun pr_arity tyco = Syntax.pretty_arity lthy (tyco, map snd vs, sort); |
640 |
fun pr_param ((c, _), (v, ty)) = |
|
42359 | 641 |
Pretty.block (Pretty.breaks |
55304 | 642 |
[Pretty.str v, Pretty.str "==", Proof_Context.pretty_const lthy c, |
42359 | 643 |
Pretty.str "::", Syntax.pretty_typ lthy ty]); |
60246 | 644 |
in |
645 |
[Pretty.block |
|
646 |
(Pretty.fbreaks (Pretty.keyword1 "instantiation" :: map pr_arity tycos @ map pr_param params))] |
|
647 |
end; |
|
26518 | 648 |
|
38382 | 649 |
fun conclude lthy = |
650 |
let |
|
42359 | 651 |
val (tycos, vs, sort) = #arities (the_instantiation lthy); |
42360 | 652 |
val thy = Proof_Context.theory_of lthy; |
42359 | 653 |
val _ = tycos |> List.app (fn tyco => |
46919 | 654 |
if Sign.of_sort thy (Type (tyco, map TFree vs), sort) then () |
55304 | 655 |
else error ("Missing instance proof for type " ^ quote (Proof_Context.markup_type lthy tyco))); |
38382 | 656 |
in lthy end; |
657 |
||
658 |
fun instantiation (tycos, vs, sort) thy = |
|
25462 | 659 |
let |
25536 | 660 |
val _ = if null tycos then error "At least one arity must be given" else (); |
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
661 |
val class_params = these_params thy (filter (can (Axclass.get_info thy)) sort); |
29632
c3d576157244
fixed reading of class specs: declare class operations in context
haftmann
parents:
29610
diff
changeset
|
662 |
fun get_param tyco (param, (_, (c, ty))) = |
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
663 |
if can (Axclass.param_of_inst thy) (c, tyco) |
25603 | 664 |
then NONE else SOME ((c, tyco), |
46917 | 665 |
(param ^ "_" ^ Long_Name.base_name tyco, map_atyps (K (Type (tyco, map TFree vs))) ty)); |
31249 | 666 |
val params = map_product get_param tycos class_params |> map_filter I; |
51578 | 667 |
val _ = if null params andalso forall (fn tyco => can (Sign.arity_sorts thy tyco) sort) tycos |
668 |
then error "No parameters and no pending instance proof obligations in instantiation." |
|
669 |
else (); |
|
26518 | 670 |
val primary_constraints = map (apsnd |
31249 | 671 |
(map_atyps (K (TVar ((Name.aT, 0), [])))) o snd o snd) class_params; |
26518 | 672 |
val algebra = Sign.classes_of thy |
61262
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents:
61085
diff
changeset
|
673 |
|> fold (fn tyco => Sorts.add_arities (Context.Theory thy) |
26518 | 674 |
(tyco, map (fn class => (class, map snd vs)) sort)) tycos; |
675 |
val consts = Sign.consts_of thy; |
|
676 |
val improve_constraints = AList.lookup (op =) |
|
31249 | 677 |
(map (fn (_, (class, (c, _))) => (c, [[class]])) class_params); |
42402
c7139609b67d
simplified check/uncheck interfaces: result comparison is hardwired by default;
wenzelm
parents:
42388
diff
changeset
|
678 |
fun resort_check ctxt ts = resort_terms ctxt algebra consts improve_constraints ts; |
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
679 |
val lookup_inst_param = Axclass.lookup_inst_param consts params; |
42388 | 680 |
fun improve (c, ty) = |
681 |
(case lookup_inst_param (c, ty) of |
|
682 |
SOME (_, ty') => if Sign.typ_instance thy (ty', ty) then SOME (ty, ty') else NONE |
|
683 |
| NONE => NONE); |
|
25485 | 684 |
in |
685 |
thy |
|
66337
5caea089dd17
more structural sharing between common target Generic_Target.init
haftmann
parents:
66335
diff
changeset
|
686 |
|> Generic_Target.init |
66335
a849ce33923d
treat exit separate from regular local theory operations
haftmann
parents:
63347
diff
changeset
|
687 |
{background_naming = Sign.naming_of thy, |
66337
5caea089dd17
more structural sharing between common target Generic_Target.init
haftmann
parents:
66335
diff
changeset
|
688 |
setup = Proof_Context.init_global |
5caea089dd17
more structural sharing between common target Generic_Target.init
haftmann
parents:
66335
diff
changeset
|
689 |
#> Instantiation.put (make_instantiation ((tycos, vs, sort), params)) |
5caea089dd17
more structural sharing between common target Generic_Target.init
haftmann
parents:
66335
diff
changeset
|
690 |
#> fold (Variable.declare_typ o TFree) vs |
5caea089dd17
more structural sharing between common target Generic_Target.init
haftmann
parents:
66335
diff
changeset
|
691 |
#> fold (Variable.declare_names o Free o snd) params |
5caea089dd17
more structural sharing between common target Generic_Target.init
haftmann
parents:
66335
diff
changeset
|
692 |
#> (Overloading.map_improvable_syntax) (K {primary_constraints = primary_constraints, |
5caea089dd17
more structural sharing between common target Generic_Target.init
haftmann
parents:
66335
diff
changeset
|
693 |
secondary_constraints = [], improve = improve, subst = K NONE, |
5caea089dd17
more structural sharing between common target Generic_Target.init
haftmann
parents:
66335
diff
changeset
|
694 |
no_subst_in_abbrev_mode = false, unchecks = []}) |
5caea089dd17
more structural sharing between common target Generic_Target.init
haftmann
parents:
66335
diff
changeset
|
695 |
#> Overloading.activate_improvable_syntax |
5caea089dd17
more structural sharing between common target Generic_Target.init
haftmann
parents:
66335
diff
changeset
|
696 |
#> Context.proof_map (Syntax_Phases.term_check 0 "resorting" resort_check) |
5caea089dd17
more structural sharing between common target Generic_Target.init
haftmann
parents:
66335
diff
changeset
|
697 |
#> synchronize_inst_syntax, |
5caea089dd17
more structural sharing between common target Generic_Target.init
haftmann
parents:
66335
diff
changeset
|
698 |
conclude = conclude} |
38382 | 699 |
{define = Generic_Target.define foundation, |
60341
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
haftmann
parents:
60338
diff
changeset
|
700 |
notes = Generic_Target.notes Generic_Target.theory_target_notes, |
fcbd7f0c52c3
clearly separated target primitives (target_foo) from self-contained target operations (foo)
haftmann
parents:
60338
diff
changeset
|
701 |
abbrev = Generic_Target.abbrev Generic_Target.theory_target_abbrev, |
47279
4bab649dedf0
clarified standard_declaration vs. theory_declaration;
wenzelm
parents:
47250
diff
changeset
|
702 |
declaration = K Generic_Target.theory_declaration, |
61890
f6ded81f5690
abandoned attempt to unify sublocale and interpretation into global theories
haftmann
parents:
61262
diff
changeset
|
703 |
theory_registration = Generic_Target.theory_registration, |
f6ded81f5690
abandoned attempt to unify sublocale and interpretation into global theories
haftmann
parents:
61262
diff
changeset
|
704 |
locale_dependency = fn _ => error "Not possible in instantiation target", |
66335
a849ce33923d
treat exit separate from regular local theory operations
haftmann
parents:
63347
diff
changeset
|
705 |
pretty = pretty} |
25485 | 706 |
end; |
707 |
||
38382 | 708 |
fun instantiation_cmd arities thy = |
709 |
instantiation (read_multi_arity thy arities) thy; |
|
26238 | 710 |
|
25485 | 711 |
fun gen_instantiation_instance do_proof after_qed lthy = |
712 |
let |
|
25864 | 713 |
val (tycos, vs, sort) = (#arities o the_instantiation) lthy; |
714 |
val arities_proof = maps (fn tyco => Logic.mk_arities (tyco, map snd vs, sort)) tycos; |
|
25462 | 715 |
fun after_qed' results = |
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
716 |
Local_Theory.background_theory (fold (Axclass.add_arity o Thm.varifyT_global) results) |
25462 | 717 |
#> after_qed; |
718 |
in |
|
719 |
lthy |
|
720 |
|> do_proof after_qed' arities_proof |
|
721 |
end; |
|
722 |
||
25485 | 723 |
val instantiation_instance = gen_instantiation_instance (fn after_qed => fn ts => |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36106
diff
changeset
|
724 |
Proof.theorem NONE (after_qed o map the_single) (map (fn t => [(t, [])]) ts)); |
25462 | 725 |
|
25485 | 726 |
fun prove_instantiation_instance tac = gen_instantiation_instance (fn after_qed => |
25502 | 727 |
fn ts => fn lthy => after_qed (map (fn t => Goal.prove lthy [] [] t |
728 |
(fn {context, ...} => tac context)) ts) lthy) I; |
|
25462 | 729 |
|
28666 | 730 |
fun prove_instantiation_exit tac = prove_instantiation_instance tac |
33671 | 731 |
#> Local_Theory.exit_global; |
28666 | 732 |
|
733 |
fun prove_instantiation_exit_result f tac x lthy = |
|
734 |
let |
|
42360 | 735 |
val morph = Proof_Context.export_morphism lthy |
736 |
(Proof_Context.init_global (Proof_Context.theory_of lthy)); |
|
29439 | 737 |
val y = f morph x; |
28666 | 738 |
in |
739 |
lthy |
|
740 |
|> prove_instantiation_exit (fn ctxt => tac ctxt y) |
|
741 |
|> pair y |
|
742 |
end; |
|
743 |
||
29526 | 744 |
|
31635 | 745 |
(* simplified instantiation interface with no class parameter *) |
746 |
||
31869 | 747 |
fun instance_arity_cmd raw_arities thy = |
31635 | 748 |
let |
31869 | 749 |
val (tycos, vs, sort) = read_multi_arity thy raw_arities; |
750 |
val sorts = map snd vs; |
|
751 |
val arities = maps (fn tyco => Logic.mk_arities (tyco, sorts, sort)) tycos; |
|
47078 | 752 |
fun after_qed results = |
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
753 |
Proof_Context.background_theory ((fold o fold) Axclass.add_arity results); |
31635 | 754 |
in |
755 |
thy |
|
42360 | 756 |
|> Proof_Context.init_global |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36106
diff
changeset
|
757 |
|> Proof.theorem NONE after_qed (map (fn t => [(t, [])]) arities) |
31635 | 758 |
end; |
759 |
||
760 |
||
60618
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60347
diff
changeset
|
761 |
|
29526 | 762 |
(** tactics and methods **) |
763 |
||
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59423
diff
changeset
|
764 |
fun intro_classes_tac ctxt facts st = |
29526 | 765 |
let |
60816 | 766 |
val thy = Proof_Context.theory_of ctxt; |
29526 | 767 |
val classes = Sign.all_classes thy; |
768 |
val class_trivs = map (Thm.class_triv thy) classes; |
|
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
769 |
val class_intros = map_filter (try (#intro o Axclass.get_info thy)) classes; |
29526 | 770 |
val assm_intros = all_assm_intros thy; |
771 |
in |
|
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59423
diff
changeset
|
772 |
Method.intros_tac ctxt (class_trivs @ class_intros @ assm_intros) facts st |
29526 | 773 |
end; |
774 |
||
60618
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60347
diff
changeset
|
775 |
fun standard_intro_classes_tac ctxt facts st = |
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60347
diff
changeset
|
776 |
if null facts andalso not (Thm.no_prems st) then |
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60347
diff
changeset
|
777 |
(intro_classes_tac ctxt [] ORELSE Locale.intro_locales_tac true ctxt []) st |
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60347
diff
changeset
|
778 |
else no_tac st; |
29526 | 779 |
|
60619
7512716f03db
no arguments for "standard" (or old "default") methods;
wenzelm
parents:
60618
diff
changeset
|
780 |
fun standard_tac ctxt facts = |
7512716f03db
no arguments for "standard" (or old "default") methods;
wenzelm
parents:
60618
diff
changeset
|
781 |
HEADGOAL (Method.some_rule_tac ctxt [] facts) ORELSE |
60618
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60347
diff
changeset
|
782 |
standard_intro_classes_tac ctxt facts; |
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60347
diff
changeset
|
783 |
|
53171 | 784 |
val _ = Theory.setup |
67147 | 785 |
(Method.setup \<^binding>\<open>intro_classes\<close> (Scan.succeed (METHOD o intro_classes_tac)) |
30515 | 786 |
"back-chain introduction rules of classes" #> |
67147 | 787 |
Method.setup \<^binding>\<open>standard\<close> (Scan.succeed (METHOD o standard_tac)) |
62939 | 788 |
"standard proof step: Pure intro/elim rule or class introduction"); |
29526 | 789 |
|
59296
002d817b4c37
formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
haftmann
parents:
59150
diff
changeset
|
790 |
|
60249
09377954133b
tuned output to resemble input syntax more closely;
wenzelm
parents:
60246
diff
changeset
|
791 |
|
59296
002d817b4c37
formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
haftmann
parents:
59150
diff
changeset
|
792 |
(** diagnostics **) |
002d817b4c37
formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
haftmann
parents:
59150
diff
changeset
|
793 |
|
60249
09377954133b
tuned output to resemble input syntax more closely;
wenzelm
parents:
60246
diff
changeset
|
794 |
fun pretty_specification thy class = |
09377954133b
tuned output to resemble input syntax more closely;
wenzelm
parents:
60246
diff
changeset
|
795 |
if is_class thy class then |
59383
1434ef1e0ede
clarified Class.pretty_specification: imitate input source;
wenzelm
parents:
59296
diff
changeset
|
796 |
let |
60249
09377954133b
tuned output to resemble input syntax more closely;
wenzelm
parents:
60246
diff
changeset
|
797 |
val class_ctxt = init class thy; |
09377954133b
tuned output to resemble input syntax more closely;
wenzelm
parents:
60246
diff
changeset
|
798 |
val prt_class = Name_Space.pretty class_ctxt (Proof_Context.class_space class_ctxt); |
09377954133b
tuned output to resemble input syntax more closely;
wenzelm
parents:
60246
diff
changeset
|
799 |
|
09377954133b
tuned output to resemble input syntax more closely;
wenzelm
parents:
60246
diff
changeset
|
800 |
val super_classes = Sign.minimize_sort thy (Sign.super_classes thy class); |
59383
1434ef1e0ede
clarified Class.pretty_specification: imitate input source;
wenzelm
parents:
59296
diff
changeset
|
801 |
|
1434ef1e0ede
clarified Class.pretty_specification: imitate input source;
wenzelm
parents:
59296
diff
changeset
|
802 |
val fix_args = |
60249
09377954133b
tuned output to resemble input syntax more closely;
wenzelm
parents:
60246
diff
changeset
|
803 |
#params (Axclass.get_info thy class) |
59383
1434ef1e0ede
clarified Class.pretty_specification: imitate input source;
wenzelm
parents:
59296
diff
changeset
|
804 |
|> map (fn (c, T) => (Binding.name (Long_Name.base_name c), SOME T, NoSyn)); |
1434ef1e0ede
clarified Class.pretty_specification: imitate input source;
wenzelm
parents:
59296
diff
changeset
|
805 |
val fixes = if null fix_args then [] else [Element.Fixes fix_args]; |
60249
09377954133b
tuned output to resemble input syntax more closely;
wenzelm
parents:
60246
diff
changeset
|
806 |
val assumes = Locale.hyp_spec_of thy class; |
59383
1434ef1e0ede
clarified Class.pretty_specification: imitate input source;
wenzelm
parents:
59296
diff
changeset
|
807 |
|
1434ef1e0ede
clarified Class.pretty_specification: imitate input source;
wenzelm
parents:
59296
diff
changeset
|
808 |
val header = |
60249
09377954133b
tuned output to resemble input syntax more closely;
wenzelm
parents:
60246
diff
changeset
|
809 |
[Pretty.keyword1 "class", Pretty.brk 1, prt_class class, Pretty.str " =", Pretty.brk 1] @ |
09377954133b
tuned output to resemble input syntax more closely;
wenzelm
parents:
60246
diff
changeset
|
810 |
Pretty.separate " +" (map prt_class super_classes) @ |
09377954133b
tuned output to resemble input syntax more closely;
wenzelm
parents:
60246
diff
changeset
|
811 |
(if null super_classes then [] else [Pretty.str " +"]); |
59383
1434ef1e0ede
clarified Class.pretty_specification: imitate input source;
wenzelm
parents:
59296
diff
changeset
|
812 |
val body = |
59385 | 813 |
if null fixes andalso null assumes then [] |
814 |
else |
|
815 |
maps (Element.pretty_ctxt_no_attribs class_ctxt) (fixes @ assumes) |
|
816 |
|> maps (fn prt => [Pretty.fbrk, prt]); |
|
59423
3a0044e95eba
backed out obsolete workaround from ef1edfb36af7
haftmann
parents:
59420
diff
changeset
|
817 |
in if null body then [] else [Pretty.block (header @ body)] end |
3a0044e95eba
backed out obsolete workaround from ef1edfb36af7
haftmann
parents:
59420
diff
changeset
|
818 |
else []; |
59296
002d817b4c37
formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
haftmann
parents:
59150
diff
changeset
|
819 |
|
24218 | 820 |
end; |