replaced PureThy.add_axioms by more basic Drule.add_axiom, which is old-style nonetheless;
1 (* Title: Pure/axclass.ML
2 Author: Markus Wenzel, TU Muenchen
4 Type classes defined as predicates, associated with a record of
10 val define_class: binding * class list -> string list ->
11 (Thm.binding * term list) list -> theory -> class * theory
12 val add_classrel: thm -> theory -> theory
13 val add_arity: thm -> theory -> theory
14 val prove_classrel: class * class -> tactic -> theory -> theory
15 val prove_arity: string * sort list * sort -> tactic -> theory -> theory
16 val get_info: theory -> class ->
17 {def: thm, intro: thm, axioms: thm list, params: (string * typ) list}
18 val class_intros: theory -> thm list
19 val class_of_param: theory -> string -> class option
20 val cert_classrel: theory -> class * class -> class * class
21 val read_classrel: theory -> xstring * xstring -> class * class
22 val axiomatize_class: binding * class list -> theory -> theory
23 val axiomatize_class_cmd: binding * xstring list -> theory -> theory
24 val axiomatize_classrel: (class * class) list -> theory -> theory
25 val axiomatize_classrel_cmd: (xstring * xstring) list -> theory -> theory
26 val axiomatize_arity: arity -> theory -> theory
27 val axiomatize_arity_cmd: xstring * string list * string -> theory -> theory
28 val instance_name: string * class -> string
29 val declare_overloaded: string * typ -> theory -> term * theory
30 val define_overloaded: binding -> string * term -> theory -> thm * theory
31 val unoverload: theory -> thm -> thm
32 val overload: theory -> thm -> thm
33 val unoverload_conv: theory -> conv
34 val overload_conv: theory -> conv
35 val unoverload_const: theory -> string * typ -> string
36 val lookup_inst_param: Consts.T -> ((string * string) * 'a) list -> string * typ -> 'a option
37 val param_of_inst: theory -> string * string -> string
38 val inst_of_param: theory -> string -> (string * string) option
39 val thynames_of_arity: theory -> class * string -> string list
41 val of_sort: theory -> typ * sort -> cache -> thm list * cache (*exception Sorts.CLASS_ERROR*)
47 structure AxClass: AX_CLASS =
52 (* class parameters (canonical order) *)
54 type param = string * class;
56 fun add_param pp ((x, c): param) params =
57 (case AList.lookup (op =) params x of
58 NONE => (x, c) :: params
59 | SOME c' => error ("Duplicate class parameter " ^ quote x ^
60 " for " ^ Pretty.string_of_sort pp [c] ^
61 (if c = c' then "" else " and " ^ Pretty.string_of_sort pp [c'])));
63 fun merge_params _ ([], qs) = qs
64 | merge_params pp (ps, qs) =
65 fold_rev (fn q => if member (op =) ps q then I else add_param pp q) qs ps;
72 val axiomsN = "axioms";
74 datatype axclass = AxClass of
78 params: (string * typ) list};
80 type axclasses = axclass Symtab.table * param list;
82 fun make_axclass ((def, intro, axioms), params) = AxClass
83 {def = def, intro = intro, axioms = axioms, params = params};
85 fun merge_axclasses pp ((tab1, params1), (tab2, params2)) : axclasses =
86 (Symtab.merge (K true) (tab1, tab2), merge_params pp (params1, params2));
91 val classrel_prefix = "classrel_";
92 val arity_prefix = "arity_";
95 ((class * class) * thm) list * (*classrel theorems*)
96 ((class * sort list) * (thm * string)) list Symtab.table; (*arity theorems with theory name*)
98 fun merge_instances ((classrel1, arities1): instances, (classrel2, arities2)) =
99 (merge (eq_fst op =) (classrel1, classrel2),
100 Symtab.join (K (merge (eq_fst op =))) (arities1, arities2));
103 (* instance parameters *)
106 (string * thm) Symtab.table Symtab.table
107 (*constant name ~> type constructor ~> (constant name, equation)*)
108 * (string * string) Symtab.table; (*constant name ~> (constant name, type constructor)*)
110 fun merge_inst_params ((const_param1, param_const1), (const_param2, param_const2)) =
111 (Symtab.join (K (Symtab.merge (K true))) (const_param1, const_param2),
112 Symtab.merge (K true) (param_const1, param_const2));
117 structure AxClassData = Theory_Data_PP
119 type T = axclasses * (instances * inst_params);
120 val empty = ((Symtab.empty, []), (([], Symtab.empty), (Symtab.empty, Symtab.empty)));
122 fun merge pp ((axclasses1, (instances1, inst_params1)), (axclasses2, (instances2, inst_params2))) =
123 (merge_axclasses pp (axclasses1, axclasses2),
124 (merge_instances (instances1, instances2), merge_inst_params (inst_params1, inst_params2)));
128 (* maintain axclasses *)
130 val get_axclasses = #1 o AxClassData.get;
131 val map_axclasses = AxClassData.map o apfst;
133 val lookup_def = Symtab.lookup o #1 o get_axclasses;
136 (case lookup_def thy c of
137 SOME (AxClass info) => info
138 | NONE => error ("No such axclass: " ^ quote c));
140 fun class_intros thy =
143 (case lookup_def thy c of SOME (AxClass {intro, ...}) => cons intro | _ => I);
144 val classes = Sign.all_classes thy;
145 in map (Thm.class_triv thy) classes @ fold add_intro classes [] end;
148 fun get_params thy pred =
149 let val params = #2 (get_axclasses thy);
150 in fold (fn (x, c) => if pred c then cons x else I) params [] end;
152 fun all_params_of thy S = get_params thy (fn c => Sign.subsort thy (S, [c]));
154 fun class_of_param thy = AList.lookup (op =) (#2 (get_axclasses thy));
157 (* maintain instances *)
159 fun instance_name (a, c) = Long_Name.base_name c ^ "_" ^ Long_Name.base_name a;
161 val get_instances = #1 o #2 o AxClassData.get;
162 val map_instances = AxClassData.map o apsnd o apfst;
165 fun the_classrel thy (c1, c2) =
166 (case AList.lookup (op =) (#1 (get_instances thy)) (c1, c2) of
167 SOME th => Thm.transfer thy th
168 | NONE => error ("Unproven class relation " ^
169 Syntax.string_of_classrel (ProofContext.init thy) [c1, c2]));
171 fun put_classrel arg = map_instances (fn (classrel, arities) =>
172 (insert (eq_fst op =) arg classrel, arities));
175 fun the_arity thy a (c, Ss) =
176 (case AList.lookup (op =) (Symtab.lookup_list (#2 (get_instances thy)) a) (c, Ss) of
177 SOME (th, _) => Thm.transfer thy th
178 | NONE => error ("Unproven type arity " ^
179 Syntax.string_of_arity (ProofContext.init thy) (a, Ss, [c])));
181 fun thynames_of_arity thy (c, a) =
182 Symtab.lookup_list (#2 (get_instances thy)) a
183 |> map_filter (fn ((c', _), (_, name)) => if c = c' then SOME name else NONE)
186 fun insert_arity_completions thy (t, ((c, Ss), (th, thy_name))) arities =
188 val algebra = Sign.classes_of thy;
189 val super_class_completions =
190 Sign.super_classes thy c
191 |> filter_out (fn c1 => exists (fn ((c2, Ss2), _) => c1 = c2
192 andalso Sorts.sorts_le algebra (Ss2, Ss)) (Symtab.lookup_list arities t));
193 val completions = map (fn c1 => (Sorts.weaken algebra
194 (fn (th, c2) => fn c3 => th RS the_classrel thy (c2, c3)) (th, c) c1
195 |> Thm.close_derivation, c1)) super_class_completions;
196 val arities' = fold (fn (th1, c1) => Symtab.cons_list (t, ((c1, Ss), (th1, thy_name))))
198 in (null completions, arities') end;
200 fun put_arity ((t, Ss, c), th) thy =
202 val arity' = (t, ((c, Ss), (th, Context.theory_name thy)));
205 |> map_instances (fn (classrel, arities) => (classrel,
207 |> Symtab.insert_list (eq_fst op =) arity'
208 |> insert_arity_completions thy arity'
212 fun complete_arities thy =
214 val arities = snd (get_instances thy);
215 val (finished, arities') = arities
216 |> fold_map (insert_arity_completions thy) (Symtab.dest_list arities);
218 if forall I finished then NONE
219 else SOME (thy |> map_instances (fn (classrel, _) => (classrel, arities')))
222 val _ = Context.>> (Context.map_theory (Theory.at_begin complete_arities));
225 (* maintain instance parameters *)
227 val get_inst_params = #2 o #2 o AxClassData.get;
228 val map_inst_params = AxClassData.map o apsnd o apsnd;
230 fun get_inst_param thy (c, tyco) =
231 case Symtab.lookup ((the_default Symtab.empty o Symtab.lookup (fst (get_inst_params thy))) c) tyco
233 | NONE => error ("No instance parameter for constant " ^ quote c
234 ^ " on type constructor " ^ quote tyco);
236 fun add_inst_param (c, tyco) inst = (map_inst_params o apfst
237 o Symtab.map_default (c, Symtab.empty)) (Symtab.update_new (tyco, inst))
238 #> (map_inst_params o apsnd) (Symtab.update_new (fst inst, (c, tyco)));
240 val inst_of_param = Symtab.lookup o snd o get_inst_params;
241 val param_of_inst = fst oo get_inst_param;
243 fun inst_thms thy = (Symtab.fold (Symtab.fold (cons o snd o snd) o snd) o fst)
244 (get_inst_params thy) [];
246 fun get_inst_tyco consts = try (fst o dest_Type o the_single o Consts.typargs consts);
248 fun unoverload thy = MetaSimplifier.simplify true (inst_thms thy);
249 fun overload thy = MetaSimplifier.simplify true (map Thm.symmetric (inst_thms thy));
251 fun unoverload_conv thy = MetaSimplifier.rewrite true (inst_thms thy);
252 fun overload_conv thy = MetaSimplifier.rewrite true (map Thm.symmetric (inst_thms thy));
254 fun lookup_inst_param consts params (c, T) = case get_inst_tyco consts (c, T)
255 of SOME tyco => AList.lookup (op =) params (c, tyco)
258 fun unoverload_const thy (c_ty as (c, _)) =
259 if is_some (class_of_param thy c)
260 then case get_inst_tyco (Sign.consts_of thy) c_ty
261 of SOME tyco => try (param_of_inst thy) (c, tyco) |> the_default c
268 (* class relations *)
270 fun cert_classrel thy raw_rel =
272 val string_of_sort = Syntax.string_of_sort_global thy;
273 val (c1, c2) = pairself (Sign.certify_class thy) raw_rel;
274 val _ = Sign.primitive_classrel (c1, c2) (Theory.copy thy);
276 (case subtract (op =) (all_params_of thy [c1]) (all_params_of thy [c2]) of
278 | xs => raise TYPE ("Class " ^ string_of_sort [c1] ^ " lacks parameter(s) " ^
279 commas_quote xs ^ " of " ^ string_of_sort [c2], [], []));
282 fun read_classrel thy raw_rel =
283 cert_classrel thy (pairself (ProofContext.read_class (ProofContext.init thy)) raw_rel)
284 handle TYPE (msg, _, _) => error msg;
287 (* declaration and definition of instances of overloaded constants *)
289 fun inst_tyco_of thy (c, T) =
290 (case get_inst_tyco (Sign.consts_of thy) (c, T) of
292 | NONE => error ("Illegal type for instantiation of class parameter: " ^
293 quote (c ^ " :: " ^ Syntax.string_of_typ_global thy T)));
295 fun declare_overloaded (c, T) thy =
298 (case class_of_param thy c of
300 | NONE => error ("Not a class parameter: " ^ quote c));
301 val tyco = inst_tyco_of thy (c, T);
302 val name_inst = instance_name (tyco, class) ^ "_inst";
303 val c' = Long_Name.base_name c ^ "_" ^ Long_Name.base_name tyco;
304 val T' = Type.strip_sorts T;
307 |> Sign.qualified_path true (Binding.name name_inst)
308 |> Sign.declare_const ((Binding.name c', T'), NoSyn)
309 |-> (fn const' as Const (c'', _) =>
310 Thm.add_def false true
311 (Binding.name (Thm.def_name c'), Logic.mk_equals (Const (c, T'), const'))
312 #>> Thm.varifyT_global
313 #-> (fn thm => add_inst_param (c, tyco) (c'', thm)
314 #> PureThy.add_thm ((Binding.conceal (Binding.name c'), thm), [])
316 #> pair (Const (c, T))))
317 ||> Sign.restore_naming thy
320 fun define_overloaded b (c, t) thy =
322 val T = Term.fastype_of t;
323 val tyco = inst_tyco_of thy (c, T);
324 val (c', eq) = get_inst_param thy (c, tyco);
325 val prop = Logic.mk_equals (Const (c', T), t);
326 val b' = Thm.def_binding_optional
327 (Binding.name (Long_Name.base_name c ^ "_" ^ Long_Name.base_name tyco)) b;
330 |> Thm.add_def false false (b', prop)
331 |>> (fn thm => Drule.transitive_thm OF [eq, thm])
335 (* primitive rules *)
337 fun add_classrel raw_th thy =
339 val th = Thm.strip_shyps (Thm.transfer thy raw_th);
340 val prop = Thm.plain_prop_of th;
341 fun err () = raise THM ("add_classrel: malformed class relation", 0, [th]);
342 val rel = Logic.dest_classrel prop handle TERM _ => err ();
343 val (c1, c2) = cert_classrel thy rel handle TYPE _ => err ();
346 |> Sign.primitive_classrel (c1, c2)
347 |> put_classrel ((c1, c2), Thm.close_derivation (Drule.unconstrainTs th))
348 |> perhaps complete_arities
351 fun add_arity raw_th thy =
353 val th = Thm.strip_shyps (Thm.transfer thy raw_th);
354 val prop = Thm.plain_prop_of th;
355 fun err () = raise THM ("add_arity: malformed type arity", 0, [th]);
356 val (t, Ss, c) = Logic.dest_arity prop handle TERM _ => err ();
357 val T = Type (t, map TFree (Name.names Name.context Name.aT Ss));
358 val missing_params = Sign.complete_sort thy [c]
359 |> maps (these o Option.map #params o try (get_info thy))
360 |> filter_out (fn (const, _) => can (get_inst_param thy) (const, t))
361 |> (map o apsnd o map_atyps) (K T);
362 val _ = map (Sign.certify_sort thy) Ss = Ss orelse err ();
365 |> fold (snd oo declare_overloaded) missing_params
366 |> Sign.primitive_arity (t, Ss, [c])
367 |> put_arity ((t, Ss, c), Thm.close_derivation (Drule.unconstrainTs th))
371 (* tactical proofs *)
373 fun prove_classrel raw_rel tac thy =
375 val ctxt = ProofContext.init thy;
376 val (c1, c2) = cert_classrel thy raw_rel;
377 val th = Goal.prove ctxt [] [] (Logic.mk_classrel (c1, c2)) (K tac) handle ERROR msg =>
378 cat_error msg ("The error(s) above occurred while trying to prove class relation " ^
379 quote (Syntax.string_of_classrel ctxt [c1, c2]));
382 |> PureThy.add_thms [((Binding.name
383 (prefix classrel_prefix (Logic.name_classrel (c1, c2))), th), [])]
384 |-> (fn [th'] => add_classrel th')
387 fun prove_arity raw_arity tac thy =
389 val ctxt = ProofContext.init thy;
390 val arity = ProofContext.cert_arity ctxt raw_arity;
391 val names = map (prefix arity_prefix) (Logic.name_arities arity);
392 val props = Logic.mk_arities arity;
393 val ths = Goal.prove_multi ctxt [] [] props
394 (fn _ => Goal.precise_conjunction_tac (length props) 1 THEN tac) handle ERROR msg =>
395 cat_error msg ("The error(s) above occurred while trying to prove type arity " ^
396 quote (Syntax.string_of_arity ctxt arity));
399 |> PureThy.add_thms (map (rpair []) (map Binding.name names ~~ ths))
405 (** class definitions **)
407 fun split_defined n eq =
410 (eq RS Drule.equal_elim_rule2)
411 |> Conjunction.curry_balanced n
412 |> n = 0 ? Thm.eq_assumption 1;
416 (eq RS Drule.equal_elim_rule1)
417 |> Balanced_Tree.dest (fn th =>
418 (th RS Conjunction.conjunctionD1, th RS Conjunction.conjunctionD2)) n;
419 in (intro, dests) end;
421 fun define_class (bclass, raw_super) raw_params raw_specs thy =
423 val ctxt = ProofContext.init thy;
424 val pp = Syntax.pp ctxt;
429 val bconst = Binding.map_name Logic.const_of_class bclass;
430 val class = Sign.full_name thy bclass;
431 val super = Sign.minimize_sort thy (Sign.certify_sort thy raw_super);
433 fun check_constraint (a, S) =
434 if Sign.subsort thy (super, S) then ()
435 else error ("Sort constraint of type variable " ^
436 setmp_CRITICAL show_sorts true (Pretty.string_of_typ pp) (TFree (a, S)) ^
437 " needs to be weaker than " ^ Pretty.string_of_sort pp super);
442 val params = raw_params |> map (fn p =>
444 val T = Sign.the_const_type thy p;
446 (case Term.add_tvarsT T [] of
447 [((a, _), S)] => check_constraint (a, S)
448 | _ => error ("Exactly one type variable expected in class parameter " ^ quote p));
449 val T' = Term.map_type_tvar (fn _ => TFree (Name.aT, [class])) T;
456 (case Term.add_tfrees t [] of
457 [(a, S)] => check_constraint (a, S)
459 | _ => error ("Multiple type variables in class axiom:\n" ^ Pretty.string_of_term pp t);
461 |> Term.map_types (Term.map_atyps (fn TFree _ => Term.aT [] | U => U))
462 |> Logic.close_form);
464 val axiomss = map (map (prep_axiom o Sign.cert_prop thy) o snd) raw_specs;
465 val name_atts = map fst raw_specs;
470 val conjs = Logic.mk_of_sort (Term.aT [], super) @ flat axiomss;
472 Logic.mk_equals (Logic.mk_of_class (Term.aT [], class), Logic.mk_conjunction_balanced conjs);
474 val ([def], def_thy) =
476 |> Sign.primitive_class (bclass, super)
477 |> PureThy.add_defs false [((Thm.def_binding bconst, class_eq), [])];
478 val (raw_intro, (raw_classrel, raw_axioms)) =
479 split_defined (length conjs) def ||> chop (length super);
484 val class_triv = Thm.class_triv def_thy class;
485 val ([(_, [intro]), (_, classrel), (_, axioms)], facts_thy) =
487 |> Sign.qualified_path true bconst
488 |> PureThy.note_thmss ""
489 [((Binding.name introN, []), [([Drule.export_without_context raw_intro], [])]),
490 ((Binding.name superN, []), [(map Drule.export_without_context raw_classrel, [])]),
491 ((Binding.name axiomsN, []),
492 [(map (fn th => Drule.export_without_context (class_triv RS th)) raw_axioms, [])])]
493 ||> Sign.restore_naming def_thy;
498 val axclass = make_axclass ((def, intro, axioms), params);
501 |> fold put_classrel (map (pair class) super ~~ classrel)
502 |> Sign.qualified_path false bconst
503 |> PureThy.note_thmss "" (name_atts ~~ map Thm.simple_fact (unflat axiomss axioms)) |> snd
504 |> Sign.restore_naming facts_thy
505 |> map_axclasses (fn (axclasses, parameters) =>
506 (Symtab.update (class, axclass) axclasses,
507 fold (fn (x, _) => add_param pp (x, class)) params parameters));
509 in (class, result_thy) end;
513 (** axiomatizations **)
517 fun axiomatize prep mk name add raw_args thy =
519 val args = prep thy raw_args;
521 val names = name args;
524 |> fold_map Drule.add_axiom (map Binding.name names ~~ specs)
528 fun ax_classrel prep =
529 axiomatize (map o prep) (map Logic.mk_classrel)
530 (map (prefix classrel_prefix o Logic.name_classrel)) add_classrel;
533 axiomatize (prep o ProofContext.init) Logic.mk_arities
534 (map (prefix arity_prefix) o Logic.name_arities) add_arity;
537 (Logic.const_of_class c, Term.itselfT (Term.aT []) --> propT);
539 fun ax_class prep_class prep_classrel (bclass, raw_super) thy =
541 val class = Sign.full_name thy bclass;
542 val super = map (prep_class thy) raw_super |> Sign.minimize_sort thy;
545 |> Sign.primitive_class (bclass, super)
546 |> ax_classrel prep_classrel (map (fn c => (class, c)) super)
547 |> Theory.add_deps "" (class_const class) (map class_const super)
552 val axiomatize_class = ax_class Sign.certify_class cert_classrel;
553 val axiomatize_class_cmd = ax_class (ProofContext.read_class o ProofContext.init) read_classrel;
554 val axiomatize_classrel = ax_classrel cert_classrel;
555 val axiomatize_classrel_cmd = ax_classrel read_classrel;
556 val axiomatize_arity = ax_arity ProofContext.cert_arity;
557 val axiomatize_arity_cmd = ax_arity ProofContext.read_arity;
563 (** explicit derivations -- cached **)
565 datatype cache = Types of (class * thm) list Typtab.table;
569 fun lookup_type (Types cache) = AList.lookup (op =) o Typtab.lookup_list cache;
570 fun insert_type T der (Types cache) = Types (Typtab.insert_list (eq_fst op =) (T, der) cache);
572 fun derive_type _ (_, []) = []
573 | derive_type thy (typ, sort) =
575 val certT = Thm.ctyp_of thy;
576 val vars = Term.fold_atyps
577 (fn T as TFree (_, S) => insert (eq_fst op =) (T, S)
578 | T as TVar (_, S) => insert (eq_fst op =) (T, S)
581 |> map (fn (T, S) => (T, Thm.of_sort (certT T, S) ~~ S));
582 val ths = (typ, sort)
583 |> Sorts.of_sort_derivation (Sign.classes_of thy)
585 fn (th, c1) => fn c2 => th RS the_classrel thy (c1, c2),
587 fn a => fn dom => fn c =>
588 let val Ss = map (map snd) dom and ths = maps (map fst) dom
589 in ths MRS the_arity thy a (c, Ss) end,
591 the_default [] o AList.lookup (op =) hyps};
596 fun of_sort thy (typ, sort) cache =
598 val sort' = filter (is_none o lookup_type cache typ) sort;
599 val ths' = derive_type thy (typ, sort')
600 handle ERROR msg => cat_error msg ("The error(s) above occurred for sort derivation: " ^
601 Syntax.string_of_typ_global thy typ ^ " :: " ^ Syntax.string_of_sort_global thy sort');
602 val cache' = cache |> fold (insert_type typ) (sort' ~~ ths');
606 (Syntax.init_pretty_global thy)
607 (the (lookup_type cache' typ c) RS
608 Goal.init (Thm.cterm_of thy (Logic.mk_of_class (typ, c))))
609 |> Thm.adjust_maxidx_thm ~1);
610 in (ths, cache') end;
614 val cache = Types Typtab.empty;