| author | wenzelm | 
| Mon, 18 Dec 2023 12:02:58 +0100 | |
| changeset 79278 | 8943cc46a66f | 
| parent 77908 | a6bd716a6124 | 
| child 79324 | b03e22697999 | 
| permissions | -rw-r--r-- | 
| 404 
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
 wenzelm parents: diff
changeset | 1 | (* Title: Pure/axclass.ML | 
| 
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
 wenzelm parents: diff
changeset | 2 | Author: Markus Wenzel, TU Muenchen | 
| 
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
 wenzelm parents: diff
changeset | 3 | |
| 24964 | 4 | Type classes defined as predicates, associated with a record of | 
| 36417 | 5 | parameters. Proven class relations and type arities. | 
| 404 
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
 wenzelm parents: diff
changeset | 6 | *) | 
| 
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
 wenzelm parents: diff
changeset | 7 | |
| 51685 
385ef6706252
more standard module name Axclass (according to file name);
 wenzelm parents: 
51671diff
changeset | 8 | signature AXCLASS = | 
| 3938 | 9 | sig | 
| 36427 | 10 |   type info = {def: thm, intro: thm, axioms: thm list, params: (string * typ) list}
 | 
| 11 | val get_info: theory -> class -> info | |
| 12 | val class_of_param: theory -> string -> class option | |
| 13 | val instance_name: string * class -> string | |
| 14 | val param_of_inst: theory -> string * string -> string | |
| 15 | val inst_of_param: theory -> string -> (string * string) option | |
| 63073 
413184c7a2a2
clarified context, notably for internal use of Simplifier;
 wenzelm parents: 
62897diff
changeset | 16 | val unoverload: Proof.context -> thm -> thm | 
| 
413184c7a2a2
clarified context, notably for internal use of Simplifier;
 wenzelm parents: 
62897diff
changeset | 17 | val overload: Proof.context -> thm -> thm | 
| 
413184c7a2a2
clarified context, notably for internal use of Simplifier;
 wenzelm parents: 
62897diff
changeset | 18 | val unoverload_conv: Proof.context -> conv | 
| 
413184c7a2a2
clarified context, notably for internal use of Simplifier;
 wenzelm parents: 
62897diff
changeset | 19 | val overload_conv: Proof.context -> conv | 
| 36427 | 20 | val lookup_inst_param: Consts.T -> ((string * string) * 'a) list -> string * typ -> 'a option | 
| 21 | val unoverload_const: theory -> string * typ -> string | |
| 22 | val cert_classrel: theory -> class * class -> class * class | |
| 23 | val read_classrel: theory -> xstring * xstring -> class * class | |
| 24 | val declare_overloaded: string * typ -> theory -> term * theory | |
| 25 | val define_overloaded: binding -> string * term -> theory -> thm * theory | |
| 37246 | 26 | val add_classrel: thm -> theory -> theory | 
| 27 | val add_arity: thm -> theory -> theory | |
| 51671 | 28 | val prove_classrel: class * class -> (Proof.context -> tactic) -> theory -> theory | 
| 29 | val prove_arity: string * sort list * sort -> (Proof.context -> tactic) -> theory -> theory | |
| 36427 | 30 | val define_class: binding * class list -> string list -> | 
| 31 | (Thm.binding * term list) list -> theory -> class * theory | |
| 56941 
952833323c99
tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
 wenzelm parents: 
56144diff
changeset | 32 | val classrel_axiomatization: (class * class) list -> theory -> theory | 
| 
952833323c99
tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
 wenzelm parents: 
56144diff
changeset | 33 | val arity_axiomatization: arity -> theory -> theory | 
| 
952833323c99
tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
 wenzelm parents: 
56144diff
changeset | 34 | val class_axiomatization: binding * class list -> theory -> theory | 
| 3938 | 35 | end; | 
| 404 
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
 wenzelm parents: diff
changeset | 36 | |
| 51685 
385ef6706252
more standard module name Axclass (according to file name);
 wenzelm parents: 
51671diff
changeset | 37 | structure Axclass: AXCLASS = | 
| 404 
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
 wenzelm parents: diff
changeset | 38 | struct | 
| 
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
 wenzelm parents: diff
changeset | 39 | |
| 19405 | 40 | (** theory data **) | 
| 423 | 41 | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 42 | (* axclass info *) | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 43 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 44 | type info = | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 45 |  {def: thm,
 | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 46 | intro: thm, | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 47 | axioms: thm list, | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 48 | params: (string * typ) list}; | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 49 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 50 | fun make_axclass (def, intro, axioms, params): info = | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 51 |   {def = def, intro = intro, axioms = axioms, params = params};
 | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 52 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 53 | |
| 19405 | 54 | (* class parameters (canonical order) *) | 
| 423 | 55 | |
| 19405 | 56 | type param = string * class; | 
| 423 | 57 | |
| 42389 | 58 | fun add_param ctxt ((x, c): param) params = | 
| 19405 | 59 | (case AList.lookup (op =) params x of | 
| 60 | NONE => (x, c) :: params | |
| 42383 
0ae4ad40d7b5
simplified pretty printing context, which is only required for certain kernel operations;
 wenzelm parents: 
42375diff
changeset | 61 | | SOME c' => | 
| 42389 | 62 |       error ("Duplicate class parameter " ^ quote x ^ " for " ^ Syntax.string_of_sort ctxt [c] ^
 | 
| 63 | (if c = c' then "" else " and " ^ Syntax.string_of_sort ctxt [c']))); | |
| 423 | 64 | |
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 65 | |
| 19511 | 66 | (* setup data *) | 
| 19392 | 67 | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 68 | datatype data = Data of | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 69 |  {axclasses: info Symtab.table,
 | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 70 | params: param list, | 
| 70475 
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
 wenzelm parents: 
70469diff
changeset | 71 | (*arity theorems with theory name*) | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 72 | inst_params: | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 73 | (string * thm) Symtab.table Symtab.table * | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 74 | (*constant name ~> type constructor ~> (constant name, equation)*) | 
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 75 | (string * string) Symtab.table (*constant name ~> (constant name, type constructor)*)}; | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 76 | |
| 77895 | 77 | fun rep_data (Data args) = args; | 
| 78 | ||
| 70475 
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
 wenzelm parents: 
70469diff
changeset | 79 | fun make_data (axclasses, params, inst_params) = | 
| 
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
 wenzelm parents: 
70469diff
changeset | 80 |   Data {axclasses = axclasses, params = params, inst_params = inst_params};
 | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 81 | |
| 61262 
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
 wenzelm parents: 
61256diff
changeset | 82 | structure Data = Theory_Data' | 
| 22846 | 83 | ( | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 84 | type T = data; | 
| 70475 
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
 wenzelm parents: 
70469diff
changeset | 85 | val empty = make_data (Symtab.empty, [], (Symtab.empty, Symtab.empty)); | 
| 77895 | 86 | fun merge args = | 
| 36325 | 87 | let | 
| 77895 | 88 | val ctxt0 = Syntax.init_pretty_global (#1 (hd args)); | 
| 42389 | 89 | |
| 77895 | 90 | fun merge_params (params1, params2) = | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 91 | if null params1 then params2 | 
| 42389 | 92 | else | 
| 77895 | 93 | fold_rev (fn p => if member (op =) params1 p then I else add_param ctxt0 p) | 
| 42389 | 94 | params2 params1; | 
| 70475 
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
 wenzelm parents: 
70469diff
changeset | 95 | |
| 77895 | 96 | fun merge_inst_params (inst_params1, inst_params2) = | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 97 | (Symtab.join (K (Symtab.merge (K true))) (#1 inst_params1, #1 inst_params2), | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 98 | Symtab.merge (K true) (#2 inst_params1, #2 inst_params2)); | 
| 77895 | 99 | |
| 100 | val axclasses' = Library.foldl1 (Symtab.merge (K true)) (map (#axclasses o rep_data o #2) args); | |
| 101 | val params' = Library.foldl1 merge_params (map (#params o rep_data o #2) args); | |
| 102 | val inst_params' = Library.foldl1 merge_inst_params (map (#inst_params o rep_data o #2) args); | |
| 70475 
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
 wenzelm parents: 
70469diff
changeset | 103 | in make_data (axclasses', params', inst_params') end; | 
| 22846 | 104 | ); | 
| 6379 | 105 | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 106 | fun map_data f = | 
| 70475 
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
 wenzelm parents: 
70469diff
changeset | 107 |   Data.map (fn Data {axclasses, params, inst_params} =>
 | 
| 
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
 wenzelm parents: 
70469diff
changeset | 108 | make_data (f (axclasses, params, inst_params))); | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 109 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 110 | fun map_axclasses f = | 
| 70475 
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
 wenzelm parents: 
70469diff
changeset | 111 | map_data (fn (axclasses, params, inst_params) => | 
| 
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
 wenzelm parents: 
70469diff
changeset | 112 | (f axclasses, params, inst_params)); | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 113 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 114 | fun map_params f = | 
| 70475 
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
 wenzelm parents: 
70469diff
changeset | 115 | map_data (fn (axclasses, params, inst_params) => | 
| 
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
 wenzelm parents: 
70469diff
changeset | 116 | (axclasses, f params, inst_params)); | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 117 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 118 | fun map_inst_params f = | 
| 70475 
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
 wenzelm parents: 
70469diff
changeset | 119 | map_data (fn (axclasses, params, inst_params) => | 
| 
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
 wenzelm parents: 
70469diff
changeset | 120 | (axclasses, params, f inst_params)); | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 121 | |
| 77895 | 122 | val rep_theory_data = Data.get #> rep_data; | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 123 | |
| 77895 | 124 | val axclasses_of = #axclasses o rep_theory_data; | 
| 125 | val params_of = #params o rep_theory_data; | |
| 126 | val inst_params_of = #inst_params o rep_theory_data; | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 127 | |
| 6379 | 128 | |
| 36346 | 129 | (* axclasses with parameters *) | 
| 19392 | 130 | |
| 24929 
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
 wenzelm parents: 
24920diff
changeset | 131 | fun get_info thy c = | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 132 | (case Symtab.lookup (axclasses_of thy) c of | 
| 67628 | 133 |     SOME {def, intro, axioms, params} =>
 | 
| 134 |       {def = Thm.transfer thy def,
 | |
| 135 | intro = Thm.transfer thy intro, | |
| 136 | axioms = map (Thm.transfer thy) axioms, | |
| 137 | params = params} | |
| 21919 | 138 |   | NONE => error ("No such axclass: " ^ quote c));
 | 
| 6379 | 139 | |
| 36327 | 140 | fun all_params_of thy S = | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 141 | let val params = params_of thy; | 
| 36327 | 142 | in fold (fn (x, c) => if Sign.subsort thy (S, [c]) then cons x else I) params [] end; | 
| 19460 | 143 | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 144 | fun class_of_param thy = AList.lookup (op =) (params_of thy); | 
| 19460 | 145 | |
| 21919 | 146 | |
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 147 | (* maintain instance parameters *) | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 148 | |
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 149 | fun get_inst_param thy (c, tyco) = | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 150 | (case Symtab.lookup (the_default Symtab.empty (Symtab.lookup (#1 (inst_params_of thy)) c)) tyco of | 
| 67628 | 151 | SOME (a, th) => (a, Thm.transfer thy th) | 
| 36327 | 152 |   | NONE => error ("No instance parameter for constant " ^ quote c ^ " on type " ^ quote tyco));
 | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 153 | |
| 67628 | 154 | fun add_inst_param (c, tyco) (a, th) = | 
| 155 | (map_inst_params o apfst o Symtab.map_default (c, Symtab.empty)) | |
| 156 | (Symtab.update_new (tyco, (a, Thm.trim_context th))) | |
| 157 | #> (map_inst_params o apsnd) (Symtab.update_new (a, (c, tyco))); | |
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 158 | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 159 | val inst_of_param = Symtab.lookup o #2 o inst_params_of; | 
| 36417 | 160 | val param_of_inst = #1 oo get_inst_param; | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 161 | |
| 63073 
413184c7a2a2
clarified context, notably for internal use of Simplifier;
 wenzelm parents: 
62897diff
changeset | 162 | fun inst_thms ctxt = | 
| 
413184c7a2a2
clarified context, notably for internal use of Simplifier;
 wenzelm parents: 
62897diff
changeset | 163 | Symtab.fold | 
| 
413184c7a2a2
clarified context, notably for internal use of Simplifier;
 wenzelm parents: 
62897diff
changeset | 164 | (Symtab.fold (cons o #2 o #2) o #2) (#1 (inst_params_of (Proof_Context.theory_of ctxt))) []; | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 165 | |
| 36417 | 166 | fun get_inst_tyco consts = try (#1 o dest_Type o the_single o Consts.typargs consts); | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 167 | |
| 63073 
413184c7a2a2
clarified context, notably for internal use of Simplifier;
 wenzelm parents: 
62897diff
changeset | 168 | fun unoverload ctxt = rewrite_rule ctxt (inst_thms ctxt); | 
| 
413184c7a2a2
clarified context, notably for internal use of Simplifier;
 wenzelm parents: 
62897diff
changeset | 169 | fun overload ctxt = rewrite_rule ctxt (map Thm.symmetric (inst_thms ctxt)); | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 170 | |
| 63073 
413184c7a2a2
clarified context, notably for internal use of Simplifier;
 wenzelm parents: 
62897diff
changeset | 171 | fun unoverload_conv ctxt = Raw_Simplifier.rewrite ctxt true (inst_thms ctxt); | 
| 
413184c7a2a2
clarified context, notably for internal use of Simplifier;
 wenzelm parents: 
62897diff
changeset | 172 | fun overload_conv ctxt = Raw_Simplifier.rewrite ctxt true (map Thm.symmetric (inst_thms ctxt)); | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 173 | |
| 36327 | 174 | fun lookup_inst_param consts params (c, T) = | 
| 175 | (case get_inst_tyco consts (c, T) of | |
| 176 | SOME tyco => AList.lookup (op =) params (c, tyco) | |
| 177 | | NONE => NONE); | |
| 31249 | 178 | |
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 179 | fun unoverload_const thy (c_ty as (c, _)) = | 
| 36327 | 180 | if is_some (class_of_param thy c) then | 
| 181 | (case get_inst_tyco (Sign.consts_of thy) c_ty of | |
| 182 | SOME tyco => try (param_of_inst thy) (c, tyco) |> the_default c | |
| 183 | | NONE => c) | |
| 33969 | 184 | else c; | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 185 | |
| 404 
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
 wenzelm parents: diff
changeset | 186 | |
| 36327 | 187 | |
| 19511 | 188 | (** instances **) | 
| 19418 
03b01c9314fc
reworded add_axclass(_i): canonical specification format,
 wenzelm parents: 
19405diff
changeset | 189 | |
| 70456 
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
 wenzelm parents: 
70455diff
changeset | 190 | val classrel_prefix = "classrel_"; | 
| 
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
 wenzelm parents: 
70455diff
changeset | 191 | val arity_prefix = "arity_"; | 
| 
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
 wenzelm parents: 
70455diff
changeset | 192 | |
| 
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
 wenzelm parents: 
70455diff
changeset | 193 | fun instance_name (a, c) = Long_Name.base_name c ^ "_" ^ Long_Name.base_name a; | 
| 
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
 wenzelm parents: 
70455diff
changeset | 194 | |
| 
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
 wenzelm parents: 
70455diff
changeset | 195 | |
| 19418 
03b01c9314fc
reworded add_axclass(_i): canonical specification format,
 wenzelm parents: 
19405diff
changeset | 196 | (* class relations *) | 
| 
03b01c9314fc
reworded add_axclass(_i): canonical specification format,
 wenzelm parents: 
19405diff
changeset | 197 | |
| 19405 | 198 | fun cert_classrel thy raw_rel = | 
| 15876 
a67343c6ab2a
sane interfaces for tactical instance proofs (do not expand defs of theory, proper handling of sort instances);
 wenzelm parents: 
15853diff
changeset | 199 | let | 
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26516diff
changeset | 200 | val string_of_sort = Syntax.string_of_sort_global thy; | 
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
56941diff
changeset | 201 | val (c1, c2) = apply2 (Sign.certify_class thy) raw_rel; | 
| 52788 | 202 | val _ = Sign.primitive_classrel (c1, c2) thy; | 
| 19405 | 203 | val _ = | 
| 19460 | 204 | (case subtract (op =) (all_params_of thy [c1]) (all_params_of thy [c2]) of | 
| 19405 | 205 | [] => () | 
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26516diff
changeset | 206 |       | xs => raise TYPE ("Class " ^ string_of_sort [c1] ^ " lacks parameter(s) " ^
 | 
| 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26516diff
changeset | 207 | commas_quote xs ^ " of " ^ string_of_sort [c2], [], [])); | 
| 19405 | 208 | in (c1, c2) end; | 
| 209 | ||
| 210 | fun read_classrel thy raw_rel = | |
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
56941diff
changeset | 211 | cert_classrel thy (apply2 (Proof_Context.read_class (Proof_Context.init_global thy)) raw_rel) | 
| 19405 | 212 | handle TYPE (msg, _, _) => error msg; | 
| 213 | ||
| 214 | ||
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 215 | (* declaration and definition of instances of overloaded constants *) | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 216 | |
| 35201 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 217 | fun inst_tyco_of thy (c, T) = | 
| 77908 
a6bd716a6124
tuned: concise combinators instead of bulky case-expressions;
 wenzelm parents: 
77895diff
changeset | 218 | get_inst_tyco (Sign.consts_of thy) (c, T) | 
| 
a6bd716a6124
tuned: concise combinators instead of bulky case-expressions;
 wenzelm parents: 
77895diff
changeset | 219 | |> \<^if_none>\<open> | 
| 
a6bd716a6124
tuned: concise combinators instead of bulky case-expressions;
 wenzelm parents: 
77895diff
changeset | 220 |     error ("Illegal type for instantiation of class parameter: " ^
 | 
| 
a6bd716a6124
tuned: concise combinators instead of bulky case-expressions;
 wenzelm parents: 
77895diff
changeset | 221 | quote (c ^ " :: " ^ Syntax.string_of_typ_global thy T))\<close>; | 
| 31249 | 222 | |
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 223 | fun declare_overloaded (c, T) thy = | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 224 | let | 
| 77908 
a6bd716a6124
tuned: concise combinators instead of bulky case-expressions;
 wenzelm parents: 
77895diff
changeset | 225 |     val class = class_of_param thy c |> \<^if_none>\<open>error ("Not a class parameter: " ^ quote c)\<close>;
 | 
| 31249 | 226 | val tyco = inst_tyco_of thy (c, T); | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 227 | val name_inst = instance_name (tyco, class) ^ "_inst"; | 
| 36417 | 228 | val c' = instance_name (tyco, c); | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 229 | val T' = Type.strip_sorts T; | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 230 | in | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 231 | thy | 
| 35201 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 232 | |> Sign.qualified_path true (Binding.name name_inst) | 
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 233 | |> Sign.declare_const_global ((Binding.name c', T'), NoSyn) | 
| 30344 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 wenzelm parents: 
30280diff
changeset | 234 | |-> (fn const' as Const (c'', _) => | 
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 235 | Thm.add_def_global false true | 
| 30344 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 wenzelm parents: 
30280diff
changeset | 236 | (Binding.name (Thm.def_name c'), Logic.mk_equals (Const (c, T'), const')) | 
| 36106 
19deea200358
Thm.add_axiom/add_def: return internal name of foundational axiom;
 wenzelm parents: 
35961diff
changeset | 237 | #>> apsnd Thm.varifyT_global | 
| 
19deea200358
Thm.add_axiom/add_def: return internal name of foundational axiom;
 wenzelm parents: 
35961diff
changeset | 238 | #-> (fn (_, thm) => add_inst_param (c, tyco) (c'', thm) | 
| 59859 | 239 | #> Global_Theory.add_thm ((Binding.concealed (Binding.name c'), thm), []) | 
| 36417 | 240 | #> #2 | 
| 36106 
19deea200358
Thm.add_axiom/add_def: return internal name of foundational axiom;
 wenzelm parents: 
35961diff
changeset | 241 | #> pair (Const (c, T)))) | 
| 35201 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 242 | ||> Sign.restore_naming thy | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 243 | end; | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 244 | |
| 30519 
c05c0199826f
coherent binding policy with primitive target operations
 haftmann parents: 
30469diff
changeset | 245 | fun define_overloaded b (c, t) thy = | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 246 | let | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 247 | val T = Term.fastype_of t; | 
| 31249 | 248 | val tyco = inst_tyco_of thy (c, T); | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 249 | val (c', eq) = get_inst_param thy (c, tyco); | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 250 | val prop = Logic.mk_equals (Const (c', T), t); | 
| 36417 | 251 | val b' = Thm.def_binding_optional (Binding.name (instance_name (tyco, c))) b; | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 252 | in | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 253 | thy | 
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 254 | |> Thm.add_def_global false false (b', prop) | 
| 38383 | 255 | |>> (fn (_, thm) => Drule.transitive_thm OF [eq, thm]) | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 256 | end; | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 257 | |
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 258 | |
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 259 | (* primitive rules *) | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 260 | |
| 37249 | 261 | fun add_classrel raw_th thy = | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 262 | let | 
| 31948 
ea8c8bf47ce3
add_classrel/arity: strip_shyps of stored result;
 wenzelm parents: 
31944diff
changeset | 263 | val th = Thm.strip_shyps (Thm.transfer thy raw_th); | 
| 
ea8c8bf47ce3
add_classrel/arity: strip_shyps of stored result;
 wenzelm parents: 
31944diff
changeset | 264 | val prop = Thm.plain_prop_of th; | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 265 |     fun err () = raise THM ("add_classrel: malformed class relation", 0, [th]);
 | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 266 | val rel = Logic.dest_classrel prop handle TERM _ => err (); | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 267 | val (c1, c2) = cert_classrel thy rel handle TYPE _ => err (); | 
| 56144 
27167f903c6d
conceal somewhat obscure internal facts, e.g. relevant for 'print_theorems', 'find_theorems';
 wenzelm parents: 
55385diff
changeset | 268 | val binding = | 
| 59859 | 269 | Binding.concealed (Binding.name (prefix classrel_prefix (Logic.name_classrel (c1, c2)))); | 
| 70456 
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
 wenzelm parents: 
70455diff
changeset | 270 | in thy |> Global_Theory.store_thm (binding, th) |-> Thm.add_classrel end; | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 271 | |
| 37249 | 272 | fun add_arity raw_th thy = | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 273 | let | 
| 31948 
ea8c8bf47ce3
add_classrel/arity: strip_shyps of stored result;
 wenzelm parents: 
31944diff
changeset | 274 | val th = Thm.strip_shyps (Thm.transfer thy raw_th); | 
| 
ea8c8bf47ce3
add_classrel/arity: strip_shyps of stored result;
 wenzelm parents: 
31944diff
changeset | 275 | val prop = Thm.plain_prop_of th; | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 276 |     fun err () = raise THM ("add_arity: malformed type arity", 0, [th]);
 | 
| 37232 
c10fb22a5e0c
classrel and arity theorems are now stored under proper name in theory. add_arity and
 berghofe parents: 
36935diff
changeset | 277 | val arity as (t, Ss, c) = Logic.dest_arity prop handle TERM _ => err (); | 
| 
c10fb22a5e0c
classrel and arity theorems are now stored under proper name in theory. add_arity and
 berghofe parents: 
36935diff
changeset | 278 | |
| 56144 
27167f903c6d
conceal somewhat obscure internal facts, e.g. relevant for 'print_theorems', 'find_theorems';
 wenzelm parents: 
55385diff
changeset | 279 | val binding = | 
| 59859 | 280 | Binding.concealed (Binding.name (prefix arity_prefix (Logic.name_arity arity))); | 
| 36417 | 281 | |
| 43329 
84472e198515
tuned signature: Name.invent and Name.invent_names;
 wenzelm parents: 
42389diff
changeset | 282 | val args = Name.invent_names Name.context Name.aT Ss; | 
| 70456 
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
 wenzelm parents: 
70455diff
changeset | 283 | val missing_params = | 
| 
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
 wenzelm parents: 
70455diff
changeset | 284 | Sign.complete_sort thy [c] | 
| 
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
 wenzelm parents: 
70455diff
changeset | 285 | |> maps (these o Option.map #params o try (get_info thy)) | 
| 
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
 wenzelm parents: 
70455diff
changeset | 286 | |> filter_out (fn (const, _) => can (get_inst_param thy) (const, t)) | 
| 
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
 wenzelm parents: 
70455diff
changeset | 287 | |> (map o apsnd o map_atyps) (K (Type (t, map TFree args))); | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 288 | in | 
| 70456 
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
 wenzelm parents: 
70455diff
changeset | 289 | thy | 
| 
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
 wenzelm parents: 
70455diff
changeset | 290 | |> Global_Theory.store_thm (binding, th) | 
| 
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
 wenzelm parents: 
70455diff
changeset | 291 | |-> Thm.add_arity | 
| 36417 | 292 | |> fold (#2 oo declare_overloaded) missing_params | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 293 | end; | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 294 | |
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 295 | |
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 296 | (* tactical proofs *) | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 297 | |
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 298 | fun prove_classrel raw_rel tac thy = | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 299 | let | 
| 42360 | 300 | val ctxt = Proof_Context.init_global thy; | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 301 | val (c1, c2) = cert_classrel thy raw_rel; | 
| 51671 | 302 | val th = | 
| 303 |       Goal.prove ctxt [] [] (Logic.mk_classrel (c1, c2)) (fn {context, ...} => tac context)
 | |
| 304 | handle ERROR msg => | |
| 305 |           cat_error msg ("The error(s) above occurred while trying to prove class relation " ^
 | |
| 306 | quote (Syntax.string_of_classrel ctxt [c1, c2])); | |
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 307 | in | 
| 37249 | 308 | thy |> add_classrel th | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 309 | end; | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 310 | |
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 311 | fun prove_arity raw_arity tac thy = | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 312 | let | 
| 42360 | 313 | val ctxt = Proof_Context.init_global thy; | 
| 314 | val arity = Proof_Context.cert_arity ctxt raw_arity; | |
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 315 | val props = Logic.mk_arities arity; | 
| 51671 | 316 | val ths = | 
| 59564 
fdc03c8daacc
Goal.prove_multi is superseded by the fully general Goal.prove_common;
 wenzelm parents: 
59058diff
changeset | 317 | Goal.prove_common ctxt NONE [] [] props | 
| 51671 | 318 |       (fn {context, ...} => Goal.precise_conjunction_tac (length props) 1 THEN tac context)
 | 
| 319 | handle ERROR msg => | |
| 320 |           cat_error msg ("The error(s) above occurred while trying to prove type arity " ^
 | |
| 321 | quote (Syntax.string_of_arity ctxt arity)); | |
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 322 | in | 
| 37249 | 323 | thy |> fold add_arity ths | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 324 | end; | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 325 | |
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 326 | |
| 19511 | 327 | |
| 328 | (** class definitions **) | |
| 329 | ||
| 23421 | 330 | fun split_defined n eq = | 
| 331 | let | |
| 332 | val intro = | |
| 333 | (eq RS Drule.equal_elim_rule2) | |
| 334 | |> Conjunction.curry_balanced n | |
| 335 | |> n = 0 ? Thm.eq_assumption 1; | |
| 336 | val dests = | |
| 337 | if n = 0 then [] | |
| 338 | else | |
| 339 | (eq RS Drule.equal_elim_rule1) | |
| 32765 | 340 | |> Balanced_Tree.dest (fn th => | 
| 23421 | 341 | (th RS Conjunction.conjunctionD1, th RS Conjunction.conjunctionD2)) n; | 
| 342 | in (intro, dests) end; | |
| 343 | ||
| 24964 | 344 | fun define_class (bclass, raw_super) raw_params raw_specs thy = | 
| 19511 | 345 | let | 
| 39133 
70d3915c92f0
pretty printing: prefer regular Proof.context over Pretty.pp, which is mostly for special bootstrap purposes involving theory merge, for example;
 wenzelm parents: 
38383diff
changeset | 346 | val ctxt = Syntax.init_pretty_global thy; | 
| 19511 | 347 | |
| 348 | ||
| 24964 | 349 | (* class *) | 
| 19511 | 350 | |
| 30344 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 wenzelm parents: 
30280diff
changeset | 351 | val bconst = Binding.map_name Logic.const_of_class bclass; | 
| 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 wenzelm parents: 
30280diff
changeset | 352 | val class = Sign.full_name thy bclass; | 
| 24731 | 353 | val super = Sign.minimize_sort thy (Sign.certify_sort thy raw_super); | 
| 19511 | 354 | |
| 24964 | 355 | fun check_constraint (a, S) = | 
| 356 | if Sign.subsort thy (super, S) then () | |
| 357 |       else error ("Sort constraint of type variable " ^
 | |
| 39134 
917b4b6ba3d2
turned show_sorts/show_types into proper configuration options;
 wenzelm parents: 
39133diff
changeset | 358 | Syntax.string_of_typ (Config.put show_sorts true ctxt) (TFree (a, S)) ^ | 
| 39133 
70d3915c92f0
pretty printing: prefer regular Proof.context over Pretty.pp, which is mostly for special bootstrap purposes involving theory merge, for example;
 wenzelm parents: 
38383diff
changeset | 359 | " needs to be weaker than " ^ Syntax.string_of_sort ctxt super); | 
| 24964 | 360 | |
| 361 | ||
| 362 | (* params *) | |
| 363 | ||
| 364 | val params = raw_params |> map (fn p => | |
| 365 | let | |
| 366 | val T = Sign.the_const_type thy p; | |
| 367 | val _ = | |
| 368 | (case Term.add_tvarsT T [] of | |
| 369 | [((a, _), S)] => check_constraint (a, S) | |
| 370 |           | _ => error ("Exactly one type variable expected in class parameter " ^ quote p));
 | |
| 70387 | 371 | val T' = Term.map_type_tvar (K (Term.aT [class])) T; | 
| 24964 | 372 | in (p, T') end); | 
| 373 | ||
| 374 | ||
| 375 | (* axioms *) | |
| 376 | ||
| 19511 | 377 | fun prep_axiom t = | 
| 378 | (case Term.add_tfrees t [] of | |
| 24964 | 379 | [(a, S)] => check_constraint (a, S) | 
| 380 | | [] => () | |
| 39133 
70d3915c92f0
pretty printing: prefer regular Proof.context over Pretty.pp, which is mostly for special bootstrap purposes involving theory merge, for example;
 wenzelm parents: 
38383diff
changeset | 381 |       | _ => error ("Multiple type variables in class axiom:\n" ^ Syntax.string_of_term ctxt t);
 | 
| 24964 | 382 | t | 
| 383 | |> Term.map_types (Term.map_atyps (fn TFree _ => Term.aT [] | U => U)) | |
| 384 | |> Logic.close_form); | |
| 19511 | 385 | |
| 24681 | 386 | val axiomss = map (map (prep_axiom o Sign.cert_prop thy) o snd) raw_specs; | 
| 22745 | 387 | val name_atts = map fst raw_specs; | 
| 19511 | 388 | |
| 389 | ||
| 390 | (* definition *) | |
| 391 | ||
| 35854 | 392 | val conjs = Logic.mk_of_sort (Term.aT [], super) @ flat axiomss; | 
| 19511 | 393 | val class_eq = | 
| 31943 
5e960a0780a2
renamed inclass/Inclass to of_class/OfClass, in accordance to of_sort;
 wenzelm parents: 
31904diff
changeset | 394 | Logic.mk_equals (Logic.mk_of_class (Term.aT [], class), Logic.mk_conjunction_balanced conjs); | 
| 19511 | 395 | |
| 396 | val ([def], def_thy) = | |
| 397 | thy | |
| 398 | |> Sign.primitive_class (bclass, super) | |
| 39557 
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
 wenzelm parents: 
39134diff
changeset | 399 | |> Global_Theory.add_defs false [((Thm.def_binding bconst, class_eq), [])]; | 
| 19511 | 400 | val (raw_intro, (raw_classrel, raw_axioms)) = | 
| 23421 | 401 | split_defined (length conjs) def ||> chop (length super); | 
| 19392 | 402 | |
| 19418 
03b01c9314fc
reworded add_axclass(_i): canonical specification format,
 wenzelm parents: 
19405diff
changeset | 403 | |
| 19511 | 404 | (* facts *) | 
| 405 | ||
| 406 | val class_triv = Thm.class_triv def_thy class; | |
| 407 | val ([(_, [intro]), (_, classrel), (_, axioms)], facts_thy) = | |
| 408 | def_thy | |
| 35201 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 409 | |> Sign.qualified_path true bconst | 
| 39557 
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
 wenzelm parents: 
39134diff
changeset | 410 | |> Global_Theory.note_thmss "" | 
| 36326 | 411 | [((Binding.name "intro", []), [([Drule.export_without_context raw_intro], [])]), | 
| 412 | ((Binding.name "super", []), [(map Drule.export_without_context raw_classrel, [])]), | |
| 413 | ((Binding.name "axioms", []), | |
| 35021 
c839a4c670c6
renamed old-style Drule.standard to Drule.export_without_context, to emphasize that this is in no way a standard operation;
 wenzelm parents: 
34259diff
changeset | 414 | [(map (fn th => Drule.export_without_context (class_triv RS th)) raw_axioms, [])])] | 
| 27691 
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
 haftmann parents: 
27683diff
changeset | 415 | ||> Sign.restore_naming def_thy; | 
| 19511 | 416 | |
| 24847 | 417 | |
| 19511 | 418 | (* result *) | 
| 419 | ||
| 67628 | 420 | val axclass = | 
| 421 | make_axclass | |
| 422 | (Thm.trim_context def, Thm.trim_context intro, map Thm.trim_context axioms, params); | |
| 70456 
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
 wenzelm parents: 
70455diff
changeset | 423 | |
| 19511 | 424 | val result_thy = | 
| 425 | facts_thy | |
| 70456 
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
 wenzelm parents: 
70455diff
changeset | 426 | |> fold (fn th => Thm.add_classrel (class_triv RS th)) classrel | 
| 35201 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 427 | |> Sign.qualified_path false bconst | 
| 39557 
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
 wenzelm parents: 
39134diff
changeset | 428 | |> Global_Theory.note_thmss "" (name_atts ~~ map Thm.simple_fact (unflat axiomss axioms)) | 
| 
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
 wenzelm parents: 
39134diff
changeset | 429 | |> #2 | 
| 19511 | 430 | |> Sign.restore_naming facts_thy | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 431 | |> map_axclasses (Symtab.update (class, axclass)) | 
| 42389 | 432 | |> map_params (fold (fn (x, _) => add_param ctxt (x, class)) params); | 
| 19511 | 433 | |
| 434 | in (class, result_thy) end; | |
| 435 | ||
| 436 | ||
| 19531 | 437 | |
| 19511 | 438 | (** axiomatizations **) | 
| 439 | ||
| 440 | local | |
| 441 | ||
| 36417 | 442 | (*old-style axioms*) | 
| 56941 
952833323c99
tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
 wenzelm parents: 
56144diff
changeset | 443 | fun add_axioms prep mk name add raw_args thy = | 
| 20628 | 444 | let | 
| 445 | val args = prep thy raw_args; | |
| 446 | val specs = mk args; | |
| 447 | val names = name args; | |
| 29579 | 448 | in | 
| 449 | thy | |
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 450 | |> fold_map Thm.add_axiom_global (map Binding.name names ~~ specs) | 
| 37249 | 451 | |-> fold (add o Drule.export_without_context o snd) | 
| 29579 | 452 | end; | 
| 19511 | 453 | |
| 61255 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61247diff
changeset | 454 | fun class_const_dep c = | 
| 61256 | 455 | ((Defs.Const, Logic.const_of_class c), [Term.aT []]); | 
| 61255 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61247diff
changeset | 456 | |
| 55385 
169e12bbf9a3
discontinued axiomatic 'classes', 'classrel', 'arities';
 wenzelm parents: 
54931diff
changeset | 457 | in | 
| 
169e12bbf9a3
discontinued axiomatic 'classes', 'classrel', 'arities';
 wenzelm parents: 
54931diff
changeset | 458 | |
| 56941 
952833323c99
tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
 wenzelm parents: 
56144diff
changeset | 459 | val classrel_axiomatization = | 
| 
952833323c99
tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
 wenzelm parents: 
56144diff
changeset | 460 | add_axioms (map o cert_classrel) (map Logic.mk_classrel) | 
| 55385 
169e12bbf9a3
discontinued axiomatic 'classes', 'classrel', 'arities';
 wenzelm parents: 
54931diff
changeset | 461 | (map (prefix classrel_prefix o Logic.name_classrel)) add_classrel; | 
| 
169e12bbf9a3
discontinued axiomatic 'classes', 'classrel', 'arities';
 wenzelm parents: 
54931diff
changeset | 462 | |
| 56941 
952833323c99
tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
 wenzelm parents: 
56144diff
changeset | 463 | val arity_axiomatization = | 
| 
952833323c99
tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
 wenzelm parents: 
56144diff
changeset | 464 | add_axioms (Proof_Context.cert_arity o Proof_Context.init_global) Logic.mk_arities | 
| 55385 
169e12bbf9a3
discontinued axiomatic 'classes', 'classrel', 'arities';
 wenzelm parents: 
54931diff
changeset | 465 | (map (prefix arity_prefix) o Logic.name_arities) add_arity; | 
| 
169e12bbf9a3
discontinued axiomatic 'classes', 'classrel', 'arities';
 wenzelm parents: 
54931diff
changeset | 466 | |
| 56941 
952833323c99
tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
 wenzelm parents: 
56144diff
changeset | 467 | fun class_axiomatization (bclass, raw_super) thy = | 
| 19511 | 468 | let | 
| 30344 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 wenzelm parents: 
30280diff
changeset | 469 | val class = Sign.full_name thy bclass; | 
| 55385 
169e12bbf9a3
discontinued axiomatic 'classes', 'classrel', 'arities';
 wenzelm parents: 
54931diff
changeset | 470 | val super = map (Sign.certify_class thy) raw_super |> Sign.minimize_sort thy; | 
| 19511 | 471 | in | 
| 472 | thy | |
| 473 | |> Sign.primitive_class (bclass, super) | |
| 56941 
952833323c99
tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
 wenzelm parents: 
56144diff
changeset | 474 | |> classrel_axiomatization (map (fn c => (class, c)) super) | 
| 61255 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61247diff
changeset | 475 | |> Theory.add_deps_global "" (class_const_dep class) (map class_const_dep super) | 
| 19511 | 476 | end; | 
| 477 | ||
| 478 | end; | |
| 479 | ||
| 480 | end; |