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