| author | wenzelm | 
| Sun, 29 Jan 2017 13:43:17 +0100 | |
| changeset 64964 | a0c985a57f7e | 
| parent 63073 | 413184c7a2a2 | 
| child 67628 | bea024ea14ae | 
| 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 | |
| 54931 
88cf06038e37
uniform orientation of instances as (type constructor, type class)
 haftmann parents: 
54742diff
changeset | 14 | val thynames_of_arity: theory -> string * class -> string list | 
| 36427 | 15 | val param_of_inst: theory -> string * string -> string | 
| 16 | val inst_of_param: theory -> string -> (string * string) option | |
| 63073 
413184c7a2a2
clarified context, notably for internal use of Simplifier;
 wenzelm parents: 
62897diff
changeset | 17 | val unoverload: Proof.context -> thm -> thm | 
| 
413184c7a2a2
clarified context, notably for internal use of Simplifier;
 wenzelm parents: 
62897diff
changeset | 18 | val overload: Proof.context -> thm -> thm | 
| 
413184c7a2a2
clarified context, notably for internal use of Simplifier;
 wenzelm parents: 
62897diff
changeset | 19 | val unoverload_conv: Proof.context -> conv | 
| 
413184c7a2a2
clarified context, notably for internal use of Simplifier;
 wenzelm parents: 
62897diff
changeset | 20 | val overload_conv: Proof.context -> conv | 
| 36427 | 21 | val lookup_inst_param: Consts.T -> ((string * string) * 'a) list -> string * typ -> 'a option | 
| 22 | val unoverload_const: theory -> string * typ -> string | |
| 23 | val cert_classrel: theory -> class * class -> class * class | |
| 24 | val read_classrel: theory -> xstring * xstring -> class * class | |
| 25 | val declare_overloaded: string * typ -> theory -> term * theory | |
| 26 | val define_overloaded: binding -> string * term -> theory -> thm * theory | |
| 37246 | 27 | val add_classrel: thm -> theory -> theory | 
| 28 | val add_arity: thm -> theory -> theory | |
| 51671 | 29 | val prove_classrel: class * class -> (Proof.context -> tactic) -> theory -> theory | 
| 30 | val prove_arity: string * sort list * sort -> (Proof.context -> tactic) -> theory -> theory | |
| 36427 | 31 | val define_class: binding * class list -> string list -> | 
| 32 | (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 | 33 | 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 | 34 | 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 | 35 | val class_axiomatization: binding * class list -> theory -> theory | 
| 3938 | 36 | end; | 
| 404 
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
 wenzelm parents: diff
changeset | 37 | |
| 51685 
385ef6706252
more standard module name Axclass (according to file name);
 wenzelm parents: 
51671diff
changeset | 38 | structure Axclass: AXCLASS = | 
| 404 
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
 wenzelm parents: diff
changeset | 39 | struct | 
| 
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
 wenzelm parents: diff
changeset | 40 | |
| 19405 | 41 | (** theory data **) | 
| 423 | 42 | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 43 | (* axclass info *) | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 44 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 45 | type info = | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 46 |  {def: thm,
 | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 47 | intro: thm, | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 48 | axioms: thm list, | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 49 | params: (string * typ) list}; | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 50 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 51 | fun make_axclass (def, intro, axioms, params): info = | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 52 |   {def = def, intro = intro, axioms = axioms, params = params};
 | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 53 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 54 | |
| 19405 | 55 | (* class parameters (canonical order) *) | 
| 423 | 56 | |
| 19405 | 57 | type param = string * class; | 
| 423 | 58 | |
| 42389 | 59 | fun add_param ctxt ((x, c): param) params = | 
| 19405 | 60 | (case AList.lookup (op =) params x of | 
| 61 | NONE => (x, c) :: params | |
| 42383 
0ae4ad40d7b5
simplified pretty printing context, which is only required for certain kernel operations;
 wenzelm parents: 
42375diff
changeset | 62 | | SOME c' => | 
| 42389 | 63 |       error ("Duplicate class parameter " ^ quote x ^ " for " ^ Syntax.string_of_sort ctxt [c] ^
 | 
| 64 | (if c = c' then "" else " and " ^ Syntax.string_of_sort ctxt [c']))); | |
| 423 | 65 | |
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 66 | |
| 19511 | 67 | (* setup data *) | 
| 19392 | 68 | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 69 | datatype data = Data of | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 70 |  {axclasses: info Symtab.table,
 | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 71 | params: param list, | 
| 36418 
752ee03427c2
clarified proven results: store thm only and retrieve proof later via Thm.proof_of (this may also impact parallelism, because internal join_proofs is deferred);
 wenzelm parents: 
36417diff
changeset | 72 | proven_classrels: thm Symreltab.table, | 
| 
752ee03427c2
clarified proven results: store thm only and retrieve proof later via Thm.proof_of (this may also impact parallelism, because internal join_proofs is deferred);
 wenzelm parents: 
36417diff
changeset | 73 | proven_arities: ((class * sort list) * (thm * string)) list Symtab.table, | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 74 | (*arity theorems with theory name*) | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 75 | inst_params: | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 76 | (string * thm) Symtab.table Symtab.table * | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 77 | (*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 | 78 | (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 | 79 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 80 | fun make_data | 
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 81 | (axclasses, params, proven_classrels, proven_arities, inst_params) = | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 82 |   Data {axclasses = axclasses, params = params, proven_classrels = proven_classrels,
 | 
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 83 | proven_arities = proven_arities, inst_params = inst_params}; | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 84 | |
| 61262 
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
 wenzelm parents: 
61256diff
changeset | 85 | structure Data = Theory_Data' | 
| 22846 | 86 | ( | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 87 | type T = data; | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 88 | val empty = | 
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 89 | make_data (Symtab.empty, [], Symreltab.empty, Symtab.empty, (Symtab.empty, Symtab.empty)); | 
| 19574 | 90 | val extend = I; | 
| 61262 
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
 wenzelm parents: 
61256diff
changeset | 91 | fun merge old_thys | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 92 |       (Data {axclasses = axclasses1, params = params1, proven_classrels = proven_classrels1,
 | 
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 93 | proven_arities = proven_arities1, inst_params = inst_params1}, | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 94 |        Data {axclasses = axclasses2, params = params2, proven_classrels = proven_classrels2,
 | 
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 95 | proven_arities = proven_arities2, inst_params = inst_params2}) = | 
| 36325 | 96 | let | 
| 61262 
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
 wenzelm parents: 
61256diff
changeset | 97 | val old_ctxt = Syntax.init_pretty_global (fst old_thys); | 
| 42389 | 98 | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 99 | val axclasses' = Symtab.merge (K true) (axclasses1, axclasses2); | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 100 | val params' = | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 101 | if null params1 then params2 | 
| 42389 | 102 | else | 
| 61262 
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
 wenzelm parents: 
61256diff
changeset | 103 | fold_rev (fn p => if member (op =) params1 p then I else add_param old_ctxt p) | 
| 42389 | 104 | params2 params1; | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 105 | |
| 50760 | 106 | (*see Theory.at_begin hook for transitive closure of classrels and arity completion*) | 
| 50768 
2172f82de515
tuned -- prefer high-level Table.merge with its slightly more conservative update;
 wenzelm parents: 
50764diff
changeset | 107 | val proven_classrels' = Symreltab.merge (K true) (proven_classrels1, proven_classrels2); | 
| 
2172f82de515
tuned -- prefer high-level Table.merge with its slightly more conservative update;
 wenzelm parents: 
50764diff
changeset | 108 | val proven_arities' = Symtab.merge_list (eq_fst op =) (proven_arities1, proven_arities2); | 
| 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 | val inst_params' = | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 111 | (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 | 112 | Symtab.merge (K true) (#2 inst_params1, #2 inst_params2)); | 
| 36325 | 113 | in | 
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 114 | make_data (axclasses', params', proven_classrels', proven_arities', inst_params') | 
| 36325 | 115 | end; | 
| 22846 | 116 | ); | 
| 6379 | 117 | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 118 | fun map_data f = | 
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 119 |   Data.map (fn Data {axclasses, params, proven_classrels, proven_arities, inst_params} =>
 | 
| 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 120 | make_data (f (axclasses, params, proven_classrels, proven_arities, inst_params))); | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 121 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 122 | fun map_axclasses f = | 
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 123 | map_data (fn (axclasses, params, proven_classrels, proven_arities, inst_params) => | 
| 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 124 | (f axclasses, params, proven_classrels, proven_arities, inst_params)); | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 125 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 126 | fun map_params f = | 
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 127 | map_data (fn (axclasses, params, proven_classrels, proven_arities, inst_params) => | 
| 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 128 | (axclasses, f params, proven_classrels, proven_arities, inst_params)); | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 129 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 130 | fun map_proven_classrels f = | 
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 131 | map_data (fn (axclasses, params, proven_classrels, proven_arities, inst_params) => | 
| 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 132 | (axclasses, params, f proven_classrels, proven_arities, inst_params)); | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 133 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 134 | fun map_proven_arities f = | 
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 135 | map_data (fn (axclasses, params, proven_classrels, proven_arities, inst_params) => | 
| 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 136 | (axclasses, params, proven_classrels, f proven_arities, inst_params)); | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 137 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 138 | fun map_inst_params f = | 
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 139 | map_data (fn (axclasses, params, proven_classrels, proven_arities, inst_params) => | 
| 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 140 | (axclasses, params, proven_classrels, proven_arities, f inst_params)); | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 141 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 142 | val rep_data = Data.get #> (fn Data args => args); | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 143 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 144 | val axclasses_of = #axclasses o rep_data; | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 145 | val params_of = #params o rep_data; | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 146 | val proven_classrels_of = #proven_classrels o rep_data; | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 147 | val proven_arities_of = #proven_arities o rep_data; | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 148 | val inst_params_of = #inst_params o rep_data; | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 149 | |
| 6379 | 150 | |
| 36346 | 151 | (* axclasses with parameters *) | 
| 19392 | 152 | |
| 24929 
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
 wenzelm parents: 
24920diff
changeset | 153 | fun get_info thy c = | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 154 | (case Symtab.lookup (axclasses_of thy) c of | 
| 36327 | 155 | SOME info => info | 
| 21919 | 156 |   | NONE => error ("No such axclass: " ^ quote c));
 | 
| 6379 | 157 | |
| 36327 | 158 | fun all_params_of thy S = | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 159 | let val params = params_of thy; | 
| 36327 | 160 | in fold (fn (x, c) => if Sign.subsort thy (S, [c]) then cons x else I) params [] end; | 
| 19460 | 161 | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 162 | fun class_of_param thy = AList.lookup (op =) (params_of thy); | 
| 19460 | 163 | |
| 21919 | 164 | |
| 19511 | 165 | (* maintain instances *) | 
| 19503 | 166 | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 167 | val classrel_prefix = "classrel_"; | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 168 | val arity_prefix = "arity_"; | 
| 25486 | 169 | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 170 | fun instance_name (a, c) = Long_Name.base_name c ^ "_" ^ Long_Name.base_name a; | 
| 19528 | 171 | |
| 172 | ||
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 173 | val update_classrel = map_proven_classrels o Symreltab.update; | 
| 36421 
066e35d1c0d7
tuned classrel completion -- bypass composition with reflexive edges;
 wenzelm parents: 
36420diff
changeset | 174 | |
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 175 | val is_classrel = Symreltab.defined o proven_classrels_of; | 
| 36421 
066e35d1c0d7
tuned classrel completion -- bypass composition with reflexive edges;
 wenzelm parents: 
36420diff
changeset | 176 | |
| 19574 | 177 | fun the_classrel thy (c1, c2) = | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 178 | (case Symreltab.lookup (proven_classrels_of thy) (c1, c2) of | 
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 179 | SOME thm => Thm.transfer thy thm | 
| 24920 | 180 |   | NONE => error ("Unproven class relation " ^
 | 
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 181 | Syntax.string_of_classrel (Proof_Context.init_global thy) [c1, c2])); | 
| 36325 | 182 | |
| 183 | fun complete_classrels thy = | |
| 184 | let | |
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 185 | fun complete (c, (_, (all_preds, all_succs))) (finished1, thy1) = | 
| 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 186 | let | 
| 50769 | 187 | fun compl c1 c2 (finished2, thy2) = | 
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 188 | if is_classrel thy2 (c1, c2) then (finished2, thy2) | 
| 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 189 | else | 
| 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 190 | (false, | 
| 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 191 | thy2 | 
| 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 192 | |> update_classrel ((c1, c2), | 
| 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 193 | (the_classrel thy2 (c1, c) RS the_classrel thy2 (c, c2)) | 
| 60801 | 194 | |> Thm.instantiate' [SOME (Thm.global_ctyp_of thy2 (TVar ((Name.aT, 0), [])))] [] | 
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 195 | |> Thm.close_derivation)); | 
| 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 196 | |
| 50769 | 197 | val proven = is_classrel thy1; | 
| 198 | val preds = Graph.Keys.fold (fn c1 => proven (c1, c) ? cons c1) all_preds []; | |
| 199 | val succs = Graph.Keys.fold (fn c2 => proven (c, c2) ? cons c2) all_succs []; | |
| 200 | in | |
| 201 | fold_product compl preds succs (finished1, thy1) | |
| 202 | end; | |
| 36325 | 203 | in | 
| 50769 | 204 | (case Graph.fold complete (Sorts.classes_of (Sign.classes_of thy)) (true, thy) of | 
| 205 | (true, _) => NONE | |
| 206 | | (_, thy') => SOME thy') | |
| 36325 | 207 | end; | 
| 19503 | 208 | |
| 209 | ||
| 36740 | 210 | fun the_arity thy (a, Ss, c) = | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 211 | (case AList.lookup (op =) (Symtab.lookup_list (proven_arities_of thy) a) (c, Ss) of | 
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 212 | SOME (thm, _) => Thm.transfer thy thm | 
| 24920 | 213 |   | NONE => error ("Unproven type arity " ^
 | 
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 214 | Syntax.string_of_arity (Proof_Context.init_global thy) (a, Ss, [c]))); | 
| 19503 | 215 | |
| 54931 
88cf06038e37
uniform orientation of instances as (type constructor, type class)
 haftmann parents: 
54742diff
changeset | 216 | fun thynames_of_arity thy (a, c) = | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 217 | Symtab.lookup_list (proven_arities_of thy) a | 
| 36418 
752ee03427c2
clarified proven results: store thm only and retrieve proof later via Thm.proof_of (this may also impact parallelism, because internal join_proofs is deferred);
 wenzelm parents: 
36417diff
changeset | 218 | |> map_filter (fn ((c', _), (_, name)) => if c = c' then SOME name else NONE) | 
| 27497 | 219 | |> rev; | 
| 27397 | 220 | |
| 36419 
7aea10d10113
tuned aritiy completion -- slightly less intermediate data structures;
 wenzelm parents: 
36418diff
changeset | 221 | fun insert_arity_completions thy t ((c, Ss), ((th, thy_name))) (finished, arities) = | 
| 27547 | 222 | let | 
| 223 | val algebra = Sign.classes_of thy; | |
| 36417 | 224 | val ars = Symtab.lookup_list arities t; | 
| 33172 | 225 | val super_class_completions = | 
| 226 | Sign.super_classes thy c | |
| 36417 | 227 | |> filter_out (fn c1 => exists (fn ((c2, Ss2), _) => | 
| 228 | c1 = c2 andalso Sorts.sorts_le algebra (Ss2, Ss)) ars); | |
| 229 | ||
| 43329 
84472e198515
tuned signature: Name.invent and Name.invent_names;
 wenzelm parents: 
42389diff
changeset | 230 | val names = Name.invent Name.context Name.aT (length Ss); | 
| 59621 
291934bac95e
Thm.cterm_of and Thm.ctyp_of operate on local context;
 wenzelm parents: 
59582diff
changeset | 231 | val std_vars = map (fn a => SOME (Thm.global_ctyp_of thy (TVar ((a, 0), [])))) names; | 
| 36417 | 232 | |
| 36325 | 233 | val completions = super_class_completions |> map (fn c1 => | 
| 234 | let | |
| 36419 
7aea10d10113
tuned aritiy completion -- slightly less intermediate data structures;
 wenzelm parents: 
36418diff
changeset | 235 | val th1 = | 
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 236 | (th RS the_classrel thy (c, c1)) | 
| 60801 | 237 | |> Thm.instantiate' std_vars [] | 
| 36327 | 238 | |> Thm.close_derivation; | 
| 36418 
752ee03427c2
clarified proven results: store thm only and retrieve proof later via Thm.proof_of (this may also impact parallelism, because internal join_proofs is deferred);
 wenzelm parents: 
36417diff
changeset | 239 | in ((th1, thy_name), c1) end); | 
| 36419 
7aea10d10113
tuned aritiy completion -- slightly less intermediate data structures;
 wenzelm parents: 
36418diff
changeset | 240 | |
| 
7aea10d10113
tuned aritiy completion -- slightly less intermediate data structures;
 wenzelm parents: 
36418diff
changeset | 241 | val finished' = finished andalso null completions; | 
| 36418 
752ee03427c2
clarified proven results: store thm only and retrieve proof later via Thm.proof_of (this may also impact parallelism, because internal join_proofs is deferred);
 wenzelm parents: 
36417diff
changeset | 242 | val arities' = fold (fn (th, c1) => Symtab.cons_list (t, ((c1, Ss), th))) completions arities; | 
| 36419 
7aea10d10113
tuned aritiy completion -- slightly less intermediate data structures;
 wenzelm parents: 
36418diff
changeset | 243 | in (finished', arities') end; | 
| 19503 | 244 | |
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 245 | fun put_arity_completion ((t, Ss, c), th) thy = | 
| 36419 
7aea10d10113
tuned aritiy completion -- slightly less intermediate data structures;
 wenzelm parents: 
36418diff
changeset | 246 | let val ar = ((c, Ss), (th, Context.theory_name thy)) in | 
| 27547 | 247 | thy | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 248 | |> map_proven_arities | 
| 36419 
7aea10d10113
tuned aritiy completion -- slightly less intermediate data structures;
 wenzelm parents: 
36418diff
changeset | 249 | (Symtab.insert_list (eq_fst op =) (t, ar) #> | 
| 
7aea10d10113
tuned aritiy completion -- slightly less intermediate data structures;
 wenzelm parents: 
36418diff
changeset | 250 | curry (insert_arity_completions thy t ar) true #> #2) | 
| 27547 | 251 | end; | 
| 19503 | 252 | |
| 31944 | 253 | fun complete_arities thy = | 
| 27547 | 254 | let | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 255 | val arities = proven_arities_of thy; | 
| 36419 
7aea10d10113
tuned aritiy completion -- slightly less intermediate data structures;
 wenzelm parents: 
36418diff
changeset | 256 | val (finished, arities') = | 
| 50769 | 257 | Symtab.fold (fn (t, ars) => fold (insert_arity_completions thy t) ars) | 
| 258 | arities (true, arities); | |
| 33172 | 259 | in | 
| 36419 
7aea10d10113
tuned aritiy completion -- slightly less intermediate data structures;
 wenzelm parents: 
36418diff
changeset | 260 | if finished then NONE | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 261 | else SOME (map_proven_arities (K arities') thy) | 
| 27547 | 262 | end; | 
| 263 | ||
| 62897 
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
 wenzelm parents: 
61262diff
changeset | 264 | val _ = | 
| 
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
 wenzelm parents: 
61262diff
changeset | 265 | Theory.setup | 
| 
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
 wenzelm parents: 
61262diff
changeset | 266 | (Theory.at_begin complete_classrels #> | 
| 
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
 wenzelm parents: 
61262diff
changeset | 267 | Theory.at_begin complete_arities #> | 
| 
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
 wenzelm parents: 
61262diff
changeset | 268 | Proofterm.install_axclass_proofs | 
| 
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
 wenzelm parents: 
61262diff
changeset | 269 |      {classrel_proof = Thm.proof_of oo the_classrel,
 | 
| 
8093203f0b89
prefer regular context update, to allow continuous editing of Pure;
 wenzelm parents: 
61262diff
changeset | 270 | arity_proof = Thm.proof_of oo the_arity}); | 
| 36418 
752ee03427c2
clarified proven results: store thm only and retrieve proof later via Thm.proof_of (this may also impact parallelism, because internal join_proofs is deferred);
 wenzelm parents: 
36417diff
changeset | 271 | |
| 27397 | 272 | |
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 273 | (* maintain instance parameters *) | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 274 | |
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 275 | fun get_inst_param thy (c, tyco) = | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 276 | (case Symtab.lookup (the_default Symtab.empty (Symtab.lookup (#1 (inst_params_of thy)) c)) tyco of | 
| 36327 | 277 | SOME c' => c' | 
| 278 |   | 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 | 279 | |
| 36327 | 280 | fun add_inst_param (c, tyco) inst = | 
| 281 | (map_inst_params o apfst o Symtab.map_default (c, Symtab.empty)) (Symtab.update_new (tyco, inst)) | |
| 36417 | 282 | #> (map_inst_params o apsnd) (Symtab.update_new (#1 inst, (c, tyco))); | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 283 | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 284 | val inst_of_param = Symtab.lookup o #2 o inst_params_of; | 
| 36417 | 285 | 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 | 286 | |
| 63073 
413184c7a2a2
clarified context, notably for internal use of Simplifier;
 wenzelm parents: 
62897diff
changeset | 287 | fun inst_thms ctxt = | 
| 
413184c7a2a2
clarified context, notably for internal use of Simplifier;
 wenzelm parents: 
62897diff
changeset | 288 | Symtab.fold | 
| 
413184c7a2a2
clarified context, notably for internal use of Simplifier;
 wenzelm parents: 
62897diff
changeset | 289 | (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 | 290 | |
| 36417 | 291 | 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 | 292 | |
| 63073 
413184c7a2a2
clarified context, notably for internal use of Simplifier;
 wenzelm parents: 
62897diff
changeset | 293 | fun unoverload ctxt = rewrite_rule ctxt (inst_thms ctxt); | 
| 
413184c7a2a2
clarified context, notably for internal use of Simplifier;
 wenzelm parents: 
62897diff
changeset | 294 | 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 | 295 | |
| 63073 
413184c7a2a2
clarified context, notably for internal use of Simplifier;
 wenzelm parents: 
62897diff
changeset | 296 | 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 | 297 | 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 | 298 | |
| 36327 | 299 | fun lookup_inst_param consts params (c, T) = | 
| 300 | (case get_inst_tyco consts (c, T) of | |
| 301 | SOME tyco => AList.lookup (op =) params (c, tyco) | |
| 302 | | NONE => NONE); | |
| 31249 | 303 | |
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 304 | fun unoverload_const thy (c_ty as (c, _)) = | 
| 36327 | 305 | if is_some (class_of_param thy c) then | 
| 306 | (case get_inst_tyco (Sign.consts_of thy) c_ty of | |
| 307 | SOME tyco => try (param_of_inst thy) (c, tyco) |> the_default c | |
| 308 | | NONE => c) | |
| 33969 | 309 | else c; | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 310 | |
| 404 
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
 wenzelm parents: diff
changeset | 311 | |
| 36327 | 312 | |
| 19511 | 313 | (** instances **) | 
| 19418 
03b01c9314fc
reworded add_axclass(_i): canonical specification format,
 wenzelm parents: 
19405diff
changeset | 314 | |
| 
03b01c9314fc
reworded add_axclass(_i): canonical specification format,
 wenzelm parents: 
19405diff
changeset | 315 | (* class relations *) | 
| 
03b01c9314fc
reworded add_axclass(_i): canonical specification format,
 wenzelm parents: 
19405diff
changeset | 316 | |
| 19405 | 317 | 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 | 318 | let | 
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26516diff
changeset | 319 | 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 | 320 | val (c1, c2) = apply2 (Sign.certify_class thy) raw_rel; | 
| 52788 | 321 | val _ = Sign.primitive_classrel (c1, c2) thy; | 
| 19405 | 322 | val _ = | 
| 19460 | 323 | (case subtract (op =) (all_params_of thy [c1]) (all_params_of thy [c2]) of | 
| 19405 | 324 | [] => () | 
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26516diff
changeset | 325 |       | 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 | 326 | commas_quote xs ^ " of " ^ string_of_sort [c2], [], [])); | 
| 19405 | 327 | in (c1, c2) end; | 
| 328 | ||
| 329 | fun read_classrel thy raw_rel = | |
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
56941diff
changeset | 330 | cert_classrel thy (apply2 (Proof_Context.read_class (Proof_Context.init_global thy)) raw_rel) | 
| 19405 | 331 | handle TYPE (msg, _, _) => error msg; | 
| 332 | ||
| 333 | ||
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 334 | (* declaration and definition of instances of overloaded constants *) | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 335 | |
| 35201 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 336 | fun inst_tyco_of thy (c, T) = | 
| 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 337 | (case get_inst_tyco (Sign.consts_of thy) (c, T) of | 
| 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 338 | SOME tyco => tyco | 
| 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 339 |   | NONE => error ("Illegal type for instantiation of class parameter: " ^
 | 
| 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 340 | quote (c ^ " :: " ^ Syntax.string_of_typ_global thy T))); | 
| 31249 | 341 | |
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 342 | fun declare_overloaded (c, T) thy = | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 343 | let | 
| 35201 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 344 | val class = | 
| 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 345 | (case class_of_param thy c of | 
| 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 346 | SOME class => class | 
| 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 347 |       | NONE => error ("Not a class parameter: " ^ quote c));
 | 
| 31249 | 348 | val tyco = inst_tyco_of thy (c, T); | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 349 | val name_inst = instance_name (tyco, class) ^ "_inst"; | 
| 36417 | 350 | val c' = instance_name (tyco, c); | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 351 | val T' = Type.strip_sorts T; | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 352 | in | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 353 | thy | 
| 35201 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 354 | |> Sign.qualified_path true (Binding.name name_inst) | 
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 355 | |> 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 | 356 | |-> (fn const' as Const (c'', _) => | 
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 357 | Thm.add_def_global false true | 
| 30344 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 wenzelm parents: 
30280diff
changeset | 358 | (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 | 359 | #>> apsnd Thm.varifyT_global | 
| 
19deea200358
Thm.add_axiom/add_def: return internal name of foundational axiom;
 wenzelm parents: 
35961diff
changeset | 360 | #-> (fn (_, thm) => add_inst_param (c, tyco) (c'', thm) | 
| 59859 | 361 | #> Global_Theory.add_thm ((Binding.concealed (Binding.name c'), thm), []) | 
| 36417 | 362 | #> #2 | 
| 36106 
19deea200358
Thm.add_axiom/add_def: return internal name of foundational axiom;
 wenzelm parents: 
35961diff
changeset | 363 | #> pair (Const (c, T)))) | 
| 35201 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 364 | ||> Sign.restore_naming thy | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 365 | end; | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 366 | |
| 30519 
c05c0199826f
coherent binding policy with primitive target operations
 haftmann parents: 
30469diff
changeset | 367 | fun define_overloaded b (c, t) thy = | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 368 | let | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 369 | val T = Term.fastype_of t; | 
| 31249 | 370 | val tyco = inst_tyco_of thy (c, T); | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 371 | val (c', eq) = get_inst_param thy (c, tyco); | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 372 | val prop = Logic.mk_equals (Const (c', T), t); | 
| 36417 | 373 | 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 | 374 | in | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 375 | thy | 
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 376 | |> Thm.add_def_global false false (b', prop) | 
| 38383 | 377 | |>> (fn (_, thm) => Drule.transitive_thm OF [eq, thm]) | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 378 | end; | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 379 | |
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 380 | |
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 381 | (* primitive rules *) | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 382 | |
| 37249 | 383 | fun add_classrel raw_th thy = | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 384 | let | 
| 31948 
ea8c8bf47ce3
add_classrel/arity: strip_shyps of stored result;
 wenzelm parents: 
31944diff
changeset | 385 | val th = Thm.strip_shyps (Thm.transfer thy raw_th); | 
| 
ea8c8bf47ce3
add_classrel/arity: strip_shyps of stored result;
 wenzelm parents: 
31944diff
changeset | 386 | val prop = Thm.plain_prop_of th; | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 387 |     fun err () = raise THM ("add_classrel: malformed class relation", 0, [th]);
 | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 388 | val rel = Logic.dest_classrel prop handle TERM _ => err (); | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 389 | 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 | 390 | val binding = | 
| 59859 | 391 | Binding.concealed (Binding.name (prefix classrel_prefix (Logic.name_classrel (c1, c2)))); | 
| 56144 
27167f903c6d
conceal somewhat obscure internal facts, e.g. relevant for 'print_theorems', 'find_theorems';
 wenzelm parents: 
55385diff
changeset | 392 | val (th', thy') = Global_Theory.store_thm (binding, th) thy; | 
| 37232 
c10fb22a5e0c
classrel and arity theorems are now stored under proper name in theory. add_arity and
 berghofe parents: 
36935diff
changeset | 393 | val th'' = th' | 
| 36934 
ae0809cff6f0
normalize atyp names after unconstrainT, which may rename atyps arbitrarily;
 krauss parents: 
36881diff
changeset | 394 | |> Thm.unconstrainT | 
| 60801 | 395 | |> Thm.instantiate' [SOME (Thm.global_ctyp_of thy' (TVar ((Name.aT, 0), [])))] []; | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 396 | in | 
| 37232 
c10fb22a5e0c
classrel and arity theorems are now stored under proper name in theory. add_arity and
 berghofe parents: 
36935diff
changeset | 397 | thy' | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 398 | |> Sign.primitive_classrel (c1, c2) | 
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 399 | |> map_proven_classrels (Symreltab.update ((c1, c2), th'')) | 
| 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 400 | |> perhaps complete_classrels | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 401 | |> perhaps complete_arities | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 402 | end; | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 403 | |
| 37249 | 404 | fun add_arity raw_th thy = | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 405 | let | 
| 31948 
ea8c8bf47ce3
add_classrel/arity: strip_shyps of stored result;
 wenzelm parents: 
31944diff
changeset | 406 | val th = Thm.strip_shyps (Thm.transfer thy raw_th); | 
| 
ea8c8bf47ce3
add_classrel/arity: strip_shyps of stored result;
 wenzelm parents: 
31944diff
changeset | 407 | val prop = Thm.plain_prop_of th; | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 408 |     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 | 409 | 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 | 410 | |
| 56144 
27167f903c6d
conceal somewhat obscure internal facts, e.g. relevant for 'print_theorems', 'find_theorems';
 wenzelm parents: 
55385diff
changeset | 411 | val binding = | 
| 59859 | 412 | Binding.concealed (Binding.name (prefix arity_prefix (Logic.name_arity arity))); | 
| 56144 
27167f903c6d
conceal somewhat obscure internal facts, e.g. relevant for 'print_theorems', 'find_theorems';
 wenzelm parents: 
55385diff
changeset | 413 | val (th', thy') = Global_Theory.store_thm (binding, th) thy; | 
| 36417 | 414 | |
| 43329 
84472e198515
tuned signature: Name.invent and Name.invent_names;
 wenzelm parents: 
42389diff
changeset | 415 | val args = Name.invent_names Name.context Name.aT Ss; | 
| 36417 | 416 | val T = Type (t, map TFree args); | 
| 59621 
291934bac95e
Thm.cterm_of and Thm.ctyp_of operate on local context;
 wenzelm parents: 
59582diff
changeset | 417 | val std_vars = map (fn (a, S) => SOME (Thm.global_ctyp_of thy' (TVar ((a, 0), [])))) args; | 
| 36417 | 418 | |
| 37232 
c10fb22a5e0c
classrel and arity theorems are now stored under proper name in theory. add_arity and
 berghofe parents: 
36935diff
changeset | 419 | val missing_params = Sign.complete_sort thy' [c] | 
| 
c10fb22a5e0c
classrel and arity theorems are now stored under proper name in theory. add_arity and
 berghofe parents: 
36935diff
changeset | 420 | |> maps (these o Option.map #params o try (get_info thy')) | 
| 
c10fb22a5e0c
classrel and arity theorems are now stored under proper name in theory. add_arity and
 berghofe parents: 
36935diff
changeset | 421 | |> filter_out (fn (const, _) => can (get_inst_param thy') (const, t)) | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 422 | |> (map o apsnd o map_atyps) (K T); | 
| 37232 
c10fb22a5e0c
classrel and arity theorems are now stored under proper name in theory. add_arity and
 berghofe parents: 
36935diff
changeset | 423 | val th'' = th' | 
| 36934 
ae0809cff6f0
normalize atyp names after unconstrainT, which may rename atyps arbitrarily;
 krauss parents: 
36881diff
changeset | 424 | |> Thm.unconstrainT | 
| 60801 | 425 | |> Thm.instantiate' std_vars []; | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 426 | in | 
| 37232 
c10fb22a5e0c
classrel and arity theorems are now stored under proper name in theory. add_arity and
 berghofe parents: 
36935diff
changeset | 427 | thy' | 
| 36417 | 428 | |> fold (#2 oo declare_overloaded) missing_params | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 429 | |> Sign.primitive_arity (t, Ss, [c]) | 
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 430 | |> put_arity_completion ((t, Ss, c), th'') | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 431 | end; | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 432 | |
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 433 | |
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 434 | (* tactical proofs *) | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 435 | |
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 436 | fun prove_classrel raw_rel tac thy = | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 437 | let | 
| 42360 | 438 | val ctxt = Proof_Context.init_global thy; | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 439 | val (c1, c2) = cert_classrel thy raw_rel; | 
| 51671 | 440 | val th = | 
| 441 |       Goal.prove ctxt [] [] (Logic.mk_classrel (c1, c2)) (fn {context, ...} => tac context)
 | |
| 442 | handle ERROR msg => | |
| 443 |           cat_error msg ("The error(s) above occurred while trying to prove class relation " ^
 | |
| 444 | quote (Syntax.string_of_classrel ctxt [c1, c2])); | |
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 445 | in | 
| 37249 | 446 | thy |> add_classrel th | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 447 | end; | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 448 | |
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 449 | fun prove_arity raw_arity tac thy = | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 450 | let | 
| 42360 | 451 | val ctxt = Proof_Context.init_global thy; | 
| 452 | val arity = Proof_Context.cert_arity ctxt raw_arity; | |
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 453 | val names = map (prefix arity_prefix) (Logic.name_arities arity); | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 454 | val props = Logic.mk_arities arity; | 
| 51671 | 455 | val ths = | 
| 59564 
fdc03c8daacc
Goal.prove_multi is superseded by the fully general Goal.prove_common;
 wenzelm parents: 
59058diff
changeset | 456 | Goal.prove_common ctxt NONE [] [] props | 
| 51671 | 457 |       (fn {context, ...} => Goal.precise_conjunction_tac (length props) 1 THEN tac context)
 | 
| 458 | handle ERROR msg => | |
| 459 |           cat_error msg ("The error(s) above occurred while trying to prove type arity " ^
 | |
| 460 | quote (Syntax.string_of_arity ctxt arity)); | |
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 461 | in | 
| 37249 | 462 | thy |> fold add_arity ths | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 463 | end; | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 464 | |
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 465 | |
| 19511 | 466 | |
| 467 | (** class definitions **) | |
| 468 | ||
| 23421 | 469 | fun split_defined n eq = | 
| 470 | let | |
| 471 | val intro = | |
| 472 | (eq RS Drule.equal_elim_rule2) | |
| 473 | |> Conjunction.curry_balanced n | |
| 474 | |> n = 0 ? Thm.eq_assumption 1; | |
| 475 | val dests = | |
| 476 | if n = 0 then [] | |
| 477 | else | |
| 478 | (eq RS Drule.equal_elim_rule1) | |
| 32765 | 479 | |> Balanced_Tree.dest (fn th => | 
| 23421 | 480 | (th RS Conjunction.conjunctionD1, th RS Conjunction.conjunctionD2)) n; | 
| 481 | in (intro, dests) end; | |
| 482 | ||
| 24964 | 483 | fun define_class (bclass, raw_super) raw_params raw_specs thy = | 
| 19511 | 484 | 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 | 485 | val ctxt = Syntax.init_pretty_global thy; | 
| 19511 | 486 | |
| 487 | ||
| 24964 | 488 | (* class *) | 
| 19511 | 489 | |
| 30344 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 wenzelm parents: 
30280diff
changeset | 490 | 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 | 491 | val class = Sign.full_name thy bclass; | 
| 24731 | 492 | val super = Sign.minimize_sort thy (Sign.certify_sort thy raw_super); | 
| 19511 | 493 | |
| 24964 | 494 | fun check_constraint (a, S) = | 
| 495 | if Sign.subsort thy (super, S) then () | |
| 496 |       else error ("Sort constraint of type variable " ^
 | |
| 39134 
917b4b6ba3d2
turned show_sorts/show_types into proper configuration options;
 wenzelm parents: 
39133diff
changeset | 497 | 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 | 498 | " needs to be weaker than " ^ Syntax.string_of_sort ctxt super); | 
| 24964 | 499 | |
| 500 | ||
| 501 | (* params *) | |
| 502 | ||
| 503 | val params = raw_params |> map (fn p => | |
| 504 | let | |
| 505 | val T = Sign.the_const_type thy p; | |
| 506 | val _ = | |
| 507 | (case Term.add_tvarsT T [] of | |
| 508 | [((a, _), S)] => check_constraint (a, S) | |
| 509 |           | _ => error ("Exactly one type variable expected in class parameter " ^ quote p));
 | |
| 510 | val T' = Term.map_type_tvar (fn _ => TFree (Name.aT, [class])) T; | |
| 511 | in (p, T') end); | |
| 512 | ||
| 513 | ||
| 514 | (* axioms *) | |
| 515 | ||
| 19511 | 516 | fun prep_axiom t = | 
| 517 | (case Term.add_tfrees t [] of | |
| 24964 | 518 | [(a, S)] => check_constraint (a, S) | 
| 519 | | [] => () | |
| 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 | 520 |       | _ => error ("Multiple type variables in class axiom:\n" ^ Syntax.string_of_term ctxt t);
 | 
| 24964 | 521 | t | 
| 522 | |> Term.map_types (Term.map_atyps (fn TFree _ => Term.aT [] | U => U)) | |
| 523 | |> Logic.close_form); | |
| 19511 | 524 | |
| 24681 | 525 | val axiomss = map (map (prep_axiom o Sign.cert_prop thy) o snd) raw_specs; | 
| 22745 | 526 | val name_atts = map fst raw_specs; | 
| 19511 | 527 | |
| 528 | ||
| 529 | (* definition *) | |
| 530 | ||
| 35854 | 531 | val conjs = Logic.mk_of_sort (Term.aT [], super) @ flat axiomss; | 
| 19511 | 532 | val class_eq = | 
| 31943 
5e960a0780a2
renamed inclass/Inclass to of_class/OfClass, in accordance to of_sort;
 wenzelm parents: 
31904diff
changeset | 533 | Logic.mk_equals (Logic.mk_of_class (Term.aT [], class), Logic.mk_conjunction_balanced conjs); | 
| 19511 | 534 | |
| 535 | val ([def], def_thy) = | |
| 536 | thy | |
| 537 | |> 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 | 538 | |> Global_Theory.add_defs false [((Thm.def_binding bconst, class_eq), [])]; | 
| 19511 | 539 | val (raw_intro, (raw_classrel, raw_axioms)) = | 
| 23421 | 540 | split_defined (length conjs) def ||> chop (length super); | 
| 19392 | 541 | |
| 19418 
03b01c9314fc
reworded add_axclass(_i): canonical specification format,
 wenzelm parents: 
19405diff
changeset | 542 | |
| 19511 | 543 | (* facts *) | 
| 544 | ||
| 545 | val class_triv = Thm.class_triv def_thy class; | |
| 546 | val ([(_, [intro]), (_, classrel), (_, axioms)], facts_thy) = | |
| 547 | def_thy | |
| 35201 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 548 | |> 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 | 549 | |> Global_Theory.note_thmss "" | 
| 36326 | 550 | [((Binding.name "intro", []), [([Drule.export_without_context raw_intro], [])]), | 
| 551 | ((Binding.name "super", []), [(map Drule.export_without_context raw_classrel, [])]), | |
| 552 | ((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 | 553 | [(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 | 554 | ||> Sign.restore_naming def_thy; | 
| 19511 | 555 | |
| 24847 | 556 | |
| 19511 | 557 | (* result *) | 
| 558 | ||
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 559 | val axclass = make_axclass (def, intro, axioms, params); | 
| 19511 | 560 | val result_thy = | 
| 561 | facts_thy | |
| 50764 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 562 | |> map_proven_classrels | 
| 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 563 | (fold2 (fn c => fn th => Symreltab.update ((class, c), th)) super classrel) | 
| 
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
 wenzelm parents: 
50760diff
changeset | 564 | |> perhaps complete_classrels | 
| 35201 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 565 | |> 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 | 566 | |> 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 | 567 | |> #2 | 
| 19511 | 568 | |> Sign.restore_naming facts_thy | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 569 | |> map_axclasses (Symtab.update (class, axclass)) | 
| 42389 | 570 | |> map_params (fold (fn (x, _) => add_param ctxt (x, class)) params); | 
| 19511 | 571 | |
| 572 | in (class, result_thy) end; | |
| 573 | ||
| 574 | ||
| 19531 | 575 | |
| 19511 | 576 | (** axiomatizations **) | 
| 577 | ||
| 578 | local | |
| 579 | ||
| 36417 | 580 | (*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 | 581 | fun add_axioms prep mk name add raw_args thy = | 
| 20628 | 582 | let | 
| 583 | val args = prep thy raw_args; | |
| 584 | val specs = mk args; | |
| 585 | val names = name args; | |
| 29579 | 586 | in | 
| 587 | thy | |
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 588 | |> fold_map Thm.add_axiom_global (map Binding.name names ~~ specs) | 
| 37249 | 589 | |-> fold (add o Drule.export_without_context o snd) | 
| 29579 | 590 | end; | 
| 19511 | 591 | |
| 19706 | 592 | fun class_const c = | 
| 593 | (Logic.const_of_class c, Term.itselfT (Term.aT []) --> propT); | |
| 594 | ||
| 61255 
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
 wenzelm parents: 
61247diff
changeset | 595 | fun class_const_dep c = | 
| 61256 | 596 | ((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 | 597 | |
| 55385 
169e12bbf9a3
discontinued axiomatic 'classes', 'classrel', 'arities';
 wenzelm parents: 
54931diff
changeset | 598 | in | 
| 
169e12bbf9a3
discontinued axiomatic 'classes', 'classrel', 'arities';
 wenzelm parents: 
54931diff
changeset | 599 | |
| 56941 
952833323c99
tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
 wenzelm parents: 
56144diff
changeset | 600 | 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 | 601 | add_axioms (map o cert_classrel) (map Logic.mk_classrel) | 
| 55385 
169e12bbf9a3
discontinued axiomatic 'classes', 'classrel', 'arities';
 wenzelm parents: 
54931diff
changeset | 602 | (map (prefix classrel_prefix o Logic.name_classrel)) add_classrel; | 
| 
169e12bbf9a3
discontinued axiomatic 'classes', 'classrel', 'arities';
 wenzelm parents: 
54931diff
changeset | 603 | |
| 56941 
952833323c99
tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
 wenzelm parents: 
56144diff
changeset | 604 | 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 | 605 | 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 | 606 | (map (prefix arity_prefix) o Logic.name_arities) add_arity; | 
| 
169e12bbf9a3
discontinued axiomatic 'classes', 'classrel', 'arities';
 wenzelm parents: 
54931diff
changeset | 607 | |
| 56941 
952833323c99
tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
 wenzelm parents: 
56144diff
changeset | 608 | fun class_axiomatization (bclass, raw_super) thy = | 
| 19511 | 609 | let | 
| 30344 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 wenzelm parents: 
30280diff
changeset | 610 | val class = Sign.full_name thy bclass; | 
| 55385 
169e12bbf9a3
discontinued axiomatic 'classes', 'classrel', 'arities';
 wenzelm parents: 
54931diff
changeset | 611 | val super = map (Sign.certify_class thy) raw_super |> Sign.minimize_sort thy; | 
| 19511 | 612 | in | 
| 613 | thy | |
| 614 | |> 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 | 615 | |> 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 | 616 | |> Theory.add_deps_global "" (class_const_dep class) (map class_const_dep super) | 
| 19511 | 617 | end; | 
| 618 | ||
| 619 | end; | |
| 620 | ||
| 621 | end; |