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