| author | wenzelm | 
| Tue, 28 Aug 2012 20:16:11 +0200 | |
| changeset 48989 | 06c0e350782c | 
| parent 44338 | 700008399ee5 | 
| child 50760 | eee13361ec0a | 
| 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 | |
| 
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
 wenzelm parents: diff
changeset | 8 | signature AX_CLASS = | 
| 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 thynames_of_arity: theory -> class * string -> string list | |
| 15 | val param_of_inst: theory -> string * string -> string | |
| 16 | val inst_of_param: theory -> string -> (string * string) option | |
| 17 | val unoverload: theory -> thm -> thm | |
| 18 | val overload: theory -> thm -> thm | |
| 19 | val unoverload_conv: theory -> conv | |
| 20 | val overload_conv: theory -> conv | |
| 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 | |
| 24589 | 29 | val prove_classrel: class * class -> tactic -> theory -> theory | 
| 30 | val prove_arity: string * sort list * sort -> tactic -> theory -> theory | |
| 36427 | 31 | val define_class: binding * class list -> string list -> | 
| 32 | (Thm.binding * term list) list -> theory -> class * theory | |
| 30344 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 wenzelm parents: 
30280diff
changeset | 33 | val axiomatize_class: binding * class list -> theory -> theory | 
| 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 wenzelm parents: 
30280diff
changeset | 34 | val axiomatize_class_cmd: binding * xstring list -> theory -> theory | 
| 24929 
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
 wenzelm parents: 
24920diff
changeset | 35 | val axiomatize_classrel: (class * class) list -> theory -> theory | 
| 
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
 wenzelm parents: 
24920diff
changeset | 36 | val axiomatize_classrel_cmd: (xstring * xstring) list -> theory -> theory | 
| 
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
 wenzelm parents: 
24920diff
changeset | 37 | val axiomatize_arity: arity -> theory -> theory | 
| 
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
 wenzelm parents: 
24920diff
changeset | 38 | val axiomatize_arity_cmd: xstring * string list * string -> theory -> theory | 
| 3938 | 39 | end; | 
| 404 
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
 wenzelm parents: diff
changeset | 40 | |
| 15801 | 41 | structure AxClass: AX_CLASS = | 
| 404 
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
 wenzelm parents: diff
changeset | 42 | struct | 
| 
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
 wenzelm parents: diff
changeset | 43 | |
| 19405 | 44 | (** theory data **) | 
| 423 | 45 | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 46 | (* axclass info *) | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 47 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 48 | type info = | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 49 |  {def: thm,
 | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 50 | intro: thm, | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 51 | axioms: thm list, | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 52 | params: (string * typ) list}; | 
| 
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 | fun make_axclass (def, intro, axioms, params): info = | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 55 |   {def = def, intro = intro, axioms = axioms, params = params};
 | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 56 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 57 | |
| 19405 | 58 | (* class parameters (canonical order) *) | 
| 423 | 59 | |
| 19405 | 60 | type param = string * class; | 
| 423 | 61 | |
| 42389 | 62 | fun add_param ctxt ((x, c): param) params = | 
| 19405 | 63 | (case AList.lookup (op =) params x of | 
| 64 | NONE => (x, c) :: params | |
| 42383 
0ae4ad40d7b5
simplified pretty printing context, which is only required for certain kernel operations;
 wenzelm parents: 
42375diff
changeset | 65 | | SOME c' => | 
| 42389 | 66 |       error ("Duplicate class parameter " ^ quote x ^ " for " ^ Syntax.string_of_sort ctxt [c] ^
 | 
| 67 | (if c = c' then "" else " and " ^ Syntax.string_of_sort ctxt [c']))); | |
| 423 | 68 | |
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 69 | |
| 19511 | 70 | (* setup data *) | 
| 19392 | 71 | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 72 | datatype data = Data of | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 73 |  {axclasses: info Symtab.table,
 | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 74 | 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 | 75 | 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 | 76 | 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 | 77 | (*arity theorems with theory name*) | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 78 | inst_params: | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 79 | (string * thm) Symtab.table Symtab.table * | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 80 | (*constant name ~> type constructor ~> (constant name, equation)*) | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 81 | (string * string) Symtab.table (*constant name ~> (constant name, type constructor)*), | 
| 36420 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 82 | diff_classrels: (class * class) list}; | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 83 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 84 | fun make_data | 
| 36420 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 85 | (axclasses, params, proven_classrels, proven_arities, inst_params, diff_classrels) = | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 86 |   Data {axclasses = axclasses, params = params, proven_classrels = proven_classrels,
 | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 87 | proven_arities = proven_arities, inst_params = inst_params, | 
| 36420 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 88 | diff_classrels = diff_classrels}; | 
| 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 89 | |
| 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 90 | fun diff_table tab1 tab2 = | 
| 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 91 | Symreltab.fold (fn (x, _) => if Symreltab.defined tab2 x then I else cons x) tab1 []; | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 92 | |
| 36327 | 93 | structure Data = Theory_Data_PP | 
| 22846 | 94 | ( | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 95 | type T = data; | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 96 | val empty = | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 97 | make_data (Symtab.empty, [], Symreltab.empty, Symtab.empty, (Symtab.empty, Symtab.empty), []); | 
| 19574 | 98 | val extend = I; | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 99 | fun merge pp | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 100 |       (Data {axclasses = axclasses1, params = params1, proven_classrels = proven_classrels1,
 | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 101 | proven_arities = proven_arities1, inst_params = inst_params1, | 
| 36420 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 102 | diff_classrels = diff_classrels1}, | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 103 |        Data {axclasses = axclasses2, params = params2, proven_classrels = proven_classrels2,
 | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 104 | proven_arities = proven_arities2, inst_params = inst_params2, | 
| 36420 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 105 | diff_classrels = diff_classrels2}) = | 
| 36325 | 106 | let | 
| 42389 | 107 | val ctxt = Syntax.init_pretty pp; | 
| 108 | ||
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 109 | val axclasses' = Symtab.merge (K true) (axclasses1, axclasses2); | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 110 | val params' = | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 111 | if null params1 then params2 | 
| 42389 | 112 | else | 
| 113 | fold_rev (fn p => if member (op =) params1 p then I else add_param ctxt p) | |
| 114 | params2 params1; | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 115 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 116 | (*transitive closure of classrels and arity completion is done in Theory.at_begin hook*) | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 117 | val proven_classrels' = Symreltab.join (K #1) (proven_classrels1, proven_classrels2); | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 118 | val proven_arities' = | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 119 | Symtab.join (K (Library.merge (eq_fst op =))) (proven_arities1, proven_arities2); | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 120 | |
| 36420 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 121 | val diff_classrels' = | 
| 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 122 | diff_table proven_classrels1 proven_classrels2 @ | 
| 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 123 | diff_table proven_classrels2 proven_classrels1 @ | 
| 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 124 | diff_classrels1 @ diff_classrels2; | 
| 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 | val inst_params' = | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 127 | (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 | 128 | Symtab.merge (K true) (#2 inst_params1, #2 inst_params2)); | 
| 36325 | 129 | in | 
| 36420 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 130 | make_data | 
| 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 131 | (axclasses', params', proven_classrels', proven_arities', inst_params', diff_classrels') | 
| 36325 | 132 | end; | 
| 22846 | 133 | ); | 
| 6379 | 134 | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 135 | fun map_data f = | 
| 36420 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 136 |   Data.map (fn Data {axclasses, params, proven_classrels, proven_arities, inst_params, diff_classrels} =>
 | 
| 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 137 | make_data (f (axclasses, params, proven_classrels, proven_arities, inst_params, diff_classrels))); | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 138 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 139 | fun map_axclasses f = | 
| 36420 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 140 | map_data (fn (axclasses, params, proven_classrels, proven_arities, inst_params, diff_classrels) => | 
| 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 141 | (f axclasses, params, proven_classrels, proven_arities, inst_params, diff_classrels)); | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 142 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 143 | fun map_params f = | 
| 36420 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 144 | map_data (fn (axclasses, params, proven_classrels, proven_arities, inst_params, diff_classrels) => | 
| 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 145 | (axclasses, f params, proven_classrels, proven_arities, inst_params, diff_classrels)); | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 146 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 147 | fun map_proven_classrels f = | 
| 36420 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 148 | map_data (fn (axclasses, params, proven_classrels, proven_arities, inst_params, diff_classrels) => | 
| 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 149 | (axclasses, params, f proven_classrels, proven_arities, inst_params, diff_classrels)); | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 150 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 151 | fun map_proven_arities f = | 
| 36420 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 152 | map_data (fn (axclasses, params, proven_classrels, proven_arities, inst_params, diff_classrels) => | 
| 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 153 | (axclasses, params, proven_classrels, f proven_arities, inst_params, diff_classrels)); | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 154 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 155 | fun map_inst_params f = | 
| 36420 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 156 | map_data (fn (axclasses, params, proven_classrels, proven_arities, inst_params, diff_classrels) => | 
| 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 157 | (axclasses, params, proven_classrels, proven_arities, f inst_params, diff_classrels)); | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 158 | |
| 36420 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 159 | val clear_diff_classrels = | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 160 | map_data (fn (axclasses, params, proven_classrels, proven_arities, inst_params, _) => | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 161 | (axclasses, params, proven_classrels, proven_arities, inst_params, [])); | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 162 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 163 | 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 | 164 | |
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 165 | val axclasses_of = #axclasses o rep_data; | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 166 | val params_of = #params o rep_data; | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 167 | 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 | 168 | 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 | 169 | val inst_params_of = #inst_params o rep_data; | 
| 36420 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 170 | val diff_classrels_of = #diff_classrels o rep_data; | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 171 | |
| 6379 | 172 | |
| 36346 | 173 | (* axclasses with parameters *) | 
| 19392 | 174 | |
| 24929 
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
 wenzelm parents: 
24920diff
changeset | 175 | fun get_info thy c = | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 176 | (case Symtab.lookup (axclasses_of thy) c of | 
| 36327 | 177 | SOME info => info | 
| 21919 | 178 |   | NONE => error ("No such axclass: " ^ quote c));
 | 
| 6379 | 179 | |
| 36327 | 180 | fun all_params_of thy S = | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 181 | let val params = params_of thy; | 
| 36327 | 182 | in fold (fn (x, c) => if Sign.subsort thy (S, [c]) then cons x else I) params [] end; | 
| 19460 | 183 | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 184 | fun class_of_param thy = AList.lookup (op =) (params_of thy); | 
| 19460 | 185 | |
| 21919 | 186 | |
| 19511 | 187 | (* maintain instances *) | 
| 19503 | 188 | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 189 | val classrel_prefix = "classrel_"; | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 190 | val arity_prefix = "arity_"; | 
| 25486 | 191 | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 192 | fun instance_name (a, c) = Long_Name.base_name c ^ "_" ^ Long_Name.base_name a; | 
| 19528 | 193 | |
| 194 | ||
| 36421 
066e35d1c0d7
tuned classrel completion -- bypass composition with reflexive edges;
 wenzelm parents: 
36420diff
changeset | 195 | infix 0 RSO; | 
| 
066e35d1c0d7
tuned classrel completion -- bypass composition with reflexive edges;
 wenzelm parents: 
36420diff
changeset | 196 | |
| 36456 | 197 | fun (SOME a) RSO (SOME b) = SOME (a RS b) | 
| 198 | | x RSO NONE = x | |
| 199 | | NONE RSO y = y; | |
| 36421 
066e35d1c0d7
tuned classrel completion -- bypass composition with reflexive edges;
 wenzelm parents: 
36420diff
changeset | 200 | |
| 19574 | 201 | fun the_classrel thy (c1, c2) = | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 202 | (case Symreltab.lookup (proven_classrels_of thy) (c1, c2) of | 
| 36881 
4de023c28a84
the_classrel/the_arity: avoid Thm.transfer for proofterm version -- theory might already have become stale within the proof_body future;
 wenzelm parents: 
36768diff
changeset | 203 | SOME thm => thm | 
| 24920 | 204 |   | NONE => error ("Unproven class relation " ^
 | 
| 42360 | 205 | Syntax.string_of_classrel (Proof_Context.init_global thy) [c1, c2])); (* FIXME stale thy (!?) *) | 
| 19574 | 206 | |
| 36325 | 207 | fun put_trancl_classrel ((c1, c2), th) thy = | 
| 208 | let | |
| 36328 
4d9deabf6474
replaced Sorts.rep_algebra by slightly more abstract selectors classes_of/arities_of;
 wenzelm parents: 
36327diff
changeset | 209 | val classes = Sorts.classes_of (Sign.classes_of thy); | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 210 | val classrels = proven_classrels_of thy; | 
| 36325 | 211 | |
| 212 | fun reflcl_classrel (c1', c2') = | |
| 36881 
4de023c28a84
the_classrel/the_arity: avoid Thm.transfer for proofterm version -- theory might already have become stale within the proof_body future;
 wenzelm parents: 
36768diff
changeset | 213 | if c1' = c2' then NONE else SOME (Thm.transfer thy (the_classrel thy (c1', c2'))); | 
| 36325 | 214 | fun gen_classrel (c1_pred, c2_succ) = | 
| 215 | let | |
| 36421 
066e35d1c0d7
tuned classrel completion -- bypass composition with reflexive edges;
 wenzelm parents: 
36420diff
changeset | 216 | val th' = | 
| 
066e35d1c0d7
tuned classrel completion -- bypass composition with reflexive edges;
 wenzelm parents: 
36420diff
changeset | 217 | the ((reflcl_classrel (c1_pred, c1) RSO SOME th) RSO reflcl_classrel (c2, c2_succ)) | 
| 
066e35d1c0d7
tuned classrel completion -- bypass composition with reflexive edges;
 wenzelm parents: 
36420diff
changeset | 218 | |> Drule.instantiate' [SOME (ctyp_of thy (TVar ((Name.aT, 0), [])))] [] | 
| 36327 | 219 | |> 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 | 220 | in ((c1_pred, c2_succ), th') end; | 
| 36325 | 221 | |
| 36327 | 222 | val new_classrels = | 
| 44338 
700008399ee5
refined Graph implementation: more abstract/scalable Graph.Keys instead of plain lists -- order of adjacency is now standardized wrt. Key.ord;
 wenzelm parents: 
43329diff
changeset | 223 | Library.map_product pair | 
| 
700008399ee5
refined Graph implementation: more abstract/scalable Graph.Keys instead of plain lists -- order of adjacency is now standardized wrt. Key.ord;
 wenzelm parents: 
43329diff
changeset | 224 | (c1 :: Graph.immediate_preds classes c1) | 
| 
700008399ee5
refined Graph implementation: more abstract/scalable Graph.Keys instead of plain lists -- order of adjacency is now standardized wrt. Key.ord;
 wenzelm parents: 
43329diff
changeset | 225 | (c2 :: Graph.immediate_succs classes c2) | 
| 36421 
066e35d1c0d7
tuned classrel completion -- bypass composition with reflexive edges;
 wenzelm parents: 
36420diff
changeset | 226 | |> filter_out ((op =) orf Symreltab.defined classrels) | 
| 36327 | 227 | |> map gen_classrel; | 
| 228 | val needed = not (null new_classrels); | |
| 36325 | 229 | in | 
| 230 | (needed, | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 231 | if needed then map_proven_classrels (fold Symreltab.update new_classrels) thy | 
| 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 232 | else thy) | 
| 36325 | 233 | end; | 
| 234 | ||
| 235 | fun complete_classrels thy = | |
| 236 | let | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 237 | val classrels = proven_classrels_of thy; | 
| 36420 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 238 | val diff_classrels = diff_classrels_of thy; | 
| 36325 | 239 | val (needed, thy') = (false, thy) |> | 
| 36417 | 240 | fold (fn rel => fn (needed, thy) => | 
| 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 | 241 | put_trancl_classrel (rel, Symreltab.lookup classrels rel |> the) thy | 
| 36325 | 242 | |>> (fn b => needed orelse b)) | 
| 36420 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 243 | diff_classrels; | 
| 36325 | 244 | in | 
| 36420 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 245 | if null diff_classrels then NONE | 
| 
66fd989c8e15
tuned diff_classrels -- avoid slightly inefficient Symreltab.keys;
 wenzelm parents: 
36419diff
changeset | 246 | else SOME (clear_diff_classrels thy') | 
| 36325 | 247 | end; | 
| 19503 | 248 | |
| 249 | ||
| 36740 | 250 | fun the_arity thy (a, Ss, c) = | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 251 | (case AList.lookup (op =) (Symtab.lookup_list (proven_arities_of thy) a) (c, Ss) of | 
| 36881 
4de023c28a84
the_classrel/the_arity: avoid Thm.transfer for proofterm version -- theory might already have become stale within the proof_body future;
 wenzelm parents: 
36768diff
changeset | 252 | SOME (thm, _) => thm | 
| 24920 | 253 |   | NONE => error ("Unproven type arity " ^
 | 
| 42360 | 254 | Syntax.string_of_arity (Proof_Context.init_global thy) (a, Ss, [c]))); (* FIXME stale thy (!?) *) | 
| 19503 | 255 | |
| 33172 | 256 | fun thynames_of_arity thy (c, a) = | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 257 | 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 | 258 | |> map_filter (fn ((c', _), (_, name)) => if c = c' then SOME name else NONE) | 
| 27497 | 259 | |> rev; | 
| 27397 | 260 | |
| 36419 
7aea10d10113
tuned aritiy completion -- slightly less intermediate data structures;
 wenzelm parents: 
36418diff
changeset | 261 | fun insert_arity_completions thy t ((c, Ss), ((th, thy_name))) (finished, arities) = | 
| 27547 | 262 | let | 
| 263 | val algebra = Sign.classes_of thy; | |
| 36417 | 264 | val ars = Symtab.lookup_list arities t; | 
| 33172 | 265 | val super_class_completions = | 
| 266 | Sign.super_classes thy c | |
| 36417 | 267 | |> filter_out (fn c1 => exists (fn ((c2, Ss2), _) => | 
| 268 | c1 = c2 andalso Sorts.sorts_le algebra (Ss2, Ss)) ars); | |
| 269 | ||
| 43329 
84472e198515
tuned signature: Name.invent and Name.invent_names;
 wenzelm parents: 
42389diff
changeset | 270 | val names = Name.invent Name.context Name.aT (length Ss); | 
| 36417 | 271 | val std_vars = map (fn a => SOME (ctyp_of thy (TVar ((a, 0), [])))) names; | 
| 272 | ||
| 36325 | 273 | val completions = super_class_completions |> map (fn c1 => | 
| 274 | let | |
| 36419 
7aea10d10113
tuned aritiy completion -- slightly less intermediate data structures;
 wenzelm parents: 
36418diff
changeset | 275 | val th1 = | 
| 36881 
4de023c28a84
the_classrel/the_arity: avoid Thm.transfer for proofterm version -- theory might already have become stale within the proof_body future;
 wenzelm parents: 
36768diff
changeset | 276 | (th RS Thm.transfer thy (the_classrel thy (c, c1))) | 
| 36417 | 277 | |> Drule.instantiate' std_vars [] | 
| 36327 | 278 | |> 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 | 279 | in ((th1, thy_name), c1) end); | 
| 36419 
7aea10d10113
tuned aritiy completion -- slightly less intermediate data structures;
 wenzelm parents: 
36418diff
changeset | 280 | |
| 
7aea10d10113
tuned aritiy completion -- slightly less intermediate data structures;
 wenzelm parents: 
36418diff
changeset | 281 | 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 | 282 | 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 | 283 | in (finished', arities') end; | 
| 19503 | 284 | |
| 27547 | 285 | fun put_arity ((t, Ss, c), th) thy = | 
| 36419 
7aea10d10113
tuned aritiy completion -- slightly less intermediate data structures;
 wenzelm parents: 
36418diff
changeset | 286 | let val ar = ((c, Ss), (th, Context.theory_name thy)) in | 
| 27547 | 287 | thy | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 288 | |> map_proven_arities | 
| 36419 
7aea10d10113
tuned aritiy completion -- slightly less intermediate data structures;
 wenzelm parents: 
36418diff
changeset | 289 | (Symtab.insert_list (eq_fst op =) (t, ar) #> | 
| 
7aea10d10113
tuned aritiy completion -- slightly less intermediate data structures;
 wenzelm parents: 
36418diff
changeset | 290 | curry (insert_arity_completions thy t ar) true #> #2) | 
| 27547 | 291 | end; | 
| 19503 | 292 | |
| 31944 | 293 | fun complete_arities thy = | 
| 27547 | 294 | let | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 295 | val arities = proven_arities_of thy; | 
| 36419 
7aea10d10113
tuned aritiy completion -- slightly less intermediate data structures;
 wenzelm parents: 
36418diff
changeset | 296 | val (finished, arities') = | 
| 
7aea10d10113
tuned aritiy completion -- slightly less intermediate data structures;
 wenzelm parents: 
36418diff
changeset | 297 | Symtab.fold (fn (t, ars) => fold (insert_arity_completions thy t) ars) arities (true, arities); | 
| 33172 | 298 | in | 
| 36419 
7aea10d10113
tuned aritiy completion -- slightly less intermediate data structures;
 wenzelm parents: 
36418diff
changeset | 299 | if finished then NONE | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 300 | else SOME (map_proven_arities (K arities') thy) | 
| 27547 | 301 | end; | 
| 302 | ||
| 36325 | 303 | val _ = Context.>> (Context.map_theory | 
| 36740 | 304 | (Theory.at_begin complete_classrels #> | 
| 305 | Theory.at_begin complete_arities)); | |
| 27397 | 306 | |
| 36740 | 307 | val _ = Proofterm.install_axclass_proofs | 
| 308 |   {classrel_proof = Thm.proof_of oo the_classrel,
 | |
| 309 | 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 | 310 | |
| 27397 | 311 | |
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 312 | (* maintain instance parameters *) | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 313 | |
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 314 | fun get_inst_param thy (c, tyco) = | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 315 | (case Symtab.lookup (the_default Symtab.empty (Symtab.lookup (#1 (inst_params_of thy)) c)) tyco of | 
| 36327 | 316 | SOME c' => c' | 
| 317 |   | 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 | 318 | |
| 36327 | 319 | fun add_inst_param (c, tyco) inst = | 
| 320 | (map_inst_params o apfst o Symtab.map_default (c, Symtab.empty)) (Symtab.update_new (tyco, inst)) | |
| 36417 | 321 | #> (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 | 322 | |
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 323 | val inst_of_param = Symtab.lookup o #2 o inst_params_of; | 
| 36417 | 324 | 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 | 325 | |
| 36327 | 326 | fun inst_thms thy = | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 327 | Symtab.fold (Symtab.fold (cons o #2 o #2) o #2) (#1 (inst_params_of thy)) []; | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 328 | |
| 36417 | 329 | 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 | 330 | |
| 41228 
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
 wenzelm parents: 
39557diff
changeset | 331 | fun unoverload thy = Raw_Simplifier.simplify true (inst_thms thy); | 
| 
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
 wenzelm parents: 
39557diff
changeset | 332 | fun overload thy = Raw_Simplifier.simplify true (map Thm.symmetric (inst_thms thy)); | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 333 | |
| 41228 
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
 wenzelm parents: 
39557diff
changeset | 334 | fun unoverload_conv thy = Raw_Simplifier.rewrite true (inst_thms thy); | 
| 
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
 wenzelm parents: 
39557diff
changeset | 335 | fun overload_conv thy = Raw_Simplifier.rewrite true (map Thm.symmetric (inst_thms thy)); | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 336 | |
| 36327 | 337 | fun lookup_inst_param consts params (c, T) = | 
| 338 | (case get_inst_tyco consts (c, T) of | |
| 339 | SOME tyco => AList.lookup (op =) params (c, tyco) | |
| 340 | | NONE => NONE); | |
| 31249 | 341 | |
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 342 | fun unoverload_const thy (c_ty as (c, _)) = | 
| 36327 | 343 | if is_some (class_of_param thy c) then | 
| 344 | (case get_inst_tyco (Sign.consts_of thy) c_ty of | |
| 345 | SOME tyco => try (param_of_inst thy) (c, tyco) |> the_default c | |
| 346 | | NONE => c) | |
| 33969 | 347 | else c; | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 348 | |
| 404 
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
 wenzelm parents: diff
changeset | 349 | |
| 36327 | 350 | |
| 19511 | 351 | (** instances **) | 
| 19418 
03b01c9314fc
reworded add_axclass(_i): canonical specification format,
 wenzelm parents: 
19405diff
changeset | 352 | |
| 
03b01c9314fc
reworded add_axclass(_i): canonical specification format,
 wenzelm parents: 
19405diff
changeset | 353 | (* class relations *) | 
| 
03b01c9314fc
reworded add_axclass(_i): canonical specification format,
 wenzelm parents: 
19405diff
changeset | 354 | |
| 19405 | 355 | 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 | 356 | let | 
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26516diff
changeset | 357 | val string_of_sort = Syntax.string_of_sort_global thy; | 
| 19405 | 358 | val (c1, c2) = pairself (Sign.certify_class thy) raw_rel; | 
| 24271 | 359 | val _ = Sign.primitive_classrel (c1, c2) (Theory.copy thy); | 
| 19405 | 360 | val _ = | 
| 19460 | 361 | (case subtract (op =) (all_params_of thy [c1]) (all_params_of thy [c2]) of | 
| 19405 | 362 | [] => () | 
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26516diff
changeset | 363 |       | 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 | 364 | commas_quote xs ^ " of " ^ string_of_sort [c2], [], [])); | 
| 19405 | 365 | in (c1, c2) end; | 
| 366 | ||
| 367 | fun read_classrel thy raw_rel = | |
| 42360 | 368 | cert_classrel thy (pairself (Proof_Context.read_class (Proof_Context.init_global thy)) raw_rel) | 
| 19405 | 369 | handle TYPE (msg, _, _) => error msg; | 
| 370 | ||
| 371 | ||
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 372 | (* declaration and definition of instances of overloaded constants *) | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 373 | |
| 35201 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 374 | fun inst_tyco_of thy (c, T) = | 
| 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 375 | (case get_inst_tyco (Sign.consts_of thy) (c, T) of | 
| 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 376 | SOME tyco => tyco | 
| 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 377 |   | NONE => error ("Illegal type for instantiation of class parameter: " ^
 | 
| 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 378 | quote (c ^ " :: " ^ Syntax.string_of_typ_global thy T))); | 
| 31249 | 379 | |
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 380 | fun declare_overloaded (c, T) thy = | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 381 | let | 
| 35201 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 382 | val class = | 
| 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 383 | (case class_of_param thy c of | 
| 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 384 | SOME class => class | 
| 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 385 |       | NONE => error ("Not a class parameter: " ^ quote c));
 | 
| 31249 | 386 | val tyco = inst_tyco_of thy (c, T); | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 387 | val name_inst = instance_name (tyco, class) ^ "_inst"; | 
| 36417 | 388 | val c' = instance_name (tyco, c); | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 389 | val T' = Type.strip_sorts T; | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 390 | in | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 391 | thy | 
| 35201 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 392 | |> Sign.qualified_path true (Binding.name name_inst) | 
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 393 | |> 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 | 394 | |-> (fn const' as Const (c'', _) => | 
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 395 | Thm.add_def_global false true | 
| 30344 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 wenzelm parents: 
30280diff
changeset | 396 | (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 | 397 | #>> apsnd Thm.varifyT_global | 
| 
19deea200358
Thm.add_axiom/add_def: return internal name of foundational axiom;
 wenzelm parents: 
35961diff
changeset | 398 | #-> (fn (_, thm) => add_inst_param (c, tyco) (c'', thm) | 
| 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_thm ((Binding.conceal (Binding.name c'), thm), []) | 
| 36417 | 400 | #> #2 | 
| 36106 
19deea200358
Thm.add_axiom/add_def: return internal name of foundational axiom;
 wenzelm parents: 
35961diff
changeset | 401 | #> pair (Const (c, T)))) | 
| 35201 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 402 | ||> Sign.restore_naming thy | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 403 | end; | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 404 | |
| 30519 
c05c0199826f
coherent binding policy with primitive target operations
 haftmann parents: 
30469diff
changeset | 405 | fun define_overloaded b (c, t) thy = | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 406 | let | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 407 | val T = Term.fastype_of t; | 
| 31249 | 408 | val tyco = inst_tyco_of thy (c, T); | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 409 | val (c', eq) = get_inst_param thy (c, tyco); | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 410 | val prop = Logic.mk_equals (Const (c', T), t); | 
| 36417 | 411 | 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 | 412 | in | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 413 | thy | 
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 414 | |> Thm.add_def_global false false (b', prop) | 
| 38383 | 415 | |>> (fn (_, thm) => Drule.transitive_thm OF [eq, thm]) | 
| 25597 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 416 | end; | 
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 417 | |
| 
34860182b250
moved instance parameter management from class.ML to axclass.ML
 haftmann parents: 
25486diff
changeset | 418 | |
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 419 | (* primitive rules *) | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 420 | |
| 37249 | 421 | fun add_classrel raw_th thy = | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 422 | let | 
| 31948 
ea8c8bf47ce3
add_classrel/arity: strip_shyps of stored result;
 wenzelm parents: 
31944diff
changeset | 423 | val th = Thm.strip_shyps (Thm.transfer thy raw_th); | 
| 
ea8c8bf47ce3
add_classrel/arity: strip_shyps of stored result;
 wenzelm parents: 
31944diff
changeset | 424 | val prop = Thm.plain_prop_of th; | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 425 |     fun err () = raise THM ("add_classrel: malformed class relation", 0, [th]);
 | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 426 | val rel = Logic.dest_classrel prop handle TERM _ => err (); | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 427 | val (c1, c2) = cert_classrel thy rel handle TYPE _ => err (); | 
| 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 | val (th', thy') = Global_Theory.store_thm | 
| 37249 | 429 | (Binding.name (prefix classrel_prefix (Logic.name_classrel (c1, c2))), th) thy; | 
| 37232 
c10fb22a5e0c
classrel and arity theorems are now stored under proper name in theory. add_arity and
 berghofe parents: 
36935diff
changeset | 430 | val th'' = th' | 
| 36934 
ae0809cff6f0
normalize atyp names after unconstrainT, which may rename atyps arbitrarily;
 krauss parents: 
36881diff
changeset | 431 | |> Thm.unconstrainT | 
| 37232 
c10fb22a5e0c
classrel and arity theorems are now stored under proper name in theory. add_arity and
 berghofe parents: 
36935diff
changeset | 432 | |> Drule.instantiate' [SOME (ctyp_of thy' (TVar ((Name.aT, 0), [])))] []; | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 433 | in | 
| 37232 
c10fb22a5e0c
classrel and arity theorems are now stored under proper name in theory. add_arity and
 berghofe parents: 
36935diff
changeset | 434 | thy' | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 435 | |> Sign.primitive_classrel (c1, c2) | 
| 37232 
c10fb22a5e0c
classrel and arity theorems are now stored under proper name in theory. add_arity and
 berghofe parents: 
36935diff
changeset | 436 | |> (#2 oo put_trancl_classrel) ((c1, c2), th'') | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 437 | |> perhaps complete_arities | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 438 | end; | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 439 | |
| 37249 | 440 | fun add_arity raw_th thy = | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 441 | let | 
| 31948 
ea8c8bf47ce3
add_classrel/arity: strip_shyps of stored result;
 wenzelm parents: 
31944diff
changeset | 442 | val th = Thm.strip_shyps (Thm.transfer thy raw_th); | 
| 
ea8c8bf47ce3
add_classrel/arity: strip_shyps of stored result;
 wenzelm parents: 
31944diff
changeset | 443 | val prop = Thm.plain_prop_of th; | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 444 |     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 | 445 | 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 | 446 | |
| 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 | 447 | val (th', thy') = Global_Theory.store_thm | 
| 37249 | 448 | (Binding.name (prefix arity_prefix (Logic.name_arity arity)), th) thy; | 
| 36417 | 449 | |
| 43329 
84472e198515
tuned signature: Name.invent and Name.invent_names;
 wenzelm parents: 
42389diff
changeset | 450 | val args = Name.invent_names Name.context Name.aT Ss; | 
| 36417 | 451 | val T = Type (t, map TFree args); | 
| 37232 
c10fb22a5e0c
classrel and arity theorems are now stored under proper name in theory. add_arity and
 berghofe parents: 
36935diff
changeset | 452 | val std_vars = map (fn (a, S) => SOME (ctyp_of thy' (TVar ((a, 0), [])))) args; | 
| 36417 | 453 | |
| 37232 
c10fb22a5e0c
classrel and arity theorems are now stored under proper name in theory. add_arity and
 berghofe parents: 
36935diff
changeset | 454 | 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 | 455 | |> 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 | 456 | |> 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 | 457 | |> (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 | 458 | val th'' = th' | 
| 36934 
ae0809cff6f0
normalize atyp names after unconstrainT, which may rename atyps arbitrarily;
 krauss parents: 
36881diff
changeset | 459 | |> Thm.unconstrainT | 
| 
ae0809cff6f0
normalize atyp names after unconstrainT, which may rename atyps arbitrarily;
 krauss parents: 
36881diff
changeset | 460 | |> Drule.instantiate' std_vars []; | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 461 | in | 
| 37232 
c10fb22a5e0c
classrel and arity theorems are now stored under proper name in theory. add_arity and
 berghofe parents: 
36935diff
changeset | 462 | thy' | 
| 36417 | 463 | |> fold (#2 oo declare_overloaded) missing_params | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 464 | |> Sign.primitive_arity (t, Ss, [c]) | 
| 37232 
c10fb22a5e0c
classrel and arity theorems are now stored under proper name in theory. add_arity and
 berghofe parents: 
36935diff
changeset | 465 | |> put_arity ((t, Ss, c), th'') | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 466 | end; | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 467 | |
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 468 | |
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 469 | (* tactical proofs *) | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 470 | |
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 471 | fun prove_classrel raw_rel tac thy = | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 472 | let | 
| 42360 | 473 | val ctxt = Proof_Context.init_global thy; | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 474 | val (c1, c2) = cert_classrel thy raw_rel; | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 475 | val th = Goal.prove ctxt [] [] (Logic.mk_classrel (c1, c2)) (K tac) handle ERROR msg => | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 476 |       cat_error msg ("The error(s) above occurred while trying to prove class relation " ^
 | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 477 | quote (Syntax.string_of_classrel ctxt [c1, c2])); | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 478 | in | 
| 37249 | 479 | thy |> add_classrel th | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 480 | end; | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 481 | |
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 482 | fun prove_arity raw_arity tac thy = | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 483 | let | 
| 42360 | 484 | val ctxt = Proof_Context.init_global thy; | 
| 485 | val arity = Proof_Context.cert_arity ctxt raw_arity; | |
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 486 | val names = map (prefix arity_prefix) (Logic.name_arities arity); | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 487 | val props = Logic.mk_arities arity; | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 488 | val ths = Goal.prove_multi ctxt [] [] props | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 489 | (fn _ => Goal.precise_conjunction_tac (length props) 1 THEN tac) handle ERROR msg => | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 490 |         cat_error msg ("The error(s) above occurred while trying to prove type arity " ^
 | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 491 | quote (Syntax.string_of_arity ctxt arity)); | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 492 | in | 
| 37249 | 493 | thy |> fold add_arity ths | 
| 30951 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 494 | end; | 
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 495 | |
| 
a6e26a248f03
formal declaration of undefined parameters after class instantiation
 haftmann parents: 
30519diff
changeset | 496 | |
| 19511 | 497 | |
| 498 | (** class definitions **) | |
| 499 | ||
| 23421 | 500 | fun split_defined n eq = | 
| 501 | let | |
| 502 | val intro = | |
| 503 | (eq RS Drule.equal_elim_rule2) | |
| 504 | |> Conjunction.curry_balanced n | |
| 505 | |> n = 0 ? Thm.eq_assumption 1; | |
| 506 | val dests = | |
| 507 | if n = 0 then [] | |
| 508 | else | |
| 509 | (eq RS Drule.equal_elim_rule1) | |
| 32765 | 510 | |> Balanced_Tree.dest (fn th => | 
| 23421 | 511 | (th RS Conjunction.conjunctionD1, th RS Conjunction.conjunctionD2)) n; | 
| 512 | in (intro, dests) end; | |
| 513 | ||
| 24964 | 514 | fun define_class (bclass, raw_super) raw_params raw_specs thy = | 
| 19511 | 515 | 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 | 516 | val ctxt = Syntax.init_pretty_global thy; | 
| 19511 | 517 | |
| 518 | ||
| 24964 | 519 | (* class *) | 
| 19511 | 520 | |
| 30344 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 wenzelm parents: 
30280diff
changeset | 521 | 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 | 522 | val class = Sign.full_name thy bclass; | 
| 24731 | 523 | val super = Sign.minimize_sort thy (Sign.certify_sort thy raw_super); | 
| 19511 | 524 | |
| 24964 | 525 | fun check_constraint (a, S) = | 
| 526 | if Sign.subsort thy (super, S) then () | |
| 527 |       else error ("Sort constraint of type variable " ^
 | |
| 39134 
917b4b6ba3d2
turned show_sorts/show_types into proper configuration options;
 wenzelm parents: 
39133diff
changeset | 528 | 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 | 529 | " needs to be weaker than " ^ Syntax.string_of_sort ctxt super); | 
| 24964 | 530 | |
| 531 | ||
| 532 | (* params *) | |
| 533 | ||
| 534 | val params = raw_params |> map (fn p => | |
| 535 | let | |
| 536 | val T = Sign.the_const_type thy p; | |
| 537 | val _ = | |
| 538 | (case Term.add_tvarsT T [] of | |
| 539 | [((a, _), S)] => check_constraint (a, S) | |
| 540 |           | _ => error ("Exactly one type variable expected in class parameter " ^ quote p));
 | |
| 541 | val T' = Term.map_type_tvar (fn _ => TFree (Name.aT, [class])) T; | |
| 542 | in (p, T') end); | |
| 543 | ||
| 544 | ||
| 545 | (* axioms *) | |
| 546 | ||
| 19511 | 547 | fun prep_axiom t = | 
| 548 | (case Term.add_tfrees t [] of | |
| 24964 | 549 | [(a, S)] => check_constraint (a, S) | 
| 550 | | [] => () | |
| 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 | 551 |       | _ => error ("Multiple type variables in class axiom:\n" ^ Syntax.string_of_term ctxt t);
 | 
| 24964 | 552 | t | 
| 553 | |> Term.map_types (Term.map_atyps (fn TFree _ => Term.aT [] | U => U)) | |
| 554 | |> Logic.close_form); | |
| 19511 | 555 | |
| 24681 | 556 | val axiomss = map (map (prep_axiom o Sign.cert_prop thy) o snd) raw_specs; | 
| 22745 | 557 | val name_atts = map fst raw_specs; | 
| 19511 | 558 | |
| 559 | ||
| 560 | (* definition *) | |
| 561 | ||
| 35854 | 562 | val conjs = Logic.mk_of_sort (Term.aT [], super) @ flat axiomss; | 
| 19511 | 563 | val class_eq = | 
| 31943 
5e960a0780a2
renamed inclass/Inclass to of_class/OfClass, in accordance to of_sort;
 wenzelm parents: 
31904diff
changeset | 564 | Logic.mk_equals (Logic.mk_of_class (Term.aT [], class), Logic.mk_conjunction_balanced conjs); | 
| 19511 | 565 | |
| 566 | val ([def], def_thy) = | |
| 567 | thy | |
| 568 | |> 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 | 569 | |> Global_Theory.add_defs false [((Thm.def_binding bconst, class_eq), [])]; | 
| 19511 | 570 | val (raw_intro, (raw_classrel, raw_axioms)) = | 
| 23421 | 571 | split_defined (length conjs) def ||> chop (length super); | 
| 19392 | 572 | |
| 19418 
03b01c9314fc
reworded add_axclass(_i): canonical specification format,
 wenzelm parents: 
19405diff
changeset | 573 | |
| 19511 | 574 | (* facts *) | 
| 575 | ||
| 576 | val class_triv = Thm.class_triv def_thy class; | |
| 577 | val ([(_, [intro]), (_, classrel), (_, axioms)], facts_thy) = | |
| 578 | def_thy | |
| 35201 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 579 | |> 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 | 580 | |> Global_Theory.note_thmss "" | 
| 36326 | 581 | [((Binding.name "intro", []), [([Drule.export_without_context raw_intro], [])]), | 
| 582 | ((Binding.name "super", []), [(map Drule.export_without_context raw_classrel, [])]), | |
| 583 | ((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 | 584 | [(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 | 585 | ||> Sign.restore_naming def_thy; | 
| 19511 | 586 | |
| 24847 | 587 | |
| 19511 | 588 | (* result *) | 
| 589 | ||
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 590 | val axclass = make_axclass (def, intro, axioms, params); | 
| 19511 | 591 | val result_thy = | 
| 592 | facts_thy | |
| 36417 | 593 | |> fold (#2 oo put_trancl_classrel) (map (pair class) super ~~ classrel) | 
| 35201 
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
 wenzelm parents: 
35021diff
changeset | 594 | |> 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 | 595 | |> 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 | 596 | |> #2 | 
| 19511 | 597 | |> Sign.restore_naming facts_thy | 
| 36329 
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
 wenzelm parents: 
36328diff
changeset | 598 | |> map_axclasses (Symtab.update (class, axclass)) | 
| 42389 | 599 | |> map_params (fold (fn (x, _) => add_param ctxt (x, class)) params); | 
| 19511 | 600 | |
| 601 | in (class, result_thy) end; | |
| 602 | ||
| 603 | ||
| 19531 | 604 | |
| 19511 | 605 | (** axiomatizations **) | 
| 606 | ||
| 607 | local | |
| 608 | ||
| 36417 | 609 | (*old-style axioms*) | 
| 20628 | 610 | fun axiomatize prep mk name add raw_args thy = | 
| 611 | let | |
| 612 | val args = prep thy raw_args; | |
| 613 | val specs = mk args; | |
| 614 | val names = name args; | |
| 29579 | 615 | in | 
| 616 | thy | |
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 617 | |> fold_map Thm.add_axiom_global (map Binding.name names ~~ specs) | 
| 37249 | 618 | |-> fold (add o Drule.export_without_context o snd) | 
| 29579 | 619 | end; | 
| 19511 | 620 | |
| 621 | fun ax_classrel prep = | |
| 20628 | 622 | axiomatize (map o prep) (map Logic.mk_classrel) | 
| 37249 | 623 | (map (prefix classrel_prefix o Logic.name_classrel)) add_classrel; | 
| 19511 | 624 | |
| 625 | fun ax_arity prep = | |
| 42360 | 626 | axiomatize (prep o Proof_Context.init_global) Logic.mk_arities | 
| 37249 | 627 | (map (prefix arity_prefix) o Logic.name_arities) add_arity; | 
| 19511 | 628 | |
| 19706 | 629 | fun class_const c = | 
| 630 | (Logic.const_of_class c, Term.itselfT (Term.aT []) --> propT); | |
| 631 | ||
| 19511 | 632 | fun ax_class prep_class prep_classrel (bclass, raw_super) thy = | 
| 633 | let | |
| 30344 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 wenzelm parents: 
30280diff
changeset | 634 | val class = Sign.full_name thy bclass; | 
| 24731 | 635 | val super = map (prep_class thy) raw_super |> Sign.minimize_sort thy; | 
| 19511 | 636 | in | 
| 637 | thy | |
| 638 | |> Sign.primitive_class (bclass, super) | |
| 639 | |> ax_classrel prep_classrel (map (fn c => (class, c)) super) | |
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 640 | |> Theory.add_deps_global "" (class_const class) (map class_const super) | 
| 19511 | 641 | end; | 
| 642 | ||
| 643 | in | |
| 644 | ||
| 24929 
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
 wenzelm parents: 
24920diff
changeset | 645 | val axiomatize_class = ax_class Sign.certify_class cert_classrel; | 
| 42375 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 646 | val axiomatize_class_cmd = | 
| 
774df7c59508
report Name_Space.declare/define, relatively to context;
 wenzelm parents: 
42360diff
changeset | 647 | ax_class (Proof_Context.read_class o Proof_Context.init_global) read_classrel; | 
| 24929 
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
 wenzelm parents: 
24920diff
changeset | 648 | val axiomatize_classrel = ax_classrel cert_classrel; | 
| 
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
 wenzelm parents: 
24920diff
changeset | 649 | val axiomatize_classrel_cmd = ax_classrel read_classrel; | 
| 42360 | 650 | val axiomatize_arity = ax_arity Proof_Context.cert_arity; | 
| 651 | val axiomatize_arity_cmd = ax_arity Proof_Context.read_arity; | |
| 19511 | 652 | |
| 653 | end; | |
| 654 | ||
| 655 | end; |