author | blanchet |
Sat, 26 Oct 2013 12:54:39 +0200 | |
changeset 54205 | bdb83bc60780 |
parent 53539 | 51157ee7f5ba |
child 54742 | 7a86358a3c0b |
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 |
67d71449e85b
more convenient split of class modules: class and class_declaration
haftmann
parents:
38377
diff
changeset
|
15 |
val these_operations: theory -> sort |
67d71449e85b
more convenient split of class modules: class and class_declaration
haftmann
parents:
38377
diff
changeset
|
16 |
-> (string * (class * (typ * term))) list |
42359 | 17 |
val print_classes: Proof.context -> unit |
25311 | 18 |
val init: class -> theory -> Proof.context |
38379
67d71449e85b
more convenient split of class modules: class and class_declaration
haftmann
parents:
38377
diff
changeset
|
19 |
val begin: class list -> sort -> Proof.context -> Proof.context |
48102
9ed089bcad93
class target handles additional non-class term parameters appropriately
haftmann
parents:
47289
diff
changeset
|
20 |
val const: class -> (binding * mixfix) * (term list * term list * term) -> local_theory -> local_theory |
38619
25e401d53900
tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents:
38392
diff
changeset
|
21 |
val abbrev: class -> Syntax.mode -> (binding * mixfix) * term -> local_theory -> local_theory |
38379
67d71449e85b
more convenient split of class modules: class and class_declaration
haftmann
parents:
38377
diff
changeset
|
22 |
val redeclare_operations: theory -> sort -> Proof.context -> Proof.context |
29526 | 23 |
val class_prefix: string -> string |
38379
67d71449e85b
more convenient split of class modules: class and class_declaration
haftmann
parents:
38377
diff
changeset
|
24 |
val register: class -> class list -> ((string * typ) * (string * typ)) list |
67d71449e85b
more convenient split of class modules: class and class_declaration
haftmann
parents:
38377
diff
changeset
|
25 |
-> sort -> morphism -> morphism -> thm option -> thm option -> thm |
67d71449e85b
more convenient split of class modules: class and class_declaration
haftmann
parents:
38377
diff
changeset
|
26 |
-> 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 |
67d71449e85b
more convenient split of class modules: class and class_declaration
haftmann
parents:
38377
diff
changeset
|
47 |
-> morphism -> theory -> theory |
31635 | 48 |
|
49 |
(*tactics*) |
|
29526 | 50 |
val intro_classes_tac: thm list -> tactic |
51 |
val default_intro_tac: Proof.context -> thm list -> tactic |
|
24218 | 52 |
end; |
53 |
||
38379
67d71449e85b
more convenient split of class modules: class and class_declaration
haftmann
parents:
38377
diff
changeset
|
54 |
structure Class: CLASS = |
24218 | 55 |
struct |
56 |
||
24589 | 57 |
(** class data **) |
24218 | 58 |
|
46919 | 59 |
datatype class_data = Class_Data of { |
28715
238f9966c80e
class morphism stemming from locale interpretation
haftmann
parents:
28674
diff
changeset
|
60 |
|
238f9966c80e
class morphism stemming from locale interpretation
haftmann
parents:
28674
diff
changeset
|
61 |
(* static part *) |
24218 | 62 |
consts: (string * string) list |
24836 | 63 |
(*locale parameter ~> constant name*), |
25062 | 64 |
base_sort: sort, |
29545 | 65 |
base_morph: morphism |
29439 | 66 |
(*static part of canonical morphism*), |
32850 | 67 |
export_morph: morphism, |
25618 | 68 |
assm_intro: thm option, |
69 |
of_class: thm, |
|
70 |
axiom: thm option, |
|
42359 | 71 |
|
28715
238f9966c80e
class morphism stemming from locale interpretation
haftmann
parents:
28674
diff
changeset
|
72 |
(* dynamic part *) |
24657 | 73 |
defs: thm list, |
25368
f12613fda79d
proper implementation of check phase; non-qualified names for class operations
haftmann
parents:
25344
diff
changeset
|
74 |
operations: (string * (class * (typ * term))) list |
28715
238f9966c80e
class morphism stemming from locale interpretation
haftmann
parents:
28674
diff
changeset
|
75 |
|
48106 | 76 |
(* n.b. |
77 |
params = logical parameters of class |
|
78 |
operations = operations participating in user-space type system |
|
79 |
*) |
|
24657 | 80 |
}; |
24218 | 81 |
|
32850 | 82 |
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
|
83 |
(defs, operations)) = |
46919 | 84 |
Class_Data {consts = consts, base_sort = base_sort, |
32850 | 85 |
base_morph = base_morph, export_morph = export_morph, assm_intro = assm_intro, |
46919 | 86 |
of_class = of_class, axiom = axiom, defs = defs, operations = operations}; |
87 |
fun map_class_data f (Class_Data {consts, base_sort, base_morph, export_morph, assm_intro, |
|
88 |
of_class, axiom, defs, operations}) = |
|
32850 | 89 |
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
|
90 |
(defs, operations))); |
46919 | 91 |
fun merge_class_data _ (Class_Data {consts = consts, |
32850 | 92 |
base_sort = base_sort, base_morph = base_morph, export_morph = export_morph, assm_intro = assm_intro, |
46919 | 93 |
of_class = of_class, axiom = axiom, defs = defs1, operations = operations1}, |
94 |
Class_Data {consts = _, base_sort = _, base_morph = _, export_morph = _, assm_intro = _, |
|
95 |
of_class = _, axiom = _, defs = defs2, operations = operations2}) = |
|
32850 | 96 |
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
|
97 |
(Thm.merge_thms (defs1, defs2), |
25368
f12613fda79d
proper implementation of check phase; non-qualified names for class operations
haftmann
parents:
25344
diff
changeset
|
98 |
AList.merge (op =) (K true) (operations1, operations2))); |
24218 | 99 |
|
46919 | 100 |
structure Class_Data = Theory_Data |
24218 | 101 |
( |
25038 | 102 |
type T = class_data Graph.T |
103 |
val empty = Graph.empty; |
|
24218 | 104 |
val extend = I; |
33522 | 105 |
val merge = Graph.join merge_class_data; |
24218 | 106 |
); |
107 |
||
108 |
||
109 |
(* queries *) |
|
110 |
||
46919 | 111 |
fun lookup_class_data thy class = |
112 |
(case try (Graph.get_node (Class_Data.get thy)) class of |
|
113 |
SOME (Class_Data data) => SOME data |
|
114 |
| NONE => NONE); |
|
24218 | 115 |
|
46919 | 116 |
fun the_class_data thy class = |
117 |
(case lookup_class_data thy class of |
|
118 |
NONE => error ("Undeclared class " ^ quote class) |
|
119 |
| SOME data => data); |
|
24218 | 120 |
|
25038 | 121 |
val is_class = is_some oo lookup_class_data; |
122 |
||
46919 | 123 |
val ancestry = Graph.all_succs o Class_Data.get; |
124 |
val heritage = Graph.all_preds o Class_Data.get; |
|
29509
1ff0f3f08a7b
migrated class package to new locale implementation
haftmann
parents:
29439
diff
changeset
|
125 |
|
25002 | 126 |
fun these_params thy = |
24218 | 127 |
let |
128 |
fun params class = |
|
129 |
let |
|
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
130 |
val const_typs = (#params o Axclass.get_info thy) class; |
24657 | 131 |
val const_names = (#consts o the_class_data thy) class; |
24218 | 132 |
in |
26518 | 133 |
(map o apsnd) |
134 |
(fn c => (class, (c, (the o AList.lookup (op =) const_typs) c))) const_names |
|
24218 | 135 |
end; |
136 |
in maps params o ancestry thy end; |
|
137 |
||
29526 | 138 |
val base_sort = #base_sort oo the_class_data; |
139 |
||
140 |
fun rules thy class = |
|
46919 | 141 |
let val {axiom, of_class, ...} = the_class_data thy class |
29526 | 142 |
in (axiom, of_class) end; |
143 |
||
144 |
fun all_assm_intros thy = |
|
46919 | 145 |
Graph.fold (fn (_, (Class_Data {assm_intro, ...}, _)) => fold (insert Thm.eq_thm) |
146 |
(the_list assm_intro)) (Class_Data.get thy) []; |
|
24218 | 147 |
|
29526 | 148 |
fun these_defs thy = maps (#defs o the_class_data thy) o ancestry thy; |
149 |
fun these_operations thy = maps (#operations o the_class_data thy) o ancestry thy; |
|
29358 | 150 |
|
29526 | 151 |
val base_morphism = #base_morph oo the_class_data; |
47078 | 152 |
|
46919 | 153 |
fun morphism thy class = |
154 |
(case Element.eq_morphism thy (these_defs thy [class]) of |
|
155 |
SOME eq_morph => base_morphism thy class $> eq_morph |
|
156 |
| NONE => base_morphism thy class); |
|
47078 | 157 |
|
32850 | 158 |
val export_morphism = #export_morph oo the_class_data; |
28715
238f9966c80e
class morphism stemming from locale interpretation
haftmann
parents:
28674
diff
changeset
|
159 |
|
42359 | 160 |
fun print_classes ctxt = |
24218 | 161 |
let |
42360 | 162 |
val thy = Proof_Context.theory_of ctxt; |
24218 | 163 |
val algebra = Sign.classes_of thy; |
51510
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
164 |
|
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
165 |
val class_space = Proof_Context.class_space ctxt; |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
166 |
val type_space = Proof_Context.type_space ctxt; |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
167 |
val const_space = Proof_Context.const_space ctxt; |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
168 |
|
24218 | 169 |
val arities = |
170 |
Symtab.empty |
|
171 |
|> Symtab.fold (fn (tyco, arities) => fold (fn (class, _) => |
|
172 |
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
|
173 |
(Sorts.arities_of algebra); |
51510
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
174 |
|
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
175 |
fun prt_supersort class = |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
176 |
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
|
177 |
|
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
178 |
fun prt_arity class tyco = |
24218 | 179 |
let |
180 |
val Ss = Sorts.mg_domain algebra tyco [class]; |
|
24920 | 181 |
in Syntax.pretty_arity ctxt (tyco, Ss, [class]) end; |
51510
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
182 |
|
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
183 |
fun prt_param (c, ty) = |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
184 |
Pretty.block |
53539 | 185 |
[Name_Space.pretty ctxt const_space c, Pretty.str " ::", |
51510
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
186 |
Pretty.brk 1, Syntax.pretty_typ ctxt (Type.strip_sorts_dummy ty)]; |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
187 |
|
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
188 |
fun prt_entry class = |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
189 |
Pretty.block |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
190 |
([Pretty.command "class", Pretty.brk 1, |
53539 | 191 |
Name_Space.pretty ctxt class_space class, Pretty.str ":", Pretty.fbrk, |
192 |
Pretty.block [Pretty.str "supersort: ", prt_supersort class]] @ |
|
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
193 |
(case try (Axclass.get_info thy) class of |
51510
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
194 |
NONE => [] |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
195 |
| SOME {params, ...} => |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
196 |
[Pretty.fbrk, Pretty.big_list "parameters:" (map prt_param params)]) @ |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
197 |
(case Symtab.lookup arities class of |
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 ars => |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
200 |
[Pretty.fbrk, Pretty.big_list "instances:" |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
201 |
(map (prt_arity class) (sort (Name_Space.extern_ord ctxt type_space) ars))])); |
24218 | 202 |
in |
51510
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
203 |
Sorts.all_classes algebra |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
204 |
|> sort (Name_Space.extern_ord ctxt class_space) |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
205 |
|> map prt_entry |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
206 |
|> Pretty.chunks2 |
b4f7e6734acc
tuned print_classes: more standard order, markup, formatting;
wenzelm
parents:
49687
diff
changeset
|
207 |
|> Pretty.writeln |
24218 | 208 |
end; |
209 |
||
210 |
||
211 |
(* updaters *) |
|
212 |
||
32850 | 213 |
fun register class sups params base_sort base_morph export_morph |
52636 | 214 |
some_axiom some_assm_intro of_class thy = |
25002 | 215 |
let |
25368
f12613fda79d
proper implementation of check phase; non-qualified names for class operations
haftmann
parents:
25344
diff
changeset
|
216 |
val operations = map (fn (v_ty as (_, ty), (c, _)) => |
25683 | 217 |
(c, (class, (ty, Free v_ty)))) params; |
25038 | 218 |
val add_class = Graph.new_node (class, |
31599 | 219 |
make_class_data (((map o pairself) fst params, base_sort, |
52636 | 220 |
base_morph, export_morph, some_assm_intro, of_class, some_axiom), ([], operations))) |
29526 | 221 |
#> fold (curry Graph.add_edge class) sups; |
46919 | 222 |
in Class_Data.map add_class thy end; |
24218 | 223 |
|
46919 | 224 |
fun activate_defs class thms thy = |
225 |
(case Element.eq_morphism thy thms of |
|
226 |
SOME eq_morph => fold (fn cls => fn thy => |
|
38107 | 227 |
Context.theory_map (Locale.amend_registration (cls, base_morphism thy cls) |
228 |
(eq_morph, true) (export_morphism thy cls)) thy) (heritage thy [class]) thy |
|
46919 | 229 |
| NONE => thy); |
29526 | 230 |
|
25368
f12613fda79d
proper implementation of check phase; non-qualified names for class operations
haftmann
parents:
25344
diff
changeset
|
231 |
fun register_operation class (c, (t, some_def)) thy = |
25062 | 232 |
let |
29358 | 233 |
val base_sort = base_sort thy class; |
29439 | 234 |
val prep_typ = map_type_tfree |
235 |
(fn (v, sort) => if Name.aT = v |
|
236 |
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
|
237 |
val t' = map_types prep_typ t; |
f12613fda79d
proper implementation of check phase; non-qualified names for class operations
haftmann
parents:
25344
diff
changeset
|
238 |
val ty' = Term.fastype_of t'; |
25062 | 239 |
in |
240 |
thy |
|
46919 | 241 |
|> (Class_Data.map o Graph.map_node class o map_class_data o apsnd) |
25368
f12613fda79d
proper implementation of check phase; non-qualified names for class operations
haftmann
parents:
25344
diff
changeset
|
242 |
(fn (defs, operations) => |
25096 | 243 |
(fold cons (the_list some_def) defs, |
25368
f12613fda79d
proper implementation of check phase; non-qualified names for class operations
haftmann
parents:
25344
diff
changeset
|
244 |
(c, (class, (ty', t'))) :: operations)) |
36674
d95f39448121
eq_morphism is always optional: avoid trivial morphism for empty list of equations
haftmann
parents:
36672
diff
changeset
|
245 |
|> activate_defs class (the_list some_def) |
25062 | 246 |
end; |
24218 | 247 |
|
52636 | 248 |
fun register_subclass (sub, sup) some_dep_morph some_witn export thy = |
25618 | 249 |
let |
29558 | 250 |
val intros = (snd o rules thy) sup :: map_filter I |
52636 | 251 |
[Option.map (Drule.export_without_context_open o Element.conclude_witness) some_witn, |
29558 | 252 |
(fst o rules thy) sub]; |
47078 | 253 |
val classrel = |
51551 | 254 |
Goal.prove_sorry_global thy [] [] (Logic.mk_classrel (sub, sup)) |
52732 | 255 |
(K (EVERY (map (TRYALL o rtac) intros))); |
29509
1ff0f3f08a7b
migrated class package to new locale implementation
haftmann
parents:
29439
diff
changeset
|
256 |
val diff_sort = Sign.complete_sort thy [sup] |
31012 | 257 |
|> subtract (op =) (Sign.complete_sort thy [sub]) |
258 |
|> filter (is_class thy); |
|
46919 | 259 |
val add_dependency = |
260 |
(case some_dep_morph of |
|
261 |
SOME dep_morph => Locale.add_dependency sub |
|
52636 | 262 |
(sup, dep_morph $> Element.satisfy_morphism (the_list some_witn)) NONE export |
46919 | 263 |
| NONE => I); |
25618 | 264 |
in |
265 |
thy |
|
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
266 |
|> Axclass.add_classrel classrel |
46919 | 267 |
|> Class_Data.map (Graph.add_edge (sub, sup)) |
29526 | 268 |
|> activate_defs sub (these_defs thy diff_sort) |
32074 | 269 |
|> add_dependency |
24218 | 270 |
end; |
271 |
||
272 |
||
24589 | 273 |
(** classes and class target **) |
24218 | 274 |
|
25002 | 275 |
(* class context syntax *) |
24748 | 276 |
|
35858
0d394a82337e
handle hidden polymorphism in class target (without class target syntax, though)
haftmann
parents:
35845
diff
changeset
|
277 |
fun these_unchecks thy = map (fn (c, (_, (ty, t))) => (t, Const (c, ty))) |
0d394a82337e
handle hidden polymorphism in class target (without class target syntax, though)
haftmann
parents:
35845
diff
changeset
|
278 |
o these_operations thy; |
29577 | 279 |
|
29632
c3d576157244
fixed reading of class specs: declare class operations in context
haftmann
parents:
29610
diff
changeset
|
280 |
fun redeclare_const thy c = |
30364
577edc39b501
moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents:
30344
diff
changeset
|
281 |
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
|
282 |
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
|
283 |
|
29577 | 284 |
fun synchronize_class_syntax sort base_sort ctxt = |
24914
95cda5dd58d5
added proper subclass concept; improved class target
haftmann
parents:
24901
diff
changeset
|
285 |
let |
42360 | 286 |
val thy = Proof_Context.theory_of ctxt; |
26596 | 287 |
val algebra = Sign.classes_of thy; |
29577 | 288 |
val operations = these_operations thy sort; |
26518 | 289 |
fun subst_class_typ sort = map_type_tfree (K (TVar ((Name.aT, 0), sort))); |
290 |
val primary_constraints = |
|
25368
f12613fda79d
proper implementation of check phase; non-qualified names for class operations
haftmann
parents:
25344
diff
changeset
|
291 |
(map o apsnd) (subst_class_typ base_sort o fst o snd) operations; |
26518 | 292 |
val secondary_constraints = |
25368
f12613fda79d
proper implementation of check phase; non-qualified names for class operations
haftmann
parents:
25344
diff
changeset
|
293 |
(map o apsnd) (fn (class, (ty, _)) => subst_class_typ [class] ty) operations; |
46919 | 294 |
fun improve (c, ty) = |
295 |
(case AList.lookup (op =) primary_constraints c of |
|
296 |
SOME ty' => |
|
297 |
(case try (Type.raw_match (ty', ty)) Vartab.empty of |
|
298 |
SOME tyenv => |
|
299 |
(case Vartab.lookup tyenv (Name.aT, 0) of |
|
300 |
SOME (_, ty' as TVar (vi, sort)) => |
|
301 |
if Type_Infer.is_param vi andalso Sorts.sort_le algebra (base_sort, sort) |
|
302 |
then SOME (ty', TFree (Name.aT, base_sort)) |
|
303 |
else NONE |
|
26238 | 304 |
| _ => NONE) |
305 |
| NONE => NONE) |
|
46919 | 306 |
| NONE => NONE); |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
46923
diff
changeset
|
307 |
fun subst (c, _) = Option.map snd (AList.lookup (op =) operations c); |
29577 | 308 |
val unchecks = these_unchecks thy sort; |
25083 | 309 |
in |
310 |
ctxt |
|
29632
c3d576157244
fixed reading of class specs: declare class operations in context
haftmann
parents:
29610
diff
changeset
|
311 |
|> fold (redeclare_const thy o fst) primary_constraints |
26518 | 312 |
|> Overloading.map_improvable_syntax (K (((primary_constraints, secondary_constraints), |
26730 | 313 |
(((improve, subst), true), unchecks)), false)) |
26518 | 314 |
|> Overloading.set_primary_constraints |
25083 | 315 |
end; |
316 |
||
29632
c3d576157244
fixed reading of class specs: declare class operations in context
haftmann
parents:
29610
diff
changeset
|
317 |
fun redeclare_operations thy sort = |
c3d576157244
fixed reading of class specs: declare class operations in context
haftmann
parents:
29610
diff
changeset
|
318 |
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
|
319 |
|
29577 | 320 |
fun begin sort base_sort ctxt = |
25083 | 321 |
ctxt |
322 |
|> Variable.declare_term |
|
323 |
(Logic.mk_type (TFree (Name.aT, base_sort))) |
|
29577 | 324 |
|> synchronize_class_syntax sort base_sort |
39378
df86b1b4ce10
more precise name for activation of improveable syntax
haftmann
parents:
39134
diff
changeset
|
325 |
|> Overloading.activate_improvable_syntax; |
24901
d3cbf79769b9
added first version of user-space type system for class target
haftmann
parents:
24847
diff
changeset
|
326 |
|
25311 | 327 |
fun init class thy = |
328 |
thy |
|
29509
1ff0f3f08a7b
migrated class package to new locale implementation
haftmann
parents:
29439
diff
changeset
|
329 |
|> Locale.init class |
29358 | 330 |
|> begin [class] (base_sort thy class); |
24914
95cda5dd58d5
added proper subclass concept; improved class target
haftmann
parents:
24901
diff
changeset
|
331 |
|
24748 | 332 |
|
27690
24738db98d34
some steps towards explicit class target for canonical interpretation
haftmann
parents:
27684
diff
changeset
|
333 |
(* class target *) |
24738db98d34
some steps towards explicit class target for canonical interpretation
haftmann
parents:
27684
diff
changeset
|
334 |
|
30364
577edc39b501
moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents:
30344
diff
changeset
|
335 |
val class_prefix = Logic.const_of_class o Long_Name.base_name; |
29526 | 336 |
|
47078 | 337 |
local |
338 |
||
38619
25e401d53900
tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents:
38392
diff
changeset
|
339 |
fun target_extension f class lthy = |
25e401d53900
tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents:
38392
diff
changeset
|
340 |
lthy |
25e401d53900
tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents:
38392
diff
changeset
|
341 |
|> Local_Theory.raw_theory f |
47079
6231adc3895d
synchronize syntax uniformly for target stack and aux. context;
wenzelm
parents:
47078
diff
changeset
|
342 |
|> Local_Theory.map_contexts |
47245
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents:
47081
diff
changeset
|
343 |
(K (synchronize_class_syntax [class] (base_sort (Proof_Context.theory_of lthy) class))); |
38619
25e401d53900
tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents:
38392
diff
changeset
|
344 |
|
48102
9ed089bcad93
class target handles additional non-class term parameters appropriately
haftmann
parents:
47289
diff
changeset
|
345 |
fun target_const class ((c, mx), (type_params, term_params, dict)) thy = |
27690
24738db98d34
some steps towards explicit class target for canonical interpretation
haftmann
parents:
27684
diff
changeset
|
346 |
let |
29577 | 347 |
val morph = morphism thy class; |
48102
9ed089bcad93
class target handles additional non-class term parameters appropriately
haftmann
parents:
47289
diff
changeset
|
348 |
val class_params = map fst (these_params thy [class]); |
9ed089bcad93
class target handles additional non-class term parameters appropriately
haftmann
parents:
47289
diff
changeset
|
349 |
val additional_params = |
9ed089bcad93
class target handles additional non-class term parameters appropriately
haftmann
parents:
47289
diff
changeset
|
350 |
subtract (fn (v, Free (w, _)) => v = w | _ => false) class_params term_params; |
9ed089bcad93
class target handles additional non-class term parameters appropriately
haftmann
parents:
47289
diff
changeset
|
351 |
val context_params = map (Morphism.term morph) (type_params @ additional_params); |
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30280
diff
changeset
|
352 |
val b = Morphism.binding morph c; |
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30280
diff
changeset
|
353 |
val b_def = Morphism.binding morph (Binding.suffix_name "_dict" b); |
29577 | 354 |
val c' = Sign.full_name thy b; |
29439 | 355 |
val dict' = Morphism.term morph dict; |
48102
9ed089bcad93
class target handles additional non-class term parameters appropriately
haftmann
parents:
47289
diff
changeset
|
356 |
val ty' = map Term.fastype_of context_params ---> Term.fastype_of dict'; |
9ed089bcad93
class target handles additional non-class term parameters appropriately
haftmann
parents:
47289
diff
changeset
|
357 |
val def_eq = Logic.mk_equals (list_comb (Const (c', ty'), context_params), dict') |
29577 | 358 |
|> map_types Type.strip_sorts; |
27690
24738db98d34
some steps towards explicit class target for canonical interpretation
haftmann
parents:
27684
diff
changeset
|
359 |
in |
29577 | 360 |
thy |
42375
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42360
diff
changeset
|
361 |
|> Sign.declare_const_global ((b, Type.strip_sorts ty'), mx) |
29577 | 362 |
|> snd |
42375
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42360
diff
changeset
|
363 |
|> Thm.add_def_global false false (b_def, def_eq) |
36106
19deea200358
Thm.add_axiom/add_def: return internal name of foundational axiom;
wenzelm
parents:
35858
diff
changeset
|
364 |
|>> apsnd Thm.varifyT_global |
39557
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents:
39438
diff
changeset
|
365 |
|-> (fn (_, def_thm) => Global_Theory.store_thm (b_def, def_thm) |
29577 | 366 |
#> snd |
48102
9ed089bcad93
class target handles additional non-class term parameters appropriately
haftmann
parents:
47289
diff
changeset
|
367 |
#> null context_params ? register_operation class (c', (dict', SOME (Thm.symmetric def_thm)))) |
27690
24738db98d34
some steps towards explicit class target for canonical interpretation
haftmann
parents:
27684
diff
changeset
|
368 |
|> Sign.add_const_constraint (c', SOME ty') |
24738db98d34
some steps towards explicit class target for canonical interpretation
haftmann
parents:
27684
diff
changeset
|
369 |
end; |
24738db98d34
some steps towards explicit class target for canonical interpretation
haftmann
parents:
27684
diff
changeset
|
370 |
|
38619
25e401d53900
tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents:
38392
diff
changeset
|
371 |
fun target_abbrev class prmode ((c, mx), rhs) thy = |
27690
24738db98d34
some steps towards explicit class target for canonical interpretation
haftmann
parents:
27684
diff
changeset
|
372 |
let |
29577 | 373 |
val morph = morphism thy class; |
374 |
val unchecks = these_unchecks thy [class]; |
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30280
diff
changeset
|
375 |
val b = Morphism.binding morph c; |
29577 | 376 |
val c' = Sign.full_name thy b; |
27690
24738db98d34
some steps towards explicit class target for canonical interpretation
haftmann
parents:
27684
diff
changeset
|
377 |
val rhs' = Pattern.rewrite_term thy unchecks [] rhs; |
24738db98d34
some steps towards explicit class target for canonical interpretation
haftmann
parents:
27684
diff
changeset
|
378 |
val ty' = Term.fastype_of rhs'; |
45344
e209da839ff4
added Logic.varify_types_global/unvarify_types_global, which avoids somewhat expensive Term.map_types;
wenzelm
parents:
45310
diff
changeset
|
379 |
val rhs'' = Logic.varify_types_global rhs'; |
27690
24738db98d34
some steps towards explicit class target for canonical interpretation
haftmann
parents:
27684
diff
changeset
|
380 |
in |
29577 | 381 |
thy |
33173
b8ca12f6681a
eliminated obsolete tags for types/consts -- now handled via name space, in strongly typed fashion;
wenzelm
parents:
32970
diff
changeset
|
382 |
|> Sign.add_abbrev (#1 prmode) (b, rhs'') |
29577 | 383 |
|> snd |
27690
24738db98d34
some steps towards explicit class target for canonical interpretation
haftmann
parents:
27684
diff
changeset
|
384 |
|> Sign.add_const_constraint (c', SOME ty') |
24738db98d34
some steps towards explicit class target for canonical interpretation
haftmann
parents:
27684
diff
changeset
|
385 |
|> Sign.notation true prmode [(Const (c', ty'), mx)] |
37146
f652333bbf8e
renamed structure PrintMode to Print_Mode, keeping the old name as legacy alias for some time;
wenzelm
parents:
37145
diff
changeset
|
386 |
|> not (#1 prmode = Print_Mode.input) ? register_operation class (c', (rhs', NONE)) |
27690
24738db98d34
some steps towards explicit class target for canonical interpretation
haftmann
parents:
27684
diff
changeset
|
387 |
end; |
24738db98d34
some steps towards explicit class target for canonical interpretation
haftmann
parents:
27684
diff
changeset
|
388 |
|
38619
25e401d53900
tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents:
38392
diff
changeset
|
389 |
in |
25e401d53900
tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents:
38392
diff
changeset
|
390 |
|
25e401d53900
tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents:
38392
diff
changeset
|
391 |
fun const class arg = target_extension (target_const class arg) class; |
25e401d53900
tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents:
38392
diff
changeset
|
392 |
fun abbrev class prmode arg = target_extension (target_abbrev class prmode arg) class; |
25e401d53900
tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents:
38392
diff
changeset
|
393 |
|
25e401d53900
tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents:
38392
diff
changeset
|
394 |
end; |
25e401d53900
tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents:
38392
diff
changeset
|
395 |
|
27690
24738db98d34
some steps towards explicit class target for canonical interpretation
haftmann
parents:
27684
diff
changeset
|
396 |
|
31635 | 397 |
(* simple subclasses *) |
398 |
||
399 |
local |
|
400 |
||
401 |
fun gen_classrel mk_prop classrel thy = |
|
402 |
let |
|
403 |
fun after_qed results = |
|
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
404 |
Proof_Context.background_theory ((fold o fold) Axclass.add_classrel results); |
31635 | 405 |
in |
406 |
thy |
|
42360 | 407 |
|> Proof_Context.init_global |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36106
diff
changeset
|
408 |
|> Proof.theorem NONE after_qed [[(mk_prop thy classrel, [])]] |
31635 | 409 |
end; |
410 |
||
411 |
in |
|
412 |
||
413 |
val classrel = |
|
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
414 |
gen_classrel (Logic.mk_classrel oo Axclass.cert_classrel); |
31635 | 415 |
val classrel_cmd = |
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
416 |
gen_classrel (Logic.mk_classrel oo Axclass.read_classrel); |
31635 | 417 |
|
418 |
end; (*local*) |
|
419 |
||
420 |
||
25462 | 421 |
(** instantiation target **) |
422 |
||
423 |
(* bookkeeping *) |
|
424 |
||
425 |
datatype instantiation = Instantiation of { |
|
25864 | 426 |
arities: string list * (string * sort) list * sort, |
25462 | 427 |
params: ((string * string) * (string * typ)) list |
25603 | 428 |
(*(instantiation parameter, type constructor), (local instantiation parameter, typ)*) |
25462 | 429 |
} |
430 |
||
33519 | 431 |
structure Instantiation = Proof_Data |
25462 | 432 |
( |
46919 | 433 |
type T = instantiation; |
434 |
fun init _ = Instantiation {arities = ([], [], []), params = []}; |
|
25462 | 435 |
); |
436 |
||
25485 | 437 |
fun mk_instantiation (arities, params) = |
46919 | 438 |
Instantiation {arities = arities, params = params}; |
439 |
||
440 |
val get_instantiation = |
|
441 |
(fn Instantiation data => data) o Instantiation.get o Local_Theory.target_of; |
|
25462 | 442 |
|
46919 | 443 |
fun map_instantiation f = |
444 |
(Local_Theory.target o Instantiation.map) |
|
445 |
(fn Instantiation {arities, params} => mk_instantiation (f (arities, params))); |
|
446 |
||
447 |
fun the_instantiation lthy = |
|
448 |
(case get_instantiation lthy of |
|
449 |
{arities = ([], [], []), ...} => error "No instantiation target" |
|
450 |
| data => data); |
|
25462 | 451 |
|
25485 | 452 |
val instantiation_params = #params o get_instantiation; |
25462 | 453 |
|
30519
c05c0199826f
coherent binding policy with primitive target operations
haftmann
parents:
30364
diff
changeset
|
454 |
fun instantiation_param lthy b = instantiation_params lthy |
c05c0199826f
coherent binding policy with primitive target operations
haftmann
parents:
30364
diff
changeset
|
455 |
|> find_first (fn (_, (v, _)) => Binding.name_of b = v) |
25462 | 456 |
|> Option.map (fst o fst); |
457 |
||
31869 | 458 |
fun read_multi_arity thy (raw_tycos, raw_sorts, raw_sort) = |
459 |
let |
|
42360 | 460 |
val ctxt = Proof_Context.init_global thy; |
461 |
val all_arities = map (fn raw_tyco => Proof_Context.read_arity ctxt |
|
31869 | 462 |
(raw_tyco, raw_sorts, raw_sort)) raw_tycos; |
463 |
val tycos = map #1 all_arities; |
|
464 |
val (_, sorts, sort) = hd all_arities; |
|
43329
84472e198515
tuned signature: Name.invent and Name.invent_names;
wenzelm
parents:
42402
diff
changeset
|
465 |
val vs = Name.invent_names Name.context Name.aT sorts; |
31869 | 466 |
in (tycos, vs, sort) end; |
467 |
||
25462 | 468 |
|
469 |
(* syntax *) |
|
470 |
||
26238 | 471 |
fun synchronize_inst_syntax ctxt = |
25462 | 472 |
let |
46919 | 473 |
val Instantiation {params, ...} = Instantiation.get ctxt; |
31249 | 474 |
|
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
475 |
val lookup_inst_param = Axclass.lookup_inst_param |
42360 | 476 |
(Sign.consts_of (Proof_Context.theory_of ctxt)) params; |
46919 | 477 |
fun subst (c, ty) = |
478 |
(case lookup_inst_param (c, ty) of |
|
479 |
SOME (v_ty as (_, ty)) => SOME (ty, Free v_ty) |
|
480 |
| NONE => NONE); |
|
26238 | 481 |
val unchecks = |
482 |
map (fn ((c, _), v_ty as (_, ty)) => (Free v_ty, Const (c, ty))) params; |
|
483 |
in |
|
484 |
ctxt |
|
26259 | 485 |
|> Overloading.map_improvable_syntax |
46919 | 486 |
(fn (((primary_constraints, _), (((improve, _), _), _)), _) => |
487 |
(((primary_constraints, []), (((improve, subst), false), unchecks)), false)) |
|
26238 | 488 |
end; |
25462 | 489 |
|
42385
b46b47775cbe
simplified Sorts.class_error: plain Proof.context;
wenzelm
parents:
42383
diff
changeset
|
490 |
fun resort_terms ctxt algebra consts constraints ts = |
38382 | 491 |
let |
42385
b46b47775cbe
simplified Sorts.class_error: plain Proof.context;
wenzelm
parents:
42383
diff
changeset
|
492 |
fun matchings (Const (c_ty as (c, _))) = |
b46b47775cbe
simplified Sorts.class_error: plain Proof.context;
wenzelm
parents:
42383
diff
changeset
|
493 |
(case constraints c of |
b46b47775cbe
simplified Sorts.class_error: plain Proof.context;
wenzelm
parents:
42383
diff
changeset
|
494 |
NONE => I |
b46b47775cbe
simplified Sorts.class_error: plain Proof.context;
wenzelm
parents:
42383
diff
changeset
|
495 |
| SOME sorts => |
b46b47775cbe
simplified Sorts.class_error: plain Proof.context;
wenzelm
parents:
42383
diff
changeset
|
496 |
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
|
497 |
| matchings _ = I; |
38382 | 498 |
val tvartab = (fold o fold_aterms) matchings ts Vartab.empty |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
46923
diff
changeset
|
499 |
handle Sorts.CLASS_ERROR e => error (Sorts.class_error (Context.pretty ctxt) e); |
38382 | 500 |
val inst = map_type_tvar |
501 |
(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
|
502 |
in if Vartab.is_empty tvartab then ts else (map o map_types) inst ts end; |
38382 | 503 |
|
25462 | 504 |
|
505 |
(* target *) |
|
506 |
||
47078 | 507 |
fun define_overloaded (c, U) v (b_def, rhs) = |
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
508 |
Local_Theory.background_theory_result (Axclass.declare_overloaded (c, U) |
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
509 |
##>> Axclass.define_overloaded b_def (c, rhs)) |
38382 | 510 |
##> (map_instantiation o apsnd) (filter_out (fn (_, (v', _)) => v' = v)) |
47245
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents:
47081
diff
changeset
|
511 |
##> Local_Theory.map_contexts (K synchronize_inst_syntax); |
38382 | 512 |
|
47289 | 513 |
fun foundation (((b, U), mx), (b_def, rhs)) params lthy = |
46919 | 514 |
(case instantiation_param lthy b of |
515 |
SOME c => |
|
516 |
if mx <> NoSyn then error ("Illegal mixfix syntax for overloaded constant " ^ quote c) |
|
517 |
else lthy |> define_overloaded (c, U) (Binding.name_of b) (b_def, rhs) |
|
47289 | 518 |
| NONE => lthy |> Generic_Target.theory_foundation (((b, U), mx), (b_def, rhs)) params); |
38382 | 519 |
|
520 |
fun pretty lthy = |
|
26518 | 521 |
let |
46919 | 522 |
val {arities = (tycos, vs, sort), params} = the_instantiation lthy; |
38382 | 523 |
fun pr_arity tyco = Syntax.pretty_arity lthy (tyco, map snd vs, sort); |
524 |
fun pr_param ((c, _), (v, ty)) = |
|
42359 | 525 |
Pretty.block (Pretty.breaks |
42360 | 526 |
[Pretty.str v, Pretty.str "==", Pretty.str (Proof_Context.extern_const lthy c), |
42359 | 527 |
Pretty.str "::", Syntax.pretty_typ lthy ty]); |
46923 | 528 |
in Pretty.command "instantiation" :: map pr_arity tycos @ map pr_param params end; |
26518 | 529 |
|
38382 | 530 |
fun conclude lthy = |
531 |
let |
|
42359 | 532 |
val (tycos, vs, sort) = #arities (the_instantiation lthy); |
42360 | 533 |
val thy = Proof_Context.theory_of lthy; |
42359 | 534 |
val _ = tycos |> List.app (fn tyco => |
46919 | 535 |
if Sign.of_sort thy (Type (tyco, map TFree vs), sort) then () |
42360 | 536 |
else error ("Missing instance proof for type " ^ quote (Proof_Context.extern_type lthy tyco))); |
38382 | 537 |
in lthy end; |
538 |
||
539 |
fun instantiation (tycos, vs, sort) thy = |
|
25462 | 540 |
let |
47061
355317493f34
clarified Local_Theory.init: avoid hardwired naming policy, discontinued odd/unused group argument (cf. 5ee13e0428d2);
wenzelm
parents:
47005
diff
changeset
|
541 |
val naming = Sign.naming_of thy; |
355317493f34
clarified Local_Theory.init: avoid hardwired naming policy, discontinued odd/unused group argument (cf. 5ee13e0428d2);
wenzelm
parents:
47005
diff
changeset
|
542 |
|
25536 | 543 |
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
|
544 |
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
|
545 |
fun get_param tyco (param, (_, (c, ty))) = |
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
546 |
if can (Axclass.param_of_inst thy) (c, tyco) |
25603 | 547 |
then NONE else SOME ((c, tyco), |
46917 | 548 |
(param ^ "_" ^ Long_Name.base_name tyco, map_atyps (K (Type (tyco, map TFree vs))) ty)); |
31249 | 549 |
val params = map_product get_param tycos class_params |> map_filter I; |
51578 | 550 |
val _ = if null params andalso forall (fn tyco => can (Sign.arity_sorts thy tyco) sort) tycos |
551 |
then error "No parameters and no pending instance proof obligations in instantiation." |
|
552 |
else (); |
|
26518 | 553 |
val primary_constraints = map (apsnd |
31249 | 554 |
(map_atyps (K (TVar ((Name.aT, 0), [])))) o snd o snd) class_params; |
26518 | 555 |
val algebra = Sign.classes_of thy |
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
46923
diff
changeset
|
556 |
|> fold (fn tyco => Sorts.add_arities (Context.pretty_global thy) |
26518 | 557 |
(tyco, map (fn class => (class, map snd vs)) sort)) tycos; |
558 |
val consts = Sign.consts_of thy; |
|
559 |
val improve_constraints = AList.lookup (op =) |
|
31249 | 560 |
(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
|
561 |
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
|
562 |
val lookup_inst_param = Axclass.lookup_inst_param consts params; |
42388 | 563 |
fun improve (c, ty) = |
564 |
(case lookup_inst_param (c, ty) of |
|
565 |
SOME (_, ty') => if Sign.typ_instance thy (ty', ty) then SOME (ty, ty') else NONE |
|
566 |
| NONE => NONE); |
|
25485 | 567 |
in |
568 |
thy |
|
42360 | 569 |
|> Proof_Context.init_global |
31249 | 570 |
|> Instantiation.put (mk_instantiation ((tycos, vs, sort), params)) |
27281 | 571 |
|> fold (Variable.declare_typ o TFree) vs |
31249 | 572 |
|> fold (Variable.declare_names o Free o snd) params |
26259 | 573 |
|> (Overloading.map_improvable_syntax o apfst) |
29969
9dbb046136d0
more precise improvement in instantiation user space type system
haftmann
parents:
29632
diff
changeset
|
574 |
(K ((primary_constraints, []), (((improve, K NONE), false), []))) |
39378
df86b1b4ce10
more precise name for activation of improveable syntax
haftmann
parents:
39134
diff
changeset
|
575 |
|> Overloading.activate_improvable_syntax |
45429 | 576 |
|> Context.proof_map (Syntax_Phases.term_check 0 "resorting" resort_check) |
26238 | 577 |
|> synchronize_inst_syntax |
47061
355317493f34
clarified Local_Theory.init: avoid hardwired naming policy, discontinued odd/unused group argument (cf. 5ee13e0428d2);
wenzelm
parents:
47005
diff
changeset
|
578 |
|> Local_Theory.init naming |
38382 | 579 |
{define = Generic_Target.define foundation, |
47250
6523a21076a8
clarified Generic_Target.notes: always perform Attrib.partial_evaluation;
wenzelm
parents:
47245
diff
changeset
|
580 |
notes = Generic_Target.notes Generic_Target.theory_notes, |
47286
392c4cd97e5c
more uniform theory_abbrev with const_declaration;
wenzelm
parents:
47279
diff
changeset
|
581 |
abbrev = Generic_Target.abbrev Generic_Target.theory_abbrev, |
47279
4bab649dedf0
clarified standard_declaration vs. theory_declaration;
wenzelm
parents:
47250
diff
changeset
|
582 |
declaration = K Generic_Target.theory_declaration, |
38382 | 583 |
pretty = pretty, |
584 |
exit = Local_Theory.target_of o conclude} |
|
25485 | 585 |
end; |
586 |
||
38382 | 587 |
fun instantiation_cmd arities thy = |
588 |
instantiation (read_multi_arity thy arities) thy; |
|
26238 | 589 |
|
25485 | 590 |
fun gen_instantiation_instance do_proof after_qed lthy = |
591 |
let |
|
25864 | 592 |
val (tycos, vs, sort) = (#arities o the_instantiation) lthy; |
593 |
val arities_proof = maps (fn tyco => Logic.mk_arities (tyco, map snd vs, sort)) tycos; |
|
25462 | 594 |
fun after_qed' results = |
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
595 |
Local_Theory.background_theory (fold (Axclass.add_arity o Thm.varifyT_global) results) |
25462 | 596 |
#> after_qed; |
597 |
in |
|
598 |
lthy |
|
599 |
|> do_proof after_qed' arities_proof |
|
600 |
end; |
|
601 |
||
25485 | 602 |
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
|
603 |
Proof.theorem NONE (after_qed o map the_single) (map (fn t => [(t, [])]) ts)); |
25462 | 604 |
|
25485 | 605 |
fun prove_instantiation_instance tac = gen_instantiation_instance (fn after_qed => |
25502 | 606 |
fn ts => fn lthy => after_qed (map (fn t => Goal.prove lthy [] [] t |
607 |
(fn {context, ...} => tac context)) ts) lthy) I; |
|
25462 | 608 |
|
28666 | 609 |
fun prove_instantiation_exit tac = prove_instantiation_instance tac |
33671 | 610 |
#> Local_Theory.exit_global; |
28666 | 611 |
|
612 |
fun prove_instantiation_exit_result f tac x lthy = |
|
613 |
let |
|
42360 | 614 |
val morph = Proof_Context.export_morphism lthy |
615 |
(Proof_Context.init_global (Proof_Context.theory_of lthy)); |
|
29439 | 616 |
val y = f morph x; |
28666 | 617 |
in |
618 |
lthy |
|
619 |
|> prove_instantiation_exit (fn ctxt => tac ctxt y) |
|
620 |
|> pair y |
|
621 |
end; |
|
622 |
||
29526 | 623 |
|
31635 | 624 |
(* simplified instantiation interface with no class parameter *) |
625 |
||
31869 | 626 |
fun instance_arity_cmd raw_arities thy = |
31635 | 627 |
let |
31869 | 628 |
val (tycos, vs, sort) = read_multi_arity thy raw_arities; |
629 |
val sorts = map snd vs; |
|
630 |
val arities = maps (fn tyco => Logic.mk_arities (tyco, sorts, sort)) tycos; |
|
47078 | 631 |
fun after_qed results = |
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51578
diff
changeset
|
632 |
Proof_Context.background_theory ((fold o fold) Axclass.add_arity results); |
31635 | 633 |
in |
634 |
thy |
|
42360 | 635 |
|> Proof_Context.init_global |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36106
diff
changeset
|
636 |
|> Proof.theorem NONE after_qed (map (fn t => [(t, [])]) arities) |
31635 | 637 |
end; |
638 |
||
639 |
||
29526 | 640 |
(** tactics and methods **) |
641 |
||
642 |
fun intro_classes_tac facts st = |
|
643 |
let |
|
644 |
val thy = Thm.theory_of_thm st; |
|
645 |
val classes = Sign.all_classes thy; |
|
646 |
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
|
647 |
val class_intros = map_filter (try (#intro o Axclass.get_info thy)) classes; |
29526 | 648 |
val assm_intros = all_assm_intros thy; |
649 |
in |
|
650 |
Method.intros_tac (class_trivs @ class_intros @ assm_intros) facts st |
|
651 |
end; |
|
652 |
||
653 |
fun default_intro_tac ctxt [] = |
|
39438
c5ece2a7a86e
Isar "default" step needs to fail for solved problems, for clear distinction of '.' and '..' for example -- amending lapse introduced in 9de4d64eee3b (April 2004);
wenzelm
parents:
39378
diff
changeset
|
654 |
COND Thm.no_prems no_tac |
c5ece2a7a86e
Isar "default" step needs to fail for solved problems, for clear distinction of '.' and '..' for example -- amending lapse introduced in 9de4d64eee3b (April 2004);
wenzelm
parents:
39378
diff
changeset
|
655 |
(intro_classes_tac [] ORELSE Locale.intro_locales_tac true ctxt []) |
29526 | 656 |
| default_intro_tac _ _ = no_tac; |
657 |
||
658 |
fun default_tac rules ctxt facts = |
|
659 |
HEADGOAL (Method.some_rule_tac rules ctxt facts) ORELSE |
|
660 |
default_intro_tac ctxt facts; |
|
661 |
||
53171 | 662 |
val _ = Theory.setup |
30515 | 663 |
(Method.setup (Binding.name "intro_classes") (Scan.succeed (K (METHOD intro_classes_tac))) |
664 |
"back-chain introduction rules of classes" #> |
|
665 |
Method.setup (Binding.name "default") (Attrib.thms >> (METHOD oo default_tac)) |
|
53171 | 666 |
"apply some intro/elim rule"); |
29526 | 667 |
|
24218 | 668 |
end; |
25683 | 669 |