wenzelm@404
|
1 |
(* Title: Pure/axclass.ML
|
wenzelm@404
|
2 |
Author: Markus Wenzel, TU Muenchen
|
wenzelm@404
|
3 |
|
wenzelm@24964
|
4 |
Type classes defined as predicates, associated with a record of
|
wenzelm@24964
|
5 |
parameters.
|
wenzelm@404
|
6 |
*)
|
wenzelm@404
|
7 |
|
wenzelm@404
|
8 |
signature AX_CLASS =
|
wenzelm@3938
|
9 |
sig
|
wenzelm@30344
|
10 |
val define_class: binding * class list -> string list ->
|
wenzelm@30211
|
11 |
(Thm.binding * term list) list -> theory -> class * theory
|
haftmann@24589
|
12 |
val add_classrel: thm -> theory -> theory
|
haftmann@24589
|
13 |
val add_arity: thm -> theory -> theory
|
haftmann@24589
|
14 |
val prove_classrel: class * class -> tactic -> theory -> theory
|
haftmann@24589
|
15 |
val prove_arity: string * sort list * sort -> tactic -> theory -> theory
|
wenzelm@24964
|
16 |
val get_info: theory -> class ->
|
wenzelm@24964
|
17 |
{def: thm, intro: thm, axioms: thm list, params: (string * typ) list}
|
wenzelm@19243
|
18 |
val class_intros: theory -> thm list
|
haftmann@20107
|
19 |
val class_of_param: theory -> string -> class option
|
wenzelm@19405
|
20 |
val cert_classrel: theory -> class * class -> class * class
|
wenzelm@19405
|
21 |
val read_classrel: theory -> xstring * xstring -> class * class
|
wenzelm@30344
|
22 |
val axiomatize_class: binding * class list -> theory -> theory
|
wenzelm@30344
|
23 |
val axiomatize_class_cmd: binding * xstring list -> theory -> theory
|
wenzelm@24929
|
24 |
val axiomatize_classrel: (class * class) list -> theory -> theory
|
wenzelm@24929
|
25 |
val axiomatize_classrel_cmd: (xstring * xstring) list -> theory -> theory
|
wenzelm@24929
|
26 |
val axiomatize_arity: arity -> theory -> theory
|
wenzelm@24929
|
27 |
val axiomatize_arity_cmd: xstring * string list * string -> theory -> theory
|
haftmann@25486
|
28 |
val instance_name: string * class -> string
|
haftmann@25597
|
29 |
val declare_overloaded: string * typ -> theory -> term * theory
|
haftmann@30519
|
30 |
val define_overloaded: binding -> string * term -> theory -> thm * theory
|
haftmann@25597
|
31 |
val unoverload: theory -> thm -> thm
|
haftmann@25597
|
32 |
val overload: theory -> thm -> thm
|
haftmann@25597
|
33 |
val unoverload_conv: theory -> conv
|
haftmann@25597
|
34 |
val overload_conv: theory -> conv
|
haftmann@25597
|
35 |
val unoverload_const: theory -> string * typ -> string
|
haftmann@31249
|
36 |
val lookup_inst_param: Consts.T -> ((string * string) * 'a) list -> string * typ -> 'a option
|
haftmann@25597
|
37 |
val param_of_inst: theory -> string * string -> string
|
haftmann@25597
|
38 |
val inst_of_param: theory -> string -> (string * string) option
|
wenzelm@33172
|
39 |
val thynames_of_arity: theory -> class * string -> string list
|
wenzelm@19574
|
40 |
type cache
|
wenzelm@24929
|
41 |
val of_sort: theory -> typ * sort -> cache -> thm list * cache (*exception Sorts.CLASS_ERROR*)
|
wenzelm@19574
|
42 |
val cache: cache
|
haftmann@26246
|
43 |
val introN: string
|
haftmann@25617
|
44 |
val axiomsN: string
|
wenzelm@3938
|
45 |
end;
|
wenzelm@404
|
46 |
|
wenzelm@15801
|
47 |
structure AxClass: AX_CLASS =
|
wenzelm@404
|
48 |
struct
|
wenzelm@404
|
49 |
|
wenzelm@19405
|
50 |
(** theory data **)
|
wenzelm@423
|
51 |
|
wenzelm@19405
|
52 |
(* class parameters (canonical order) *)
|
wenzelm@423
|
53 |
|
wenzelm@19405
|
54 |
type param = string * class;
|
wenzelm@423
|
55 |
|
wenzelm@19405
|
56 |
fun add_param pp ((x, c): param) params =
|
wenzelm@19405
|
57 |
(case AList.lookup (op =) params x of
|
wenzelm@19405
|
58 |
NONE => (x, c) :: params
|
wenzelm@19405
|
59 |
| SOME c' => error ("Duplicate class parameter " ^ quote x ^
|
wenzelm@19405
|
60 |
" for " ^ Pretty.string_of_sort pp [c] ^
|
wenzelm@19405
|
61 |
(if c = c' then "" else " and " ^ Pretty.string_of_sort pp [c'])));
|
wenzelm@423
|
62 |
|
wenzelm@19405
|
63 |
fun merge_params _ ([], qs) = qs
|
wenzelm@19405
|
64 |
| merge_params pp (ps, qs) =
|
wenzelm@19405
|
65 |
fold_rev (fn q => if member (op =) ps q then I else add_param pp q) qs ps;
|
wenzelm@423
|
66 |
|
wenzelm@423
|
67 |
|
wenzelm@19511
|
68 |
(* axclasses *)
|
wenzelm@6379
|
69 |
|
wenzelm@19243
|
70 |
val introN = "intro";
|
wenzelm@19511
|
71 |
val superN = "super";
|
wenzelm@19243
|
72 |
val axiomsN = "axioms";
|
wenzelm@19243
|
73 |
|
wenzelm@19392
|
74 |
datatype axclass = AxClass of
|
wenzelm@19460
|
75 |
{def: thm,
|
wenzelm@19392
|
76 |
intro: thm,
|
haftmann@21463
|
77 |
axioms: thm list,
|
haftmann@21925
|
78 |
params: (string * typ) list};
|
wenzelm@19392
|
79 |
|
wenzelm@19460
|
80 |
type axclasses = axclass Symtab.table * param list;
|
wenzelm@19392
|
81 |
|
haftmann@27397
|
82 |
fun make_axclass ((def, intro, axioms), params) = AxClass
|
haftmann@27397
|
83 |
{def = def, intro = intro, axioms = axioms, params = params};
|
wenzelm@19405
|
84 |
|
wenzelm@19405
|
85 |
fun merge_axclasses pp ((tab1, params1), (tab2, params2)) : axclasses =
|
wenzelm@19405
|
86 |
(Symtab.merge (K true) (tab1, tab2), merge_params pp (params1, params2));
|
wenzelm@19405
|
87 |
|
wenzelm@19392
|
88 |
|
wenzelm@19392
|
89 |
(* instances *)
|
wenzelm@19392
|
90 |
|
wenzelm@20628
|
91 |
val classrel_prefix = "classrel_";
|
wenzelm@20628
|
92 |
val arity_prefix = "arity_";
|
wenzelm@19511
|
93 |
|
wenzelm@19574
|
94 |
type instances =
|
wenzelm@33172
|
95 |
((class * class) * thm) list * (*classrel theorems*)
|
wenzelm@33172
|
96 |
((class * sort list) * (thm * string)) list Symtab.table; (*arity theorems with theory name*)
|
wenzelm@6379
|
97 |
|
wenzelm@19574
|
98 |
fun merge_instances ((classrel1, arities1): instances, (classrel2, arities2)) =
|
wenzelm@19574
|
99 |
(merge (eq_fst op =) (classrel1, classrel2),
|
wenzelm@19574
|
100 |
Symtab.join (K (merge (eq_fst op =))) (arities1, arities2));
|
wenzelm@19392
|
101 |
|
wenzelm@19392
|
102 |
|
haftmann@25597
|
103 |
(* instance parameters *)
|
haftmann@25597
|
104 |
|
haftmann@25597
|
105 |
type inst_params =
|
haftmann@25597
|
106 |
(string * thm) Symtab.table Symtab.table
|
haftmann@25597
|
107 |
(*constant name ~> type constructor ~> (constant name, equation)*)
|
haftmann@25597
|
108 |
* (string * string) Symtab.table; (*constant name ~> (constant name, type constructor)*)
|
haftmann@25597
|
109 |
|
haftmann@25597
|
110 |
fun merge_inst_params ((const_param1, param_const1), (const_param2, param_const2)) =
|
haftmann@25597
|
111 |
(Symtab.join (K (Symtab.merge (K true))) (const_param1, const_param2),
|
haftmann@25597
|
112 |
Symtab.merge (K true) (param_const1, param_const2));
|
haftmann@25597
|
113 |
|
haftmann@25597
|
114 |
|
wenzelm@19511
|
115 |
(* setup data *)
|
wenzelm@19392
|
116 |
|
wenzelm@34259
|
117 |
structure AxClassData = Theory_Data_PP
|
wenzelm@22846
|
118 |
(
|
haftmann@25597
|
119 |
type T = axclasses * (instances * inst_params);
|
haftmann@25597
|
120 |
val empty = ((Symtab.empty, []), (([], Symtab.empty), (Symtab.empty, Symtab.empty)));
|
wenzelm@19574
|
121 |
val extend = I;
|
haftmann@25597
|
122 |
fun merge pp ((axclasses1, (instances1, inst_params1)), (axclasses2, (instances2, inst_params2))) =
|
haftmann@25597
|
123 |
(merge_axclasses pp (axclasses1, axclasses2),
|
haftmann@25597
|
124 |
(merge_instances (instances1, instances2), merge_inst_params (inst_params1, inst_params2)));
|
wenzelm@22846
|
125 |
);
|
wenzelm@6379
|
126 |
|
wenzelm@6379
|
127 |
|
wenzelm@19574
|
128 |
(* maintain axclasses *)
|
wenzelm@19392
|
129 |
|
wenzelm@19574
|
130 |
val get_axclasses = #1 o AxClassData.get;
|
haftmann@25597
|
131 |
val map_axclasses = AxClassData.map o apfst;
|
wenzelm@19574
|
132 |
|
wenzelm@19574
|
133 |
val lookup_def = Symtab.lookup o #1 o get_axclasses;
|
wenzelm@6379
|
134 |
|
wenzelm@24929
|
135 |
fun get_info thy c =
|
wenzelm@19511
|
136 |
(case lookup_def thy c of
|
wenzelm@19392
|
137 |
SOME (AxClass info) => info
|
wenzelm@21919
|
138 |
| NONE => error ("No such axclass: " ^ quote c));
|
wenzelm@6379
|
139 |
|
wenzelm@19123
|
140 |
fun class_intros thy =
|
wenzelm@19392
|
141 |
let
|
wenzelm@19392
|
142 |
fun add_intro c =
|
wenzelm@19511
|
143 |
(case lookup_def thy c of SOME (AxClass {intro, ...}) => cons intro | _ => I);
|
wenzelm@21931
|
144 |
val classes = Sign.all_classes thy;
|
wenzelm@19392
|
145 |
in map (Thm.class_triv thy) classes @ fold add_intro classes [] end;
|
wenzelm@15876
|
146 |
|
wenzelm@15876
|
147 |
|
wenzelm@19460
|
148 |
fun get_params thy pred =
|
wenzelm@19574
|
149 |
let val params = #2 (get_axclasses thy);
|
wenzelm@19460
|
150 |
in fold (fn (x, c) => if pred c then cons x else I) params [] end;
|
wenzelm@19460
|
151 |
|
wenzelm@19460
|
152 |
fun all_params_of thy S = get_params thy (fn c => Sign.subsort thy (S, [c]));
|
wenzelm@19460
|
153 |
|
wenzelm@24964
|
154 |
fun class_of_param thy = AList.lookup (op =) (#2 (get_axclasses thy));
|
wenzelm@19460
|
155 |
|
wenzelm@21919
|
156 |
|
wenzelm@19511
|
157 |
(* maintain instances *)
|
wenzelm@19503
|
158 |
|
wenzelm@30364
|
159 |
fun instance_name (a, c) = Long_Name.base_name c ^ "_" ^ Long_Name.base_name a;
|
haftmann@25486
|
160 |
|
haftmann@25597
|
161 |
val get_instances = #1 o #2 o AxClassData.get;
|
haftmann@25597
|
162 |
val map_instances = AxClassData.map o apsnd o apfst;
|
wenzelm@19528
|
163 |
|
wenzelm@19528
|
164 |
|
wenzelm@19574
|
165 |
fun the_classrel thy (c1, c2) =
|
wenzelm@19574
|
166 |
(case AList.lookup (op =) (#1 (get_instances thy)) (c1, c2) of
|
wenzelm@19574
|
167 |
SOME th => Thm.transfer thy th
|
wenzelm@24920
|
168 |
| NONE => error ("Unproven class relation " ^
|
wenzelm@24920
|
169 |
Syntax.string_of_classrel (ProofContext.init thy) [c1, c2]));
|
wenzelm@19574
|
170 |
|
wenzelm@19574
|
171 |
fun put_classrel arg = map_instances (fn (classrel, arities) =>
|
wenzelm@19574
|
172 |
(insert (eq_fst op =) arg classrel, arities));
|
wenzelm@19503
|
173 |
|
wenzelm@19503
|
174 |
|
wenzelm@19574
|
175 |
fun the_arity thy a (c, Ss) =
|
wenzelm@24929
|
176 |
(case AList.lookup (op =) (Symtab.lookup_list (#2 (get_instances thy)) a) (c, Ss) of
|
wenzelm@33172
|
177 |
SOME (th, _) => Thm.transfer thy th
|
wenzelm@24920
|
178 |
| NONE => error ("Unproven type arity " ^
|
wenzelm@24920
|
179 |
Syntax.string_of_arity (ProofContext.init thy) (a, Ss, [c])));
|
wenzelm@19503
|
180 |
|
wenzelm@33172
|
181 |
fun thynames_of_arity thy (c, a) =
|
wenzelm@33172
|
182 |
Symtab.lookup_list (#2 (get_instances thy)) a
|
wenzelm@33172
|
183 |
|> map_filter (fn ((c', _), (_, name)) => if c = c' then SOME name else NONE)
|
haftmann@27497
|
184 |
|> rev;
|
haftmann@27397
|
185 |
|
wenzelm@33172
|
186 |
fun insert_arity_completions thy (t, ((c, Ss), (th, thy_name))) arities =
|
haftmann@27547
|
187 |
let
|
haftmann@27547
|
188 |
val algebra = Sign.classes_of thy;
|
wenzelm@33172
|
189 |
val super_class_completions =
|
wenzelm@33172
|
190 |
Sign.super_classes thy c
|
haftmann@27547
|
191 |
|> filter_out (fn c1 => exists (fn ((c2, Ss2), _) => c1 = c2
|
wenzelm@33172
|
192 |
andalso Sorts.sorts_le algebra (Ss2, Ss)) (Symtab.lookup_list arities t));
|
wenzelm@27554
|
193 |
val completions = map (fn c1 => (Sorts.weaken algebra
|
haftmann@27547
|
194 |
(fn (th, c2) => fn c3 => th RS the_classrel thy (c2, c3)) (th, c) c1
|
wenzelm@33172
|
195 |
|> Thm.close_derivation, c1)) super_class_completions;
|
wenzelm@33172
|
196 |
val arities' = fold (fn (th1, c1) => Symtab.cons_list (t, ((c1, Ss), (th1, thy_name))))
|
haftmann@27547
|
197 |
completions arities;
|
wenzelm@33172
|
198 |
in (null completions, arities') end;
|
wenzelm@19503
|
199 |
|
haftmann@27547
|
200 |
fun put_arity ((t, Ss, c), th) thy =
|
haftmann@27547
|
201 |
let
|
wenzelm@33172
|
202 |
val arity' = (t, ((c, Ss), (th, Context.theory_name thy)));
|
haftmann@27547
|
203 |
in
|
haftmann@27547
|
204 |
thy
|
haftmann@27547
|
205 |
|> map_instances (fn (classrel, arities) => (classrel,
|
haftmann@27547
|
206 |
arities
|
haftmann@27547
|
207 |
|> Symtab.insert_list (eq_fst op =) arity'
|
haftmann@27547
|
208 |
|> insert_arity_completions thy arity'
|
haftmann@27547
|
209 |
|> snd))
|
haftmann@27547
|
210 |
end;
|
wenzelm@19503
|
211 |
|
wenzelm@31944
|
212 |
fun complete_arities thy =
|
haftmann@27547
|
213 |
let
|
haftmann@27547
|
214 |
val arities = snd (get_instances thy);
|
wenzelm@33172
|
215 |
val (finished, arities') = arities
|
wenzelm@33172
|
216 |
|> fold_map (insert_arity_completions thy) (Symtab.dest_list arities);
|
wenzelm@33172
|
217 |
in
|
wenzelm@33172
|
218 |
if forall I finished then NONE
|
haftmann@27547
|
219 |
else SOME (thy |> map_instances (fn (classrel, _) => (classrel, arities')))
|
haftmann@27547
|
220 |
end;
|
haftmann@27547
|
221 |
|
haftmann@27547
|
222 |
val _ = Context.>> (Context.map_theory (Theory.at_begin complete_arities));
|
haftmann@27397
|
223 |
|
haftmann@27397
|
224 |
|
haftmann@25597
|
225 |
(* maintain instance parameters *)
|
haftmann@25597
|
226 |
|
haftmann@25597
|
227 |
val get_inst_params = #2 o #2 o AxClassData.get;
|
haftmann@25597
|
228 |
val map_inst_params = AxClassData.map o apsnd o apsnd;
|
haftmann@25597
|
229 |
|
haftmann@25597
|
230 |
fun get_inst_param thy (c, tyco) =
|
haftmann@30243
|
231 |
case Symtab.lookup ((the_default Symtab.empty o Symtab.lookup (fst (get_inst_params thy))) c) tyco
|
haftmann@30243
|
232 |
of SOME c' => c'
|
haftmann@30243
|
233 |
| NONE => error ("No instance parameter for constant " ^ quote c
|
haftmann@30243
|
234 |
^ " on type constructor " ^ quote tyco);
|
haftmann@25597
|
235 |
|
haftmann@25597
|
236 |
fun add_inst_param (c, tyco) inst = (map_inst_params o apfst
|
haftmann@25597
|
237 |
o Symtab.map_default (c, Symtab.empty)) (Symtab.update_new (tyco, inst))
|
haftmann@25597
|
238 |
#> (map_inst_params o apsnd) (Symtab.update_new (fst inst, (c, tyco)));
|
haftmann@25597
|
239 |
|
haftmann@25597
|
240 |
val inst_of_param = Symtab.lookup o snd o get_inst_params;
|
haftmann@25597
|
241 |
val param_of_inst = fst oo get_inst_param;
|
haftmann@25597
|
242 |
|
haftmann@25597
|
243 |
fun inst_thms thy = (Symtab.fold (Symtab.fold (cons o snd o snd) o snd) o fst)
|
haftmann@25597
|
244 |
(get_inst_params thy) [];
|
haftmann@25597
|
245 |
|
haftmann@31249
|
246 |
fun get_inst_tyco consts = try (fst o dest_Type o the_single o Consts.typargs consts);
|
haftmann@25597
|
247 |
|
haftmann@25597
|
248 |
fun unoverload thy = MetaSimplifier.simplify true (inst_thms thy);
|
haftmann@25597
|
249 |
fun overload thy = MetaSimplifier.simplify true (map Thm.symmetric (inst_thms thy));
|
haftmann@25597
|
250 |
|
haftmann@25597
|
251 |
fun unoverload_conv thy = MetaSimplifier.rewrite true (inst_thms thy);
|
haftmann@25597
|
252 |
fun overload_conv thy = MetaSimplifier.rewrite true (map Thm.symmetric (inst_thms thy));
|
haftmann@25597
|
253 |
|
haftmann@31249
|
254 |
fun lookup_inst_param consts params (c, T) = case get_inst_tyco consts (c, T)
|
haftmann@31249
|
255 |
of SOME tyco => AList.lookup (op =) params (c, tyco)
|
haftmann@31249
|
256 |
| NONE => NONE;
|
haftmann@31249
|
257 |
|
haftmann@25597
|
258 |
fun unoverload_const thy (c_ty as (c, _)) =
|
haftmann@33969
|
259 |
if is_some (class_of_param thy c)
|
haftmann@33969
|
260 |
then case get_inst_tyco (Sign.consts_of thy) c_ty
|
haftmann@33969
|
261 |
of SOME tyco => try (param_of_inst thy) (c, tyco) |> the_default c
|
haftmann@33969
|
262 |
| NONE => c
|
haftmann@33969
|
263 |
else c;
|
haftmann@25597
|
264 |
|
wenzelm@404
|
265 |
|
wenzelm@19511
|
266 |
(** instances **)
|
wenzelm@19418
|
267 |
|
wenzelm@19418
|
268 |
(* class relations *)
|
wenzelm@19418
|
269 |
|
wenzelm@19405
|
270 |
fun cert_classrel thy raw_rel =
|
wenzelm@15876
|
271 |
let
|
wenzelm@26939
|
272 |
val string_of_sort = Syntax.string_of_sort_global thy;
|
wenzelm@19405
|
273 |
val (c1, c2) = pairself (Sign.certify_class thy) raw_rel;
|
wenzelm@24271
|
274 |
val _ = Sign.primitive_classrel (c1, c2) (Theory.copy thy);
|
wenzelm@19405
|
275 |
val _ =
|
wenzelm@19460
|
276 |
(case subtract (op =) (all_params_of thy [c1]) (all_params_of thy [c2]) of
|
wenzelm@19405
|
277 |
[] => ()
|
wenzelm@26939
|
278 |
| xs => raise TYPE ("Class " ^ string_of_sort [c1] ^ " lacks parameter(s) " ^
|
wenzelm@26939
|
279 |
commas_quote xs ^ " of " ^ string_of_sort [c2], [], []));
|
wenzelm@19405
|
280 |
in (c1, c2) end;
|
wenzelm@19405
|
281 |
|
wenzelm@19405
|
282 |
fun read_classrel thy raw_rel =
|
wenzelm@35669
|
283 |
cert_classrel thy (pairself (ProofContext.read_class (ProofContext.init thy)) raw_rel)
|
wenzelm@19405
|
284 |
handle TYPE (msg, _, _) => error msg;
|
wenzelm@19405
|
285 |
|
wenzelm@19405
|
286 |
|
haftmann@25597
|
287 |
(* declaration and definition of instances of overloaded constants *)
|
haftmann@25597
|
288 |
|
wenzelm@35201
|
289 |
fun inst_tyco_of thy (c, T) =
|
wenzelm@35201
|
290 |
(case get_inst_tyco (Sign.consts_of thy) (c, T) of
|
wenzelm@35201
|
291 |
SOME tyco => tyco
|
wenzelm@35201
|
292 |
| NONE => error ("Illegal type for instantiation of class parameter: " ^
|
wenzelm@35201
|
293 |
quote (c ^ " :: " ^ Syntax.string_of_typ_global thy T)));
|
haftmann@31249
|
294 |
|
haftmann@25597
|
295 |
fun declare_overloaded (c, T) thy =
|
haftmann@25597
|
296 |
let
|
wenzelm@35201
|
297 |
val class =
|
wenzelm@35201
|
298 |
(case class_of_param thy c of
|
wenzelm@35201
|
299 |
SOME class => class
|
wenzelm@35201
|
300 |
| NONE => error ("Not a class parameter: " ^ quote c));
|
haftmann@31249
|
301 |
val tyco = inst_tyco_of thy (c, T);
|
haftmann@25597
|
302 |
val name_inst = instance_name (tyco, class) ^ "_inst";
|
wenzelm@30364
|
303 |
val c' = Long_Name.base_name c ^ "_" ^ Long_Name.base_name tyco;
|
haftmann@25597
|
304 |
val T' = Type.strip_sorts T;
|
haftmann@25597
|
305 |
in
|
haftmann@25597
|
306 |
thy
|
wenzelm@35201
|
307 |
|> Sign.qualified_path true (Binding.name name_inst)
|
wenzelm@33173
|
308 |
|> Sign.declare_const ((Binding.name c', T'), NoSyn)
|
wenzelm@30344
|
309 |
|-> (fn const' as Const (c'', _) =>
|
wenzelm@30344
|
310 |
Thm.add_def false true
|
wenzelm@30344
|
311 |
(Binding.name (Thm.def_name c'), Logic.mk_equals (Const (c, T'), const'))
|
wenzelm@35845
|
312 |
#>> Thm.varifyT_global
|
wenzelm@30344
|
313 |
#-> (fn thm => add_inst_param (c, tyco) (c'', thm)
|
wenzelm@33315
|
314 |
#> PureThy.add_thm ((Binding.conceal (Binding.name c'), thm), [])
|
wenzelm@30344
|
315 |
#> snd
|
wenzelm@30344
|
316 |
#> pair (Const (c, T))))
|
wenzelm@35201
|
317 |
||> Sign.restore_naming thy
|
haftmann@25597
|
318 |
end;
|
haftmann@25597
|
319 |
|
haftmann@30519
|
320 |
fun define_overloaded b (c, t) thy =
|
haftmann@25597
|
321 |
let
|
haftmann@25597
|
322 |
val T = Term.fastype_of t;
|
haftmann@31249
|
323 |
val tyco = inst_tyco_of thy (c, T);
|
haftmann@25597
|
324 |
val (c', eq) = get_inst_param thy (c, tyco);
|
haftmann@25597
|
325 |
val prop = Logic.mk_equals (Const (c', T), t);
|
haftmann@30519
|
326 |
val b' = Thm.def_binding_optional
|
haftmann@30519
|
327 |
(Binding.name (Long_Name.base_name c ^ "_" ^ Long_Name.base_name tyco)) b;
|
haftmann@25597
|
328 |
in
|
haftmann@25597
|
329 |
thy
|
haftmann@30519
|
330 |
|> Thm.add_def false false (b', prop)
|
haftmann@25597
|
331 |
|>> (fn thm => Drule.transitive_thm OF [eq, thm])
|
haftmann@25597
|
332 |
end;
|
haftmann@25597
|
333 |
|
haftmann@25597
|
334 |
|
haftmann@30951
|
335 |
(* primitive rules *)
|
haftmann@30951
|
336 |
|
wenzelm@31948
|
337 |
fun add_classrel raw_th thy =
|
haftmann@30951
|
338 |
let
|
wenzelm@31948
|
339 |
val th = Thm.strip_shyps (Thm.transfer thy raw_th);
|
wenzelm@31948
|
340 |
val prop = Thm.plain_prop_of th;
|
haftmann@30951
|
341 |
fun err () = raise THM ("add_classrel: malformed class relation", 0, [th]);
|
haftmann@30951
|
342 |
val rel = Logic.dest_classrel prop handle TERM _ => err ();
|
haftmann@30951
|
343 |
val (c1, c2) = cert_classrel thy rel handle TYPE _ => err ();
|
haftmann@30951
|
344 |
in
|
haftmann@30951
|
345 |
thy
|
haftmann@30951
|
346 |
|> Sign.primitive_classrel (c1, c2)
|
haftmann@30951
|
347 |
|> put_classrel ((c1, c2), Thm.close_derivation (Drule.unconstrainTs th))
|
haftmann@30951
|
348 |
|> perhaps complete_arities
|
haftmann@30951
|
349 |
end;
|
haftmann@30951
|
350 |
|
wenzelm@31948
|
351 |
fun add_arity raw_th thy =
|
haftmann@30951
|
352 |
let
|
wenzelm@31948
|
353 |
val th = Thm.strip_shyps (Thm.transfer thy raw_th);
|
wenzelm@31948
|
354 |
val prop = Thm.plain_prop_of th;
|
haftmann@30951
|
355 |
fun err () = raise THM ("add_arity: malformed type arity", 0, [th]);
|
haftmann@30951
|
356 |
val (t, Ss, c) = Logic.dest_arity prop handle TERM _ => err ();
|
haftmann@30951
|
357 |
val T = Type (t, map TFree (Name.names Name.context Name.aT Ss));
|
haftmann@30951
|
358 |
val missing_params = Sign.complete_sort thy [c]
|
haftmann@30951
|
359 |
|> maps (these o Option.map #params o try (get_info thy))
|
haftmann@30951
|
360 |
|> filter_out (fn (const, _) => can (get_inst_param thy) (const, t))
|
haftmann@30951
|
361 |
|> (map o apsnd o map_atyps) (K T);
|
haftmann@30951
|
362 |
val _ = map (Sign.certify_sort thy) Ss = Ss orelse err ();
|
haftmann@30951
|
363 |
in
|
haftmann@30951
|
364 |
thy
|
haftmann@30951
|
365 |
|> fold (snd oo declare_overloaded) missing_params
|
haftmann@30951
|
366 |
|> Sign.primitive_arity (t, Ss, [c])
|
haftmann@33065
|
367 |
|> put_arity ((t, Ss, c), Thm.close_derivation (Drule.unconstrainTs th))
|
haftmann@30951
|
368 |
end;
|
haftmann@30951
|
369 |
|
haftmann@30951
|
370 |
|
haftmann@30951
|
371 |
(* tactical proofs *)
|
haftmann@30951
|
372 |
|
haftmann@30951
|
373 |
fun prove_classrel raw_rel tac thy =
|
haftmann@30951
|
374 |
let
|
haftmann@30951
|
375 |
val ctxt = ProofContext.init thy;
|
haftmann@30951
|
376 |
val (c1, c2) = cert_classrel thy raw_rel;
|
haftmann@30951
|
377 |
val th = Goal.prove ctxt [] [] (Logic.mk_classrel (c1, c2)) (K tac) handle ERROR msg =>
|
haftmann@30951
|
378 |
cat_error msg ("The error(s) above occurred while trying to prove class relation " ^
|
haftmann@30951
|
379 |
quote (Syntax.string_of_classrel ctxt [c1, c2]));
|
haftmann@30951
|
380 |
in
|
haftmann@30951
|
381 |
thy
|
haftmann@30951
|
382 |
|> PureThy.add_thms [((Binding.name
|
haftmann@30951
|
383 |
(prefix classrel_prefix (Logic.name_classrel (c1, c2))), th), [])]
|
haftmann@30951
|
384 |
|-> (fn [th'] => add_classrel th')
|
haftmann@30951
|
385 |
end;
|
haftmann@30951
|
386 |
|
haftmann@30951
|
387 |
fun prove_arity raw_arity tac thy =
|
haftmann@30951
|
388 |
let
|
haftmann@30951
|
389 |
val ctxt = ProofContext.init thy;
|
wenzelm@35669
|
390 |
val arity = ProofContext.cert_arity ctxt raw_arity;
|
haftmann@30951
|
391 |
val names = map (prefix arity_prefix) (Logic.name_arities arity);
|
haftmann@30951
|
392 |
val props = Logic.mk_arities arity;
|
haftmann@30951
|
393 |
val ths = Goal.prove_multi ctxt [] [] props
|
haftmann@30951
|
394 |
(fn _ => Goal.precise_conjunction_tac (length props) 1 THEN tac) handle ERROR msg =>
|
haftmann@30951
|
395 |
cat_error msg ("The error(s) above occurred while trying to prove type arity " ^
|
haftmann@30951
|
396 |
quote (Syntax.string_of_arity ctxt arity));
|
haftmann@30951
|
397 |
in
|
haftmann@30951
|
398 |
thy
|
haftmann@30951
|
399 |
|> PureThy.add_thms (map (rpair []) (map Binding.name names ~~ ths))
|
haftmann@30951
|
400 |
|-> fold add_arity
|
haftmann@30951
|
401 |
end;
|
haftmann@30951
|
402 |
|
haftmann@30951
|
403 |
|
wenzelm@19511
|
404 |
|
wenzelm@19511
|
405 |
(** class definitions **)
|
wenzelm@19511
|
406 |
|
wenzelm@23421
|
407 |
fun split_defined n eq =
|
wenzelm@23421
|
408 |
let
|
wenzelm@23421
|
409 |
val intro =
|
wenzelm@23421
|
410 |
(eq RS Drule.equal_elim_rule2)
|
wenzelm@23421
|
411 |
|> Conjunction.curry_balanced n
|
wenzelm@23421
|
412 |
|> n = 0 ? Thm.eq_assumption 1;
|
wenzelm@23421
|
413 |
val dests =
|
wenzelm@23421
|
414 |
if n = 0 then []
|
wenzelm@23421
|
415 |
else
|
wenzelm@23421
|
416 |
(eq RS Drule.equal_elim_rule1)
|
wenzelm@32765
|
417 |
|> Balanced_Tree.dest (fn th =>
|
wenzelm@23421
|
418 |
(th RS Conjunction.conjunctionD1, th RS Conjunction.conjunctionD2)) n;
|
wenzelm@23421
|
419 |
in (intro, dests) end;
|
wenzelm@23421
|
420 |
|
wenzelm@24964
|
421 |
fun define_class (bclass, raw_super) raw_params raw_specs thy =
|
wenzelm@19511
|
422 |
let
|
wenzelm@19511
|
423 |
val ctxt = ProofContext.init thy;
|
wenzelm@24964
|
424 |
val pp = Syntax.pp ctxt;
|
wenzelm@19511
|
425 |
|
wenzelm@19511
|
426 |
|
wenzelm@24964
|
427 |
(* class *)
|
wenzelm@19511
|
428 |
|
wenzelm@30344
|
429 |
val bconst = Binding.map_name Logic.const_of_class bclass;
|
wenzelm@30344
|
430 |
val class = Sign.full_name thy bclass;
|
wenzelm@24731
|
431 |
val super = Sign.minimize_sort thy (Sign.certify_sort thy raw_super);
|
wenzelm@19511
|
432 |
|
wenzelm@24964
|
433 |
fun check_constraint (a, S) =
|
wenzelm@24964
|
434 |
if Sign.subsort thy (super, S) then ()
|
wenzelm@24964
|
435 |
else error ("Sort constraint of type variable " ^
|
wenzelm@32966
|
436 |
setmp_CRITICAL show_sorts true (Pretty.string_of_typ pp) (TFree (a, S)) ^
|
wenzelm@24964
|
437 |
" needs to be weaker than " ^ Pretty.string_of_sort pp super);
|
wenzelm@24964
|
438 |
|
wenzelm@24964
|
439 |
|
wenzelm@24964
|
440 |
(* params *)
|
wenzelm@24964
|
441 |
|
wenzelm@24964
|
442 |
val params = raw_params |> map (fn p =>
|
wenzelm@24964
|
443 |
let
|
wenzelm@24964
|
444 |
val T = Sign.the_const_type thy p;
|
wenzelm@24964
|
445 |
val _ =
|
wenzelm@24964
|
446 |
(case Term.add_tvarsT T [] of
|
wenzelm@24964
|
447 |
[((a, _), S)] => check_constraint (a, S)
|
wenzelm@24964
|
448 |
| _ => error ("Exactly one type variable expected in class parameter " ^ quote p));
|
wenzelm@24964
|
449 |
val T' = Term.map_type_tvar (fn _ => TFree (Name.aT, [class])) T;
|
wenzelm@24964
|
450 |
in (p, T') end);
|
wenzelm@24964
|
451 |
|
wenzelm@24964
|
452 |
|
wenzelm@24964
|
453 |
(* axioms *)
|
wenzelm@24964
|
454 |
|
wenzelm@19511
|
455 |
fun prep_axiom t =
|
wenzelm@19511
|
456 |
(case Term.add_tfrees t [] of
|
wenzelm@24964
|
457 |
[(a, S)] => check_constraint (a, S)
|
wenzelm@24964
|
458 |
| [] => ()
|
wenzelm@24964
|
459 |
| _ => error ("Multiple type variables in class axiom:\n" ^ Pretty.string_of_term pp t);
|
wenzelm@24964
|
460 |
t
|
wenzelm@24964
|
461 |
|> Term.map_types (Term.map_atyps (fn TFree _ => Term.aT [] | U => U))
|
wenzelm@24964
|
462 |
|> Logic.close_form);
|
wenzelm@19511
|
463 |
|
wenzelm@24681
|
464 |
val axiomss = map (map (prep_axiom o Sign.cert_prop thy) o snd) raw_specs;
|
haftmann@22745
|
465 |
val name_atts = map fst raw_specs;
|
wenzelm@19511
|
466 |
|
wenzelm@19511
|
467 |
|
wenzelm@19511
|
468 |
(* definition *)
|
wenzelm@19511
|
469 |
|
wenzelm@35854
|
470 |
val conjs = Logic.mk_of_sort (Term.aT [], super) @ flat axiomss;
|
wenzelm@19511
|
471 |
val class_eq =
|
wenzelm@31943
|
472 |
Logic.mk_equals (Logic.mk_of_class (Term.aT [], class), Logic.mk_conjunction_balanced conjs);
|
wenzelm@19511
|
473 |
|
wenzelm@19511
|
474 |
val ([def], def_thy) =
|
wenzelm@19511
|
475 |
thy
|
wenzelm@19511
|
476 |
|> Sign.primitive_class (bclass, super)
|
wenzelm@35238
|
477 |
|> PureThy.add_defs false [((Thm.def_binding bconst, class_eq), [])];
|
wenzelm@19511
|
478 |
val (raw_intro, (raw_classrel, raw_axioms)) =
|
wenzelm@23421
|
479 |
split_defined (length conjs) def ||> chop (length super);
|
wenzelm@19392
|
480 |
|
wenzelm@19418
|
481 |
|
wenzelm@19511
|
482 |
(* facts *)
|
wenzelm@19511
|
483 |
|
wenzelm@19511
|
484 |
val class_triv = Thm.class_triv def_thy class;
|
wenzelm@19511
|
485 |
val ([(_, [intro]), (_, classrel), (_, axioms)], facts_thy) =
|
wenzelm@19511
|
486 |
def_thy
|
wenzelm@35201
|
487 |
|> Sign.qualified_path true bconst
|
haftmann@27691
|
488 |
|> PureThy.note_thmss ""
|
wenzelm@35021
|
489 |
[((Binding.name introN, []), [([Drule.export_without_context raw_intro], [])]),
|
wenzelm@35021
|
490 |
((Binding.name superN, []), [(map Drule.export_without_context raw_classrel, [])]),
|
haftmann@28965
|
491 |
((Binding.name axiomsN, []),
|
wenzelm@35021
|
492 |
[(map (fn th => Drule.export_without_context (class_triv RS th)) raw_axioms, [])])]
|
haftmann@27691
|
493 |
||> Sign.restore_naming def_thy;
|
wenzelm@19511
|
494 |
|
wenzelm@24847
|
495 |
|
wenzelm@19511
|
496 |
(* result *)
|
wenzelm@19511
|
497 |
|
wenzelm@24964
|
498 |
val axclass = make_axclass ((def, intro, axioms), params);
|
wenzelm@19511
|
499 |
val result_thy =
|
wenzelm@19511
|
500 |
facts_thy
|
wenzelm@19574
|
501 |
|> fold put_classrel (map (pair class) super ~~ classrel)
|
wenzelm@35201
|
502 |
|> Sign.qualified_path false bconst
|
haftmann@27691
|
503 |
|> PureThy.note_thmss "" (name_atts ~~ map Thm.simple_fact (unflat axiomss axioms)) |> snd
|
wenzelm@19511
|
504 |
|> Sign.restore_naming facts_thy
|
wenzelm@19574
|
505 |
|> map_axclasses (fn (axclasses, parameters) =>
|
wenzelm@21919
|
506 |
(Symtab.update (class, axclass) axclasses,
|
wenzelm@24964
|
507 |
fold (fn (x, _) => add_param pp (x, class)) params parameters));
|
wenzelm@19511
|
508 |
|
wenzelm@19511
|
509 |
in (class, result_thy) end;
|
wenzelm@19511
|
510 |
|
wenzelm@19511
|
511 |
|
wenzelm@19531
|
512 |
|
wenzelm@19511
|
513 |
(** axiomatizations **)
|
wenzelm@19511
|
514 |
|
wenzelm@19511
|
515 |
local
|
wenzelm@19511
|
516 |
|
wenzelm@20628
|
517 |
fun axiomatize prep mk name add raw_args thy =
|
wenzelm@20628
|
518 |
let
|
wenzelm@20628
|
519 |
val args = prep thy raw_args;
|
wenzelm@20628
|
520 |
val specs = mk args;
|
wenzelm@20628
|
521 |
val names = name args;
|
haftmann@29579
|
522 |
in
|
haftmann@29579
|
523 |
thy
|
haftmann@29579
|
524 |
|> PureThy.add_axioms (map (rpair []) (map Binding.name names ~~ specs))
|
haftmann@29579
|
525 |
|-> fold add
|
haftmann@29579
|
526 |
end;
|
wenzelm@19511
|
527 |
|
wenzelm@19511
|
528 |
fun ax_classrel prep =
|
wenzelm@20628
|
529 |
axiomatize (map o prep) (map Logic.mk_classrel)
|
wenzelm@20628
|
530 |
(map (prefix classrel_prefix o Logic.name_classrel)) add_classrel;
|
wenzelm@19511
|
531 |
|
wenzelm@19511
|
532 |
fun ax_arity prep =
|
wenzelm@35669
|
533 |
axiomatize (prep o ProofContext.init) Logic.mk_arities
|
wenzelm@20628
|
534 |
(map (prefix arity_prefix) o Logic.name_arities) add_arity;
|
wenzelm@19511
|
535 |
|
wenzelm@19706
|
536 |
fun class_const c =
|
wenzelm@19706
|
537 |
(Logic.const_of_class c, Term.itselfT (Term.aT []) --> propT);
|
wenzelm@19706
|
538 |
|
wenzelm@19511
|
539 |
fun ax_class prep_class prep_classrel (bclass, raw_super) thy =
|
wenzelm@19511
|
540 |
let
|
wenzelm@30344
|
541 |
val class = Sign.full_name thy bclass;
|
wenzelm@24731
|
542 |
val super = map (prep_class thy) raw_super |> Sign.minimize_sort thy;
|
wenzelm@19511
|
543 |
in
|
wenzelm@19511
|
544 |
thy
|
wenzelm@19511
|
545 |
|> Sign.primitive_class (bclass, super)
|
wenzelm@19511
|
546 |
|> ax_classrel prep_classrel (map (fn c => (class, c)) super)
|
wenzelm@19706
|
547 |
|> Theory.add_deps "" (class_const class) (map class_const super)
|
wenzelm@19511
|
548 |
end;
|
wenzelm@19511
|
549 |
|
wenzelm@19511
|
550 |
in
|
wenzelm@19511
|
551 |
|
wenzelm@24929
|
552 |
val axiomatize_class = ax_class Sign.certify_class cert_classrel;
|
wenzelm@35669
|
553 |
val axiomatize_class_cmd = ax_class (ProofContext.read_class o ProofContext.init) read_classrel;
|
wenzelm@24929
|
554 |
val axiomatize_classrel = ax_classrel cert_classrel;
|
wenzelm@24929
|
555 |
val axiomatize_classrel_cmd = ax_classrel read_classrel;
|
wenzelm@35669
|
556 |
val axiomatize_arity = ax_arity ProofContext.cert_arity;
|
wenzelm@35669
|
557 |
val axiomatize_arity_cmd = ax_arity ProofContext.read_arity;
|
wenzelm@19511
|
558 |
|
wenzelm@19511
|
559 |
end;
|
wenzelm@19511
|
560 |
|
wenzelm@19511
|
561 |
|
wenzelm@19511
|
562 |
|
wenzelm@19511
|
563 |
(** explicit derivations -- cached **)
|
wenzelm@19511
|
564 |
|
wenzelm@19574
|
565 |
datatype cache = Types of (class * thm) list Typtab.table;
|
wenzelm@19574
|
566 |
|
wenzelm@19511
|
567 |
local
|
wenzelm@19503
|
568 |
|
wenzelm@19574
|
569 |
fun lookup_type (Types cache) = AList.lookup (op =) o Typtab.lookup_list cache;
|
wenzelm@19574
|
570 |
fun insert_type T der (Types cache) = Types (Typtab.insert_list (eq_fst op =) (T, der) cache);
|
wenzelm@19503
|
571 |
|
wenzelm@19522
|
572 |
fun derive_type _ (_, []) = []
|
wenzelm@19522
|
573 |
| derive_type thy (typ, sort) =
|
wenzelm@19522
|
574 |
let
|
wenzelm@31944
|
575 |
val certT = Thm.ctyp_of thy;
|
wenzelm@19528
|
576 |
val vars = Term.fold_atyps
|
wenzelm@19522
|
577 |
(fn T as TFree (_, S) => insert (eq_fst op =) (T, S)
|
wenzelm@19522
|
578 |
| T as TVar (_, S) => insert (eq_fst op =) (T, S)
|
wenzelm@19528
|
579 |
| _ => I) typ [];
|
wenzelm@19574
|
580 |
val hyps = vars
|
wenzelm@31944
|
581 |
|> map (fn (T, S) => (T, Thm.of_sort (certT T, S) ~~ S));
|
wenzelm@26939
|
582 |
val ths = (typ, sort)
|
wenzelm@32791
|
583 |
|> Sorts.of_sort_derivation (Sign.classes_of thy)
|
wenzelm@22570
|
584 |
{class_relation =
|
wenzelm@19574
|
585 |
fn (th, c1) => fn c2 => th RS the_classrel thy (c1, c2),
|
wenzelm@22570
|
586 |
type_constructor =
|
wenzelm@19574
|
587 |
fn a => fn dom => fn c =>
|
wenzelm@19574
|
588 |
let val Ss = map (map snd) dom and ths = maps (map fst) dom
|
wenzelm@19574
|
589 |
in ths MRS the_arity thy a (c, Ss) end,
|
wenzelm@22570
|
590 |
type_variable =
|
wenzelm@19574
|
591 |
the_default [] o AList.lookup (op =) hyps};
|
wenzelm@19574
|
592 |
in ths end;
|
wenzelm@19503
|
593 |
|
wenzelm@19511
|
594 |
in
|
wenzelm@19511
|
595 |
|
wenzelm@19574
|
596 |
fun of_sort thy (typ, sort) cache =
|
wenzelm@19574
|
597 |
let
|
wenzelm@19574
|
598 |
val sort' = filter (is_none o lookup_type cache typ) sort;
|
wenzelm@19574
|
599 |
val ths' = derive_type thy (typ, sort')
|
wenzelm@19574
|
600 |
handle ERROR msg => cat_error msg ("The error(s) above occurred for sort derivation: " ^
|
wenzelm@26939
|
601 |
Syntax.string_of_typ_global thy typ ^ " :: " ^ Syntax.string_of_sort_global thy sort');
|
wenzelm@19574
|
602 |
val cache' = cache |> fold (insert_type typ) (sort' ~~ ths');
|
wenzelm@19574
|
603 |
val ths =
|
wenzelm@19574
|
604 |
sort |> map (fn c =>
|
wenzelm@32197
|
605 |
Goal.finish
|
wenzelm@32197
|
606 |
(Syntax.init_pretty_global thy)
|
wenzelm@32197
|
607 |
(the (lookup_type cache' typ c) RS
|
wenzelm@32197
|
608 |
Goal.init (Thm.cterm_of thy (Logic.mk_of_class (typ, c))))
|
wenzelm@20260
|
609 |
|> Thm.adjust_maxidx_thm ~1);
|
wenzelm@19574
|
610 |
in (ths, cache') end;
|
wenzelm@19503
|
611 |
|
wenzelm@19511
|
612 |
end;
|
wenzelm@19418
|
613 |
|
wenzelm@24929
|
614 |
val cache = Types Typtab.empty;
|
wenzelm@24929
|
615 |
|
wenzelm@15876
|
616 |
end;
|