1 (* Title: Pure/Isar/class_target.ML
2 Author: Florian Haftmann, TU Muenchen
4 Type classes derived from primitive axclasses and locales - mechanisms.
7 signature CLASS_TARGET =
10 val register: class -> class list -> ((string * typ) * (string * typ)) list
11 -> sort -> morphism -> thm option -> thm option -> thm
13 val register_subclass: class * class -> morphism option -> Element.witness option
14 -> morphism -> theory -> theory
16 val is_class: theory -> class -> bool
17 val base_sort: theory -> class -> sort
18 val rules: theory -> class -> thm option * thm
19 val these_params: theory -> sort -> (string * (class * (string * typ))) list
20 val these_defs: theory -> sort -> thm list
21 val these_operations: theory -> sort -> (string * (class * (typ * term))) list
22 val print_classes: theory -> unit
24 val begin: class list -> sort -> Proof.context -> Proof.context
25 val init: class -> theory -> Proof.context
26 val declare: class -> Properties.T
27 -> (binding * mixfix) * term -> theory -> theory
28 val abbrev: class -> Syntax.mode -> Properties.T
29 -> (binding * mixfix) * term -> theory -> theory
30 val class_prefix: string -> string
31 val refresh_syntax: class -> Proof.context -> Proof.context
32 val redeclare_operations: theory -> sort -> Proof.context -> Proof.context
35 val init_instantiation: string list * (string * sort) list * sort
36 -> theory -> local_theory
37 val instantiation_instance: (local_theory -> local_theory)
38 -> local_theory -> Proof.state
39 val prove_instantiation_instance: (Proof.context -> tactic)
40 -> local_theory -> local_theory
41 val prove_instantiation_exit: (Proof.context -> tactic)
42 -> local_theory -> theory
43 val prove_instantiation_exit_result: (morphism -> 'a -> 'b)
44 -> (Proof.context -> 'b -> tactic) -> 'a -> local_theory -> 'b * theory
45 val conclude_instantiation: local_theory -> local_theory
46 val instantiation_param: local_theory -> binding -> string option
47 val confirm_declaration: binding -> local_theory -> local_theory
48 val pretty_instantiation: local_theory -> Pretty.T
49 val type_name: string -> string
51 val intro_classes_tac: thm list -> tactic
52 val default_intro_tac: Proof.context -> thm list -> tactic
55 val axclass_cmd: binding * xstring list
56 -> (Attrib.binding * string list) list
57 -> theory -> class * theory
58 val classrel_cmd: xstring * xstring -> theory -> Proof.state
59 val instance_arity: (theory -> theory) -> arity -> theory -> Proof.state
60 val instance_arity_cmd: xstring * xstring list * xstring -> theory -> Proof.state
63 structure Class_Target : CLASS_TARGET =
66 (** primitive axclass and instance commands **)
68 fun axclass_cmd (class, raw_superclasses) raw_specs thy =
70 val ctxt = ProofContext.init thy;
71 val superclasses = map (Sign.read_class thy) raw_superclasses;
72 val name_atts = map ((apsnd o map) (Attrib.attribute thy) o fst)
74 val axiomss = ProofContext.read_propp (ctxt, map (map (rpair []) o snd)
79 AxClass.define_class (class, superclasses) []
80 (name_atts ~~ axiomss) thy
85 fun gen_instance mk_prop add_thm after_qed insts thy =
87 fun after_qed' results =
88 ProofContext.theory ((fold o fold) add_thm results #> after_qed);
92 |> Proof.theorem_i NONE after_qed' ((map (fn t => [(t, [])])
99 gen_instance (Logic.mk_arities oo Sign.cert_arity) AxClass.add_arity;
100 val instance_arity_cmd =
101 gen_instance (Logic.mk_arities oo Sign.read_arity) AxClass.add_arity I;
103 gen_instance (single oo (Logic.mk_classrel oo AxClass.cert_classrel)) AxClass.add_classrel I;
105 gen_instance (single oo (Logic.mk_classrel oo AxClass.read_classrel)) AxClass.add_classrel I;
112 datatype class_data = ClassData of {
115 consts: (string * string) list
116 (*locale parameter ~> constant name*),
119 (*static part of canonical morphism*),
120 assm_intro: thm option,
126 operations: (string * (class * (typ * term))) list
130 fun rep_class_data (ClassData data) = data;
131 fun mk_class_data ((consts, base_sort, base_morph, assm_intro, of_class, axiom),
132 (defs, operations)) =
133 ClassData { consts = consts, base_sort = base_sort,
134 base_morph = base_morph, assm_intro = assm_intro, of_class = of_class, axiom = axiom,
135 defs = defs, operations = operations };
136 fun map_class_data f (ClassData { consts, base_sort, base_morph, assm_intro,
137 of_class, axiom, defs, operations }) =
138 mk_class_data (f ((consts, base_sort, base_morph, assm_intro, of_class, axiom),
139 (defs, operations)));
140 fun merge_class_data _ (ClassData { consts = consts,
141 base_sort = base_sort, base_morph = base_morph, assm_intro = assm_intro,
142 of_class = of_class, axiom = axiom, defs = defs1, operations = operations1 },
143 ClassData { consts = _, base_sort = _, base_morph = _, assm_intro = _,
144 of_class = _, axiom = _, defs = defs2, operations = operations2 }) =
145 mk_class_data ((consts, base_sort, base_morph, assm_intro, of_class, axiom),
146 (Thm.merge_thms (defs1, defs2),
147 AList.merge (op =) (K true) (operations1, operations2)));
149 structure ClassData = TheoryDataFun
151 type T = class_data Graph.T
152 val empty = Graph.empty;
155 fun merge _ = Graph.join merge_class_data;
161 val lookup_class_data = Option.map rep_class_data oo try o Graph.get_node o ClassData.get;
163 fun the_class_data thy class = case lookup_class_data thy class
164 of NONE => error ("Undeclared class " ^ quote class)
167 val is_class = is_some oo lookup_class_data;
169 val ancestry = Graph.all_succs o ClassData.get;
170 val heritage = Graph.all_preds o ClassData.get;
172 fun these_params thy =
176 val const_typs = (#params o AxClass.get_info thy) class;
177 val const_names = (#consts o the_class_data thy) class;
180 (fn c => (class, (c, (the o AList.lookup (op =) const_typs) c))) const_names
182 in maps params o ancestry thy end;
184 val base_sort = #base_sort oo the_class_data;
186 fun rules thy class =
187 let val { axiom, of_class, ... } = the_class_data thy class
188 in (axiom, of_class) end;
190 fun all_assm_intros thy =
191 Graph.fold (fn (_, (data, _)) => fold (insert Thm.eq_thm)
192 ((the_list o #assm_intro o rep_class_data) data)) (ClassData.get thy) [];
194 fun these_defs thy = maps (#defs o the_class_data thy) o ancestry thy;
195 fun these_operations thy = maps (#operations o the_class_data thy) o ancestry thy;
197 val base_morphism = #base_morph oo the_class_data;
198 fun morphism thy class = base_morphism thy class
199 $> Element.eq_morphism thy (these_defs thy [class]);
201 fun print_classes thy =
203 val ctxt = ProofContext.init thy;
204 val algebra = Sign.classes_of thy;
207 |> Symtab.fold (fn (tyco, arities) => fold (fn (class, _) =>
208 Symtab.map_default (class, []) (insert (op =) tyco)) arities)
209 ((#arities o Sorts.rep_algebra) algebra);
210 val the_arities = these o Symtab.lookup arities;
211 fun mk_arity class tyco =
213 val Ss = Sorts.mg_domain algebra tyco [class];
214 in Syntax.pretty_arity ctxt (tyco, Ss, [class]) end;
215 fun mk_param (c, ty) = Pretty.str (Sign.extern_const thy c ^ " :: "
216 ^ setmp show_sorts false (Syntax.string_of_typ ctxt o Type.strip_sorts) ty);
217 fun mk_entry class = (Pretty.block o Pretty.fbreaks o map_filter I) [
218 (SOME o Pretty.str) ("class " ^ Sign.extern_class thy class ^ ":"),
219 (SOME o Pretty.block) [Pretty.str "supersort: ",
220 (Syntax.pretty_sort ctxt o Sign.minimize_sort thy o Sign.super_classes thy) class],
221 ((fn [] => NONE | ps => (SOME o Pretty.block o Pretty.fbreaks)
222 (Pretty.str "parameters:" :: ps)) o map mk_param
223 o these o Option.map #params o try (AxClass.get_info thy)) class,
224 (SOME o Pretty.block o Pretty.breaks) [
225 Pretty.str "instances:",
226 Pretty.list "" "" (map (mk_arity class) (the_arities class))
230 (Pretty.writeln o Pretty.chunks o separate (Pretty.str "")
231 o map mk_entry o Sorts.all_classes) algebra
237 fun register class sups params base_sort morph
238 axiom assm_intro of_class thy =
240 val operations = map (fn (v_ty as (_, ty), (c, _)) =>
241 (c, (class, (ty, Free v_ty)))) params;
242 val add_class = Graph.new_node (class,
243 mk_class_data (((map o pairself) fst params, base_sort,
244 morph, assm_intro, of_class, axiom), ([], operations)))
245 #> fold (curry Graph.add_edge class) sups;
246 in ClassData.map add_class thy end;
248 fun activate_defs class thms thy =
250 val eq_morph = Element.eq_morphism thy thms;
251 fun amend cls thy = Locale.amend_registration eq_morph
252 (cls, morphism thy cls) thy;
253 in fold amend (heritage thy [class]) thy end;
255 fun register_operation class (c, (t, some_def)) thy =
257 val base_sort = base_sort thy class;
258 val prep_typ = map_type_tfree
259 (fn (v, sort) => if Name.aT = v
260 then TFree (v, base_sort) else TVar ((v, 0), sort));
261 val t' = map_types prep_typ t;
262 val ty' = Term.fastype_of t';
265 |> (ClassData.map o Graph.map_node class o map_class_data o apsnd)
266 (fn (defs, operations) =>
267 (fold cons (the_list some_def) defs,
268 (c, (class, (ty', t'))) :: operations))
269 |> is_some some_def ? activate_defs class (the_list some_def)
272 fun register_subclass (sub, sup) some_dep_morph some_wit export thy =
274 val intros = (snd o rules thy) sup :: map_filter I
275 [Option.map (Drule.standard' o Element.conclude_witness) some_wit,
276 (fst o rules thy) sub];
277 val tac = EVERY (map (TRYALL o Tactic.rtac) intros);
278 val classrel = Goal.prove_global thy [] [] (Logic.mk_classrel (sub, sup))
280 val diff_sort = Sign.complete_sort thy [sup]
281 |> subtract (op =) (Sign.complete_sort thy [sub]);
284 |> AxClass.add_classrel classrel
285 |> ClassData.map (Graph.add_edge (sub, sup))
286 |> activate_defs sub (these_defs thy diff_sort)
287 |> fold (fn dep_morph => Locale.add_dependency sub (sup,
288 dep_morph $> Element.satisfy_morphism (the_list some_wit) $> export))
289 (the_list some_dep_morph)
290 |> (fn thy => fold_rev Locale.activate_global_facts
291 (Locale.get_registrations thy) thy)
295 (** classes and class target **)
297 (* class context syntax *)
299 fun these_unchecks thy =
300 map (fn (c, (_, (ty, t))) => (t, Const (c, ty))) o these_operations thy;
302 fun redeclare_const thy c =
303 let val b = Long_Name.base_name c
304 in Sign.intern_const thy b = c ? Variable.declare_const (b, c) end;
306 fun synchronize_class_syntax sort base_sort ctxt =
308 val thy = ProofContext.theory_of ctxt;
309 val algebra = Sign.classes_of thy;
310 val operations = these_operations thy sort;
311 fun subst_class_typ sort = map_type_tfree (K (TVar ((Name.aT, 0), sort)));
312 val primary_constraints =
313 (map o apsnd) (subst_class_typ base_sort o fst o snd) operations;
314 val secondary_constraints =
315 (map o apsnd) (fn (class, (ty, _)) => subst_class_typ [class] ty) operations;
316 fun improve (c, ty) = (case AList.lookup (op =) primary_constraints c
317 of SOME ty' => (case try (Type.raw_match (ty', ty)) Vartab.empty
318 of SOME tyenv => (case Vartab.lookup tyenv (Name.aT, 0)
319 of SOME (_, ty' as TVar (tvar as (vi, sort))) =>
320 if TypeInfer.is_param vi
321 andalso Sorts.sort_le algebra (base_sort, sort)
322 then SOME (ty', TFree (Name.aT, base_sort))
327 fun subst (c, ty) = Option.map snd (AList.lookup (op =) operations c);
328 val unchecks = these_unchecks thy sort;
331 |> fold (redeclare_const thy o fst) primary_constraints
332 |> Overloading.map_improvable_syntax (K (((primary_constraints, secondary_constraints),
333 (((improve, subst), true), unchecks)), false))
334 |> Overloading.set_primary_constraints
337 fun refresh_syntax class ctxt =
339 val thy = ProofContext.theory_of ctxt;
340 val base_sort = base_sort thy class;
341 in synchronize_class_syntax [class] base_sort ctxt end;
343 fun redeclare_operations thy sort =
344 fold (redeclare_const thy o fst) (these_operations thy sort);
346 fun begin sort base_sort ctxt =
348 |> Variable.declare_term
349 (Logic.mk_type (TFree (Name.aT, base_sort)))
350 |> synchronize_class_syntax sort base_sort
351 |> Overloading.add_improvable_syntax;
356 |> begin [class] (base_sort thy class);
361 val class_prefix = Logic.const_of_class o Long_Name.base_name;
363 fun declare class pos ((c, mx), dict) thy =
365 val morph = morphism thy class;
366 val b = Morphism.binding morph c;
367 val b_def = Morphism.binding morph (Binding.suffix_name "_dict" b);
368 val c' = Sign.full_name thy b;
369 val dict' = Morphism.term morph dict;
370 val ty' = Term.fastype_of dict';
371 val def_eq = Logic.mk_equals (Const (c', ty'), dict')
372 |> map_types Type.strip_sorts;
375 |> Sign.declare_const pos ((b, Type.strip_sorts ty'), mx)
377 |> Thm.add_def false false (b_def, def_eq)
379 |-> (fn def_thm => PureThy.store_thm (b_def, def_thm)
381 #> register_operation class (c', (dict', SOME (Thm.symmetric def_thm))))
382 |> Sign.add_const_constraint (c', SOME ty')
385 fun abbrev class prmode pos ((c, mx), rhs) thy =
387 val morph = morphism thy class;
388 val unchecks = these_unchecks thy [class];
389 val b = Morphism.binding morph c;
390 val c' = Sign.full_name thy b;
391 val rhs' = Pattern.rewrite_term thy unchecks [] rhs;
392 val ty' = Term.fastype_of rhs';
393 val rhs'' = map_types ((*Type.strip_sorts o *)Logic.varifyT) rhs';
396 |> Sign.add_abbrev (#1 prmode) pos (b, rhs'')
398 |> Sign.add_const_constraint (c', SOME ty')
399 |> Sign.notation true prmode [(Const (c', ty'), mx)]
400 |> not (#1 prmode = PrintMode.input) ? register_operation class (c', (rhs', NONE))
404 (** instantiation target **)
408 datatype instantiation = Instantiation of {
409 arities: string list * (string * sort) list * sort,
410 params: ((string * string) * (string * typ)) list
411 (*(instantiation parameter, type constructor), (local instantiation parameter, typ)*)
414 structure Instantiation = ProofDataFun
416 type T = instantiation
417 fun init _ = Instantiation { arities = ([], [], []), params = [] };
420 fun mk_instantiation (arities, params) =
421 Instantiation { arities = arities, params = params };
422 fun get_instantiation lthy = case Instantiation.get (LocalTheory.target_of lthy)
423 of Instantiation data => data;
424 fun map_instantiation f = (LocalTheory.target o Instantiation.map)
425 (fn Instantiation { arities, params } => mk_instantiation (f (arities, params)));
427 fun the_instantiation lthy = case get_instantiation lthy
428 of { arities = ([], [], []), ... } => error "No instantiation target"
431 val instantiation_params = #params o get_instantiation;
433 fun instantiation_param lthy b = instantiation_params lthy
434 |> find_first (fn (_, (v, _)) => Binding.name_of b = v)
435 |> Option.map (fst o fst);
440 fun synchronize_inst_syntax ctxt =
442 val Instantiation { arities = (_, _, sort), params = params } = Instantiation.get ctxt;
443 val thy = ProofContext.theory_of ctxt;
444 fun subst (c, ty) = case AxClass.inst_tyco_of thy (c, ty)
445 of SOME tyco => (case AList.lookup (op =) params (c, tyco)
446 of SOME (v_ty as (_, ty)) => SOME (ty, Free v_ty)
450 map (fn ((c, _), v_ty as (_, ty)) => (Free v_ty, Const (c, ty))) params;
453 |> Overloading.map_improvable_syntax
454 (fn (((primary_constraints, _), (((improve, _), _), _)), _) =>
455 (((primary_constraints, []), (((improve, subst), false), unchecks)), false))
461 val sanatize_name = (*FIXME*)
463 fun is_valid s = Symbol.is_ascii_letter s orelse Symbol.is_ascii_digit s
464 orelse s = "'" orelse s = "_";
465 val is_junk = not o is_valid andf Symbol.is_regular;
466 val junk = Scan.many is_junk;
467 val scan_valids = Symbol.scanner "Malformed input"
469 (Scan.optional (Scan.one Symbol.is_ascii_letter) "x" ^^ (Scan.many is_valid >> implode)
471 ::: Scan.repeat ((Scan.many1 is_valid >> implode) --| junk));
473 explode #> scan_valids #> implode
476 fun type_name "*" = "prod"
477 | type_name "+" = "sum"
478 | type_name s = sanatize_name (Long_Name.base_name s);
480 fun resort_terms pp algebra consts constraints ts =
482 fun matchings (Const (c_ty as (c, _))) = (case constraints c
484 | SOME sorts => fold2 (curry (Sorts.meet_sort algebra))
485 (Consts.typargs consts c_ty) sorts)
487 val tvartab = (fold o fold_aterms) matchings ts Vartab.empty
488 handle Sorts.CLASS_ERROR e => error (Sorts.class_error pp e);
489 val inst = map_type_tvar
490 (fn (vi, sort) => TVar (vi, the_default sort (Vartab.lookup tvartab vi)));
491 in if Vartab.is_empty tvartab then NONE else SOME ((map o map_types) inst ts) end;
493 fun init_instantiation (tycos, vs, sort) thy =
495 val _ = if null tycos then error "At least one arity must be given" else ();
496 val params = these_params thy (filter (can (AxClass.get_info thy)) sort);
497 fun get_param tyco (param, (_, (c, ty))) =
498 if can (AxClass.param_of_inst thy) (c, tyco)
499 then NONE else SOME ((c, tyco),
500 (param ^ "_" ^ type_name tyco, map_atyps (K (Type (tyco, map TFree vs))) ty));
501 val inst_params = map_product get_param tycos params |> map_filter I;
502 val primary_constraints = map (apsnd
503 (map_atyps (K (TVar ((Name.aT, 0), [])))) o snd o snd) params;
504 val pp = Syntax.pp_global thy;
505 val algebra = Sign.classes_of thy
506 |> fold (fn tyco => Sorts.add_arities pp
507 (tyco, map (fn class => (class, map snd vs)) sort)) tycos;
508 val consts = Sign.consts_of thy;
509 val improve_constraints = AList.lookup (op =)
510 (map (fn (_, (class, (c, _))) => (c, [[class]])) params);
511 fun resort_check ts ctxt = case resort_terms pp algebra consts improve_constraints ts
513 | SOME ts' => SOME (ts', ctxt);
514 fun improve (c, ty) = case AxClass.inst_tyco_of thy (c, ty)
515 of SOME tyco => (case AList.lookup (op =) inst_params (c, tyco)
516 of SOME (_, ty') => if Type.typ_instance (Sign.tsig_of thy) (ty', ty)
517 then SOME (ty, ty') else NONE
523 |> Instantiation.put (mk_instantiation ((tycos, vs, sort), inst_params))
524 |> fold (Variable.declare_typ o TFree) vs
525 |> fold (Variable.declare_names o Free o snd) inst_params
526 |> (Overloading.map_improvable_syntax o apfst)
527 (K ((primary_constraints, []), (((improve, K NONE), false), [])))
528 |> Overloading.add_improvable_syntax
529 |> Context.proof_map (Syntax.add_term_check 0 "resorting" resort_check)
530 |> synchronize_inst_syntax
533 fun confirm_declaration b = (map_instantiation o apsnd)
534 (filter_out (fn (_, (c', _)) => c' = Binding.name_of b))
535 #> LocalTheory.target synchronize_inst_syntax
537 fun gen_instantiation_instance do_proof after_qed lthy =
539 val (tycos, vs, sort) = (#arities o the_instantiation) lthy;
540 val arities_proof = maps (fn tyco => Logic.mk_arities (tyco, map snd vs, sort)) tycos;
541 fun after_qed' results =
542 LocalTheory.theory (fold (AxClass.add_arity o Thm.varifyT) results)
546 |> do_proof after_qed' arities_proof
549 val instantiation_instance = gen_instantiation_instance (fn after_qed => fn ts =>
550 Proof.theorem_i NONE (after_qed o map the_single) (map (fn t => [(t, [])]) ts));
552 fun prove_instantiation_instance tac = gen_instantiation_instance (fn after_qed =>
553 fn ts => fn lthy => after_qed (map (fn t => Goal.prove lthy [] [] t
554 (fn {context, ...} => tac context)) ts) lthy) I;
556 fun prove_instantiation_exit tac = prove_instantiation_instance tac
557 #> LocalTheory.exit_global;
559 fun prove_instantiation_exit_result f tac x lthy =
561 val morph = ProofContext.export_morphism lthy
562 (ProofContext.init (ProofContext.theory_of lthy));
566 |> prove_instantiation_exit (fn ctxt => tac ctxt y)
570 fun conclude_instantiation lthy =
572 val { arities, params } = the_instantiation lthy;
573 val (tycos, vs, sort) = arities;
574 val thy = ProofContext.theory_of lthy;
575 val _ = map (fn tyco => if Sign.of_sort thy
576 (Type (tyco, map TFree vs), sort)
577 then () else error ("Missing instance proof for type " ^ quote (Sign.extern_type thy tyco)))
581 fun pretty_instantiation lthy =
583 val { arities, params } = the_instantiation lthy;
584 val (tycos, vs, sort) = arities;
585 val thy = ProofContext.theory_of lthy;
586 fun pr_arity tyco = Syntax.pretty_arity lthy (tyco, map snd vs, sort);
587 fun pr_param ((c, _), (v, ty)) =
588 (Pretty.block o Pretty.breaks) [Pretty.str v, Pretty.str "==",
589 (Pretty.str o Sign.extern_const thy) c, Pretty.str "::", Syntax.pretty_typ_global thy ty];
591 (Pretty.block o Pretty.fbreaks)
592 (Pretty.str "instantiation" :: map pr_arity tycos @ map pr_param params)
596 (** tactics and methods **)
598 fun intro_classes_tac facts st =
600 val thy = Thm.theory_of_thm st;
601 val classes = Sign.all_classes thy;
602 val class_trivs = map (Thm.class_triv thy) classes;
603 val class_intros = map_filter (try (#intro o AxClass.get_info thy)) classes;
604 val assm_intros = all_assm_intros thy;
606 Method.intros_tac (class_trivs @ class_intros @ assm_intros) facts st
609 fun default_intro_tac ctxt [] =
610 intro_classes_tac [] ORELSE Locale.intro_locales_tac true ctxt []
611 | default_intro_tac _ _ = no_tac;
613 fun default_tac rules ctxt facts =
614 HEADGOAL (Method.some_rule_tac rules ctxt facts) ORELSE
615 default_intro_tac ctxt facts;
617 val _ = Context.>> (Context.map_theory
619 [("intro_classes", Method.no_args (Method.METHOD intro_classes_tac),
620 "back-chain introduction rules of classes"),
621 ("default", Method.thms_ctxt_args (Method.METHOD oo default_tac),
622 "apply some intro/elim rule")]));