| author | wenzelm |
| Wed, 09 Jul 2008 22:25:24 +0200 | |
| changeset 27512 | 217efbf7d961 |
| parent 27497 | c683836fe908 |
| child 27547 | 13199740ced6 |
| 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 |
ID: $Id$ |
|
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff
changeset
|
3 |
Author: Markus Wenzel, TU Muenchen |
|
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff
changeset
|
4 |
|
| 24964 | 5 |
Type classes defined as predicates, associated with a record of |
6 |
parameters. |
|
|
404
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 |
|
|
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff
changeset
|
9 |
signature AX_CLASS = |
| 3938 | 10 |
sig |
| 24589 | 11 |
val define_class: bstring * class list -> string list -> |
12 |
((bstring * attribute list) * term list) list -> theory -> class * theory |
|
13 |
val add_classrel: thm -> theory -> theory |
|
14 |
val add_arity: thm -> theory -> theory |
|
15 |
val prove_classrel: class * class -> tactic -> theory -> theory |
|
16 |
val prove_arity: string * sort list * sort -> tactic -> theory -> theory |
|
| 24964 | 17 |
val get_info: theory -> class -> |
18 |
{def: thm, intro: thm, axioms: thm list, params: (string * typ) list}
|
|
|
19243
5dcb899a8486
moved read_class, read/cert_classrel/arity to sign.ML;
wenzelm
parents:
19134
diff
changeset
|
19 |
val class_intros: theory -> thm list |
| 20107 | 20 |
val class_of_param: theory -> string -> class option |
| 19405 | 21 |
val cert_classrel: theory -> class * class -> class * class |
22 |
val read_classrel: theory -> xstring * xstring -> class * class |
|
|
24929
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents:
24920
diff
changeset
|
23 |
val axiomatize_class: bstring * class list -> theory -> theory |
|
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents:
24920
diff
changeset
|
24 |
val axiomatize_class_cmd: bstring * xstring list -> theory -> theory |
|
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents:
24920
diff
changeset
|
25 |
val axiomatize_classrel: (class * class) list -> theory -> theory |
|
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents:
24920
diff
changeset
|
26 |
val axiomatize_classrel_cmd: (xstring * xstring) list -> theory -> theory |
|
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents:
24920
diff
changeset
|
27 |
val axiomatize_arity: arity -> theory -> theory |
|
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents:
24920
diff
changeset
|
28 |
val axiomatize_arity_cmd: xstring * string list * string -> theory -> theory |
| 25486 | 29 |
val instance_name: string * class -> string |
|
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
30 |
val declare_overloaded: string * typ -> theory -> term * theory |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
31 |
val define_overloaded: string -> string * term -> theory -> thm * theory |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
32 |
val inst_tyco_of: theory -> string * typ -> string option |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
33 |
val unoverload: theory -> thm -> thm |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
34 |
val overload: theory -> thm -> thm |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
35 |
val unoverload_conv: theory -> conv |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
36 |
val overload_conv: theory -> conv |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
37 |
val unoverload_const: theory -> string * typ -> string |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
38 |
val param_of_inst: theory -> string * string -> string |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
39 |
val inst_of_param: theory -> string -> (string * string) option |
| 27497 | 40 |
val arity_property: theory -> class * string -> string -> string list |
| 19574 | 41 |
type cache |
|
24929
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents:
24920
diff
changeset
|
42 |
val of_sort: theory -> typ * sort -> cache -> thm list * cache (*exception Sorts.CLASS_ERROR*) |
| 19574 | 43 |
val cache: cache |
| 26246 | 44 |
val introN: string |
| 25617 | 45 |
val axiomsN: string |
| 3938 | 46 |
end; |
|
404
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff
changeset
|
47 |
|
| 15801 | 48 |
structure AxClass: AX_CLASS = |
|
404
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff
changeset
|
49 |
struct |
|
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff
changeset
|
50 |
|
| 19405 | 51 |
(** theory data **) |
| 423 | 52 |
|
| 19405 | 53 |
(* class parameters (canonical order) *) |
| 423 | 54 |
|
| 19405 | 55 |
type param = string * class; |
| 423 | 56 |
|
| 19405 | 57 |
fun add_param pp ((x, c): param) params = |
58 |
(case AList.lookup (op =) params x of |
|
59 |
NONE => (x, c) :: params |
|
60 |
| SOME c' => error ("Duplicate class parameter " ^ quote x ^
|
|
61 |
" for " ^ Pretty.string_of_sort pp [c] ^ |
|
62 |
(if c = c' then "" else " and " ^ Pretty.string_of_sort pp [c']))); |
|
| 423 | 63 |
|
| 19405 | 64 |
fun merge_params _ ([], qs) = qs |
65 |
| merge_params pp (ps, qs) = |
|
66 |
fold_rev (fn q => if member (op =) ps q then I else add_param pp q) qs ps; |
|
| 423 | 67 |
|
68 |
||
| 19511 | 69 |
(* axclasses *) |
| 6379 | 70 |
|
|
19243
5dcb899a8486
moved read_class, read/cert_classrel/arity to sign.ML;
wenzelm
parents:
19134
diff
changeset
|
71 |
val introN = "intro"; |
| 19511 | 72 |
val superN = "super"; |
|
19243
5dcb899a8486
moved read_class, read/cert_classrel/arity to sign.ML;
wenzelm
parents:
19134
diff
changeset
|
73 |
val axiomsN = "axioms"; |
|
5dcb899a8486
moved read_class, read/cert_classrel/arity to sign.ML;
wenzelm
parents:
19134
diff
changeset
|
74 |
|
| 19392 | 75 |
datatype axclass = AxClass of |
| 19460 | 76 |
{def: thm,
|
| 19392 | 77 |
intro: thm, |
|
21463
42dd50268c8b
completed class parameter handling in axclass.ML
haftmann
parents:
20628
diff
changeset
|
78 |
axioms: thm list, |
| 21925 | 79 |
params: (string * typ) list}; |
| 19392 | 80 |
|
| 19460 | 81 |
type axclasses = axclass Symtab.table * param list; |
| 19392 | 82 |
|
| 27397 | 83 |
fun make_axclass ((def, intro, axioms), params) = AxClass |
84 |
{def = def, intro = intro, axioms = axioms, params = params};
|
|
| 19405 | 85 |
|
86 |
fun merge_axclasses pp ((tab1, params1), (tab2, params2)) : axclasses = |
|
87 |
(Symtab.merge (K true) (tab1, tab2), merge_params pp (params1, params2)); |
|
88 |
||
| 19392 | 89 |
|
90 |
(* instances *) |
|
91 |
||
| 20628 | 92 |
val classrel_prefix = "classrel_"; |
93 |
val arity_prefix = "arity_"; |
|
| 19511 | 94 |
|
| 19574 | 95 |
type instances = |
96 |
((class * class) * thm) list * |
|
97 |
((class * sort list) * thm) list Symtab.table; |
|
| 6379 | 98 |
|
| 19574 | 99 |
fun merge_instances ((classrel1, arities1): instances, (classrel2, arities2)) = |
100 |
(merge (eq_fst op =) (classrel1, classrel2), |
|
101 |
Symtab.join (K (merge (eq_fst op =))) (arities1, arities2)); |
|
| 19392 | 102 |
|
103 |
||
|
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
104 |
(* instance parameters *) |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
105 |
|
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
106 |
type inst_params = |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
107 |
(string * thm) Symtab.table Symtab.table |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
108 |
(*constant name ~> type constructor ~> (constant name, equation)*) |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
109 |
* (string * string) Symtab.table; (*constant name ~> (constant name, type constructor)*) |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
110 |
|
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
111 |
fun merge_inst_params ((const_param1, param_const1), (const_param2, param_const2)) = |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
112 |
(Symtab.join (K (Symtab.merge (K true))) (const_param1, const_param2), |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
113 |
Symtab.merge (K true) (param_const1, param_const2)); |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
114 |
|
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
115 |
|
| 19511 | 116 |
(* setup data *) |
| 19392 | 117 |
|
118 |
structure AxClassData = TheoryDataFun |
|
| 22846 | 119 |
( |
|
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
120 |
type T = axclasses * (instances * inst_params); |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
121 |
val empty = ((Symtab.empty, []), (([], Symtab.empty), (Symtab.empty, Symtab.empty))); |
| 19574 | 122 |
val copy = I; |
123 |
val extend = I; |
|
|
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
124 |
fun merge pp ((axclasses1, (instances1, inst_params1)), (axclasses2, (instances2, inst_params2))) = |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
125 |
(merge_axclasses pp (axclasses1, axclasses2), |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
126 |
(merge_instances (instances1, instances2), merge_inst_params (inst_params1, inst_params2))); |
| 22846 | 127 |
); |
| 6379 | 128 |
|
129 |
||
| 19574 | 130 |
(* maintain axclasses *) |
| 19392 | 131 |
|
| 19574 | 132 |
val get_axclasses = #1 o AxClassData.get; |
|
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
133 |
val map_axclasses = AxClassData.map o apfst; |
| 19574 | 134 |
|
135 |
val lookup_def = Symtab.lookup o #1 o get_axclasses; |
|
| 6379 | 136 |
|
|
24929
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents:
24920
diff
changeset
|
137 |
fun get_info thy c = |
| 19511 | 138 |
(case lookup_def thy c of |
| 19392 | 139 |
SOME (AxClass info) => info |
| 21919 | 140 |
| NONE => error ("No such axclass: " ^ quote c));
|
| 6379 | 141 |
|
| 19123 | 142 |
fun class_intros thy = |
| 19392 | 143 |
let |
144 |
fun add_intro c = |
|
| 19511 | 145 |
(case lookup_def thy c of SOME (AxClass {intro, ...}) => cons intro | _ => I);
|
|
21931
314f9e2a442c
replaced Sign.classes by Sign.all_classes (topologically sorted);
wenzelm
parents:
21925
diff
changeset
|
146 |
val classes = Sign.all_classes thy; |
| 19392 | 147 |
in map (Thm.class_triv thy) classes @ fold add_intro classes [] end; |
|
15876
a67343c6ab2a
sane interfaces for tactical instance proofs (do not expand defs of theory, proper handling of sort instances);
wenzelm
parents:
15853
diff
changeset
|
148 |
|
|
a67343c6ab2a
sane interfaces for tactical instance proofs (do not expand defs of theory, proper handling of sort instances);
wenzelm
parents:
15853
diff
changeset
|
149 |
|
| 19460 | 150 |
fun get_params thy pred = |
| 19574 | 151 |
let val params = #2 (get_axclasses thy); |
| 19460 | 152 |
in fold (fn (x, c) => if pred c then cons x else I) params [] end; |
153 |
||
154 |
fun params_of thy c = get_params thy (fn c' => c' = c); |
|
155 |
fun all_params_of thy S = get_params thy (fn c => Sign.subsort thy (S, [c])); |
|
156 |
||
| 24964 | 157 |
fun class_of_param thy = AList.lookup (op =) (#2 (get_axclasses thy)); |
| 19460 | 158 |
|
| 21919 | 159 |
|
| 19511 | 160 |
(* maintain instances *) |
| 19503 | 161 |
|
| 25486 | 162 |
fun instance_name (a, c) = NameSpace.base c ^ "_" ^ NameSpace.base a; |
163 |
||
|
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
164 |
val get_instances = #1 o #2 o AxClassData.get; |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
165 |
val map_instances = AxClassData.map o apsnd o apfst; |
| 19528 | 166 |
|
167 |
||
| 19574 | 168 |
fun the_classrel thy (c1, c2) = |
169 |
(case AList.lookup (op =) (#1 (get_instances thy)) (c1, c2) of |
|
170 |
SOME th => Thm.transfer thy th |
|
| 24920 | 171 |
| NONE => error ("Unproven class relation " ^
|
172 |
Syntax.string_of_classrel (ProofContext.init thy) [c1, c2])); |
|
| 19574 | 173 |
|
174 |
fun put_classrel arg = map_instances (fn (classrel, arities) => |
|
175 |
(insert (eq_fst op =) arg classrel, arities)); |
|
| 19503 | 176 |
|
177 |
||
| 19574 | 178 |
fun the_arity thy a (c, Ss) = |
|
24929
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents:
24920
diff
changeset
|
179 |
(case AList.lookup (op =) (Symtab.lookup_list (#2 (get_instances thy)) a) (c, Ss) of |
| 19574 | 180 |
SOME th => Thm.transfer thy th |
| 24920 | 181 |
| NONE => error ("Unproven type arity " ^
|
182 |
Syntax.string_of_arity (ProofContext.init thy) (a, Ss, [c]))); |
|
| 19503 | 183 |
|
| 27497 | 184 |
fun arity_property thy (c, a) x = |
185 |
these (Symtab.lookup (snd (get_instances thy)) a) |
|
186 |
|> map_filter (fn ((c', _), th) => if c = c' |
|
187 |
then AList.lookup (op =) (Thm.get_tags th) x else NONE) |
|
188 |
|> rev; |
|
| 27397 | 189 |
|
| 19574 | 190 |
fun put_arity ((t, Ss, c), th) = map_instances (fn (classrel, arities) => |
191 |
(classrel, arities |> Symtab.insert_list (eq_fst op =) (t, ((c, Ss), th)))); |
|
| 19503 | 192 |
|
193 |
||
| 27397 | 194 |
|
195 |
||
|
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
196 |
(* maintain instance parameters *) |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
197 |
|
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
198 |
val get_inst_params = #2 o #2 o AxClassData.get; |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
199 |
val map_inst_params = AxClassData.map o apsnd o apsnd; |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
200 |
|
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
201 |
fun get_inst_param thy (c, tyco) = |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
202 |
(the o Symtab.lookup ((the o Symtab.lookup (fst (get_inst_params thy))) c)) tyco; |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
203 |
|
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
204 |
fun add_inst_param (c, tyco) inst = (map_inst_params o apfst |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
205 |
o Symtab.map_default (c, Symtab.empty)) (Symtab.update_new (tyco, inst)) |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
206 |
#> (map_inst_params o apsnd) (Symtab.update_new (fst inst, (c, tyco))); |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
207 |
|
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
208 |
val inst_of_param = Symtab.lookup o snd o get_inst_params; |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
209 |
val param_of_inst = fst oo get_inst_param; |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
210 |
|
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
211 |
fun inst_thms thy = (Symtab.fold (Symtab.fold (cons o snd o snd) o snd) o fst) |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
212 |
(get_inst_params thy) []; |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
213 |
|
| 25863 | 214 |
fun inst_tyco_of thy = try (fst o dest_Type o the_single o Sign.const_typargs thy); |
|
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
215 |
|
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
216 |
fun unoverload thy = MetaSimplifier.simplify true (inst_thms thy); |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
217 |
fun overload thy = MetaSimplifier.simplify true (map Thm.symmetric (inst_thms thy)); |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
218 |
|
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
219 |
fun unoverload_conv thy = MetaSimplifier.rewrite true (inst_thms thy); |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
220 |
fun overload_conv thy = MetaSimplifier.rewrite true (map Thm.symmetric (inst_thms thy)); |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
221 |
|
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
222 |
fun unoverload_const thy (c_ty as (c, _)) = |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
223 |
case class_of_param thy c |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
224 |
of SOME class => (case inst_tyco_of thy c_ty |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
225 |
of SOME tyco => try (param_of_inst thy) (c, tyco) |> the_default c |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
226 |
| NONE => c) |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
227 |
| NONE => c; |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
228 |
|
|
404
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff
changeset
|
229 |
|
| 19511 | 230 |
(** instances **) |
|
19418
03b01c9314fc
reworded add_axclass(_i): canonical specification format,
wenzelm
parents:
19405
diff
changeset
|
231 |
|
|
03b01c9314fc
reworded add_axclass(_i): canonical specification format,
wenzelm
parents:
19405
diff
changeset
|
232 |
(* class relations *) |
|
03b01c9314fc
reworded add_axclass(_i): canonical specification format,
wenzelm
parents:
19405
diff
changeset
|
233 |
|
| 19405 | 234 |
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:
15853
diff
changeset
|
235 |
let |
|
26939
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents:
26516
diff
changeset
|
236 |
val string_of_sort = Syntax.string_of_sort_global thy; |
| 19405 | 237 |
val (c1, c2) = pairself (Sign.certify_class thy) raw_rel; |
| 24271 | 238 |
val _ = Sign.primitive_classrel (c1, c2) (Theory.copy thy); |
| 19405 | 239 |
val _ = |
| 19460 | 240 |
(case subtract (op =) (all_params_of thy [c1]) (all_params_of thy [c2]) of |
| 19405 | 241 |
[] => () |
|
26939
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents:
26516
diff
changeset
|
242 |
| xs => raise TYPE ("Class " ^ string_of_sort [c1] ^ " lacks parameter(s) " ^
|
|
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents:
26516
diff
changeset
|
243 |
commas_quote xs ^ " of " ^ string_of_sort [c2], [], [])); |
| 19405 | 244 |
in (c1, c2) end; |
245 |
||
246 |
fun read_classrel thy raw_rel = |
|
247 |
cert_classrel thy (pairself (Sign.read_class thy) raw_rel) |
|
248 |
handle TYPE (msg, _, _) => error msg; |
|
249 |
||
250 |
||
251 |
(* primitive rules *) |
|
252 |
||
253 |
fun add_classrel th thy = |
|
254 |
let |
|
255 |
fun err () = raise THM ("add_classrel: malformed class relation", 0, [th]);
|
|
| 22691 | 256 |
val prop = Thm.plain_prop_of (Thm.transfer thy th); |
| 19405 | 257 |
val rel = Logic.dest_classrel prop handle TERM _ => err (); |
258 |
val (c1, c2) = cert_classrel thy rel handle TYPE _ => err (); |
|
| 19574 | 259 |
in |
260 |
thy |
|
261 |
|> Sign.primitive_classrel (c1, c2) |
|
262 |
|> put_classrel ((c1, c2), Drule.unconstrainTs th) |
|
263 |
end; |
|
|
15876
a67343c6ab2a
sane interfaces for tactical instance proofs (do not expand defs of theory, proper handling of sort instances);
wenzelm
parents:
15853
diff
changeset
|
264 |
|
| 19405 | 265 |
fun add_arity th thy = |
|
15876
a67343c6ab2a
sane interfaces for tactical instance proofs (do not expand defs of theory, proper handling of sort instances);
wenzelm
parents:
15853
diff
changeset
|
266 |
let |
| 19528 | 267 |
fun err () = raise THM ("add_arity: malformed type arity", 0, [th]);
|
| 22691 | 268 |
val prop = Thm.plain_prop_of (Thm.transfer thy th); |
| 19528 | 269 |
val (t, Ss, c) = Logic.dest_arity prop handle TERM _ => err (); |
| 24731 | 270 |
val _ = map (Sign.certify_sort thy) Ss = Ss orelse err (); |
| 26516 | 271 |
val _ = case filter_out (fn c => can (get_inst_param thy) (c, t)) (params_of thy c) |
272 |
of [] => () |
|
273 |
| cs => Output.legacy_feature |
|
274 |
("Missing specifications for overloaded parameters " ^ commas_quote cs)
|
|
| 27397 | 275 |
val th' = th |
276 |
|> Drule.unconstrainTs |
|
277 |
|> (Thm.map_tags o AList.default (op =)) |
|
278 |
(Markup.theory_nameN, Context.theory_name thy) |
|
| 19574 | 279 |
in |
280 |
thy |
|
281 |
|> Sign.primitive_arity (t, Ss, [c]) |
|
| 27397 | 282 |
|> put_arity ((t, Ss, c), th') |
| 19574 | 283 |
end; |
|
404
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff
changeset
|
284 |
|
|
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff
changeset
|
285 |
|
|
19243
5dcb899a8486
moved read_class, read/cert_classrel/arity to sign.ML;
wenzelm
parents:
19134
diff
changeset
|
286 |
(* tactical proofs *) |
|
15876
a67343c6ab2a
sane interfaces for tactical instance proofs (do not expand defs of theory, proper handling of sort instances);
wenzelm
parents:
15853
diff
changeset
|
287 |
|
| 19405 | 288 |
fun prove_classrel raw_rel tac thy = |
|
15876
a67343c6ab2a
sane interfaces for tactical instance proofs (do not expand defs of theory, proper handling of sort instances);
wenzelm
parents:
15853
diff
changeset
|
289 |
let |
| 24920 | 290 |
val ctxt = ProofContext.init thy; |
| 19405 | 291 |
val (c1, c2) = cert_classrel thy raw_rel; |
| 24920 | 292 |
val th = Goal.prove ctxt [] [] |
| 20049 | 293 |
(Logic.mk_classrel (c1, c2)) (fn _ => tac) handle ERROR msg => |
|
19243
5dcb899a8486
moved read_class, read/cert_classrel/arity to sign.ML;
wenzelm
parents:
19134
diff
changeset
|
294 |
cat_error msg ("The error(s) above occurred while trying to prove class relation " ^
|
| 24920 | 295 |
quote (Syntax.string_of_classrel ctxt [c1, c2])); |
| 19511 | 296 |
in |
297 |
thy |
|
| 20628 | 298 |
|> PureThy.add_thms [((prefix classrel_prefix (Logic.name_classrel (c1, c2)), th), [])] |
| 19511 | 299 |
|-> (fn [th'] => add_classrel th') |
300 |
end; |
|
|
404
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff
changeset
|
301 |
|
|
19243
5dcb899a8486
moved read_class, read/cert_classrel/arity to sign.ML;
wenzelm
parents:
19134
diff
changeset
|
302 |
fun prove_arity raw_arity tac thy = |
|
15876
a67343c6ab2a
sane interfaces for tactical instance proofs (do not expand defs of theory, proper handling of sort instances);
wenzelm
parents:
15853
diff
changeset
|
303 |
let |
| 24920 | 304 |
val ctxt = ProofContext.init thy; |
|
19243
5dcb899a8486
moved read_class, read/cert_classrel/arity to sign.ML;
wenzelm
parents:
19134
diff
changeset
|
305 |
val arity = Sign.cert_arity thy raw_arity; |
| 20628 | 306 |
val names = map (prefix arity_prefix) (Logic.name_arities arity); |
| 19405 | 307 |
val props = Logic.mk_arities arity; |
| 24920 | 308 |
val ths = Goal.prove_multi ctxt [] [] props |
| 21687 | 309 |
(fn _ => Goal.precise_conjunction_tac (length props) 1 THEN tac) handle ERROR msg => |
|
19243
5dcb899a8486
moved read_class, read/cert_classrel/arity to sign.ML;
wenzelm
parents:
19134
diff
changeset
|
310 |
cat_error msg ("The error(s) above occurred while trying to prove type arity " ^
|
| 24920 | 311 |
quote (Syntax.string_of_arity ctxt arity)); |
| 19511 | 312 |
in |
313 |
thy |
|
| 20628 | 314 |
|> PureThy.add_thms (map (rpair []) (names ~~ ths)) |
| 19511 | 315 |
|-> fold add_arity |
316 |
end; |
|
317 |
||
318 |
||
|
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
319 |
(* instance parameters and overloaded definitions *) |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
320 |
|
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
321 |
(* declaration and definition of instances of overloaded constants *) |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
322 |
|
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
323 |
fun declare_overloaded (c, T) thy = |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
324 |
let |
| 25605 | 325 |
val class = case class_of_param thy c |
326 |
of SOME class => class |
|
327 |
| NONE => error ("Not a class parameter: " ^ quote c);
|
|
328 |
val tyco = case inst_tyco_of thy (c, T) |
|
329 |
of SOME tyco => tyco |
|
330 |
| NONE => error ("Illegal type for instantiation of class parameter: "
|
|
|
26939
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents:
26516
diff
changeset
|
331 |
^ quote (c ^ " :: " ^ Syntax.string_of_typ_global thy T)); |
|
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
332 |
val name_inst = instance_name (tyco, class) ^ "_inst"; |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
333 |
val c' = NameSpace.base c ^ "_" ^ NameSpace.base tyco; |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
334 |
val T' = Type.strip_sorts T; |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
335 |
in |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
336 |
thy |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
337 |
|> Sign.sticky_prefix name_inst |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
338 |
|> Sign.no_base_names |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
339 |
|> Sign.declare_const [] (c', T', NoSyn) |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
340 |
|-> (fn const' as Const (c'', _) => Thm.add_def false true |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
341 |
(Thm.def_name c', Logic.mk_equals (Const (c, T'), const')) |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
342 |
#>> Thm.varifyT |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
343 |
#-> (fn thm => add_inst_param (c, tyco) (c'', thm) |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
344 |
#> PureThy.note Thm.internalK (c', thm) |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
345 |
#> snd |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
346 |
#> Sign.restore_naming thy |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
347 |
#> pair (Const (c, T)))) |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
348 |
end; |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
349 |
|
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
350 |
fun define_overloaded name (c, t) thy = |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
351 |
let |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
352 |
val T = Term.fastype_of t; |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
353 |
val SOME tyco = inst_tyco_of thy (c, T); |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
354 |
val (c', eq) = get_inst_param thy (c, tyco); |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
355 |
val prop = Logic.mk_equals (Const (c', T), t); |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
356 |
val name' = Thm.def_name_optional |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
357 |
(NameSpace.base c ^ "_" ^ NameSpace.base tyco) name; |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
358 |
in |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
359 |
thy |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
360 |
|> Thm.add_def false false (name', prop) |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
361 |
|>> (fn thm => Drule.transitive_thm OF [eq, thm]) |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
362 |
end; |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
363 |
|
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
364 |
|
| 19511 | 365 |
|
366 |
(** class definitions **) |
|
367 |
||
| 23421 | 368 |
fun split_defined n eq = |
369 |
let |
|
370 |
val intro = |
|
371 |
(eq RS Drule.equal_elim_rule2) |
|
372 |
|> Conjunction.curry_balanced n |
|
373 |
|> n = 0 ? Thm.eq_assumption 1; |
|
374 |
val dests = |
|
375 |
if n = 0 then [] |
|
376 |
else |
|
377 |
(eq RS Drule.equal_elim_rule1) |
|
378 |
|> BalancedTree.dest (fn th => |
|
379 |
(th RS Conjunction.conjunctionD1, th RS Conjunction.conjunctionD2)) n; |
|
380 |
in (intro, dests) end; |
|
381 |
||
| 24964 | 382 |
fun define_class (bclass, raw_super) raw_params raw_specs thy = |
| 19511 | 383 |
let |
384 |
val ctxt = ProofContext.init thy; |
|
| 24964 | 385 |
val pp = Syntax.pp ctxt; |
| 19511 | 386 |
|
387 |
||
| 24964 | 388 |
(* class *) |
| 19511 | 389 |
|
390 |
val bconst = Logic.const_of_class bclass; |
|
391 |
val class = Sign.full_name thy bclass; |
|
| 24731 | 392 |
val super = Sign.minimize_sort thy (Sign.certify_sort thy raw_super); |
| 19511 | 393 |
|
| 24964 | 394 |
fun check_constraint (a, S) = |
395 |
if Sign.subsort thy (super, S) then () |
|
396 |
else error ("Sort constraint of type variable " ^
|
|
397 |
setmp show_sorts true (Pretty.string_of_typ pp) (TFree (a, S)) ^ |
|
398 |
" needs to be weaker than " ^ Pretty.string_of_sort pp super); |
|
399 |
||
400 |
||
401 |
(* params *) |
|
402 |
||
403 |
val params = raw_params |> map (fn p => |
|
404 |
let |
|
405 |
val T = Sign.the_const_type thy p; |
|
406 |
val _ = |
|
407 |
(case Term.add_tvarsT T [] of |
|
408 |
[((a, _), S)] => check_constraint (a, S) |
|
409 |
| _ => error ("Exactly one type variable expected in class parameter " ^ quote p));
|
|
410 |
val T' = Term.map_type_tvar (fn _ => TFree (Name.aT, [class])) T; |
|
411 |
in (p, T') end); |
|
412 |
||
413 |
||
414 |
(* axioms *) |
|
415 |
||
| 19511 | 416 |
fun prep_axiom t = |
417 |
(case Term.add_tfrees t [] of |
|
| 24964 | 418 |
[(a, S)] => check_constraint (a, S) |
419 |
| [] => () |
|
420 |
| _ => error ("Multiple type variables in class axiom:\n" ^ Pretty.string_of_term pp t);
|
|
421 |
t |
|
422 |
|> Term.map_types (Term.map_atyps (fn TFree _ => Term.aT [] | U => U)) |
|
423 |
|> Logic.close_form); |
|
| 19511 | 424 |
|
| 24681 | 425 |
val axiomss = map (map (prep_axiom o Sign.cert_prop thy) o snd) raw_specs; |
| 22745 | 426 |
val name_atts = map fst raw_specs; |
| 19511 | 427 |
|
428 |
||
429 |
(* definition *) |
|
430 |
||
431 |
val conjs = map (curry Logic.mk_inclass (Term.aT [])) super @ flat axiomss; |
|
432 |
val class_eq = |
|
| 23421 | 433 |
Logic.mk_equals (Logic.mk_inclass (Term.aT [], class), Logic.mk_conjunction_balanced conjs); |
| 19511 | 434 |
|
435 |
val ([def], def_thy) = |
|
436 |
thy |
|
437 |
|> Sign.primitive_class (bclass, super) |
|
438 |
|> PureThy.add_defs_i false [((Thm.def_name bconst, class_eq), [])]; |
|
439 |
val (raw_intro, (raw_classrel, raw_axioms)) = |
|
| 23421 | 440 |
split_defined (length conjs) def ||> chop (length super); |
| 19392 | 441 |
|
|
19418
03b01c9314fc
reworded add_axclass(_i): canonical specification format,
wenzelm
parents:
19405
diff
changeset
|
442 |
|
| 19511 | 443 |
(* facts *) |
444 |
||
445 |
val class_triv = Thm.class_triv def_thy class; |
|
446 |
val ([(_, [intro]), (_, classrel), (_, axioms)], facts_thy) = |
|
447 |
def_thy |
|
448 |
|> PureThy.note_thmss_qualified "" bconst |
|
449 |
[((introN, []), [([Drule.standard raw_intro], [])]), |
|
450 |
((superN, []), [(map Drule.standard raw_classrel, [])]), |
|
451 |
((axiomsN, []), [(map (fn th => Drule.standard (class_triv RS th)) raw_axioms, [])])]; |
|
452 |
||
| 24847 | 453 |
|
| 19511 | 454 |
(* result *) |
455 |
||
| 24964 | 456 |
val axclass = make_axclass ((def, intro, axioms), params); |
| 19511 | 457 |
val result_thy = |
458 |
facts_thy |
|
| 19574 | 459 |
|> fold put_classrel (map (pair class) super ~~ classrel) |
| 19511 | 460 |
|> Sign.add_path bconst |
461 |
|> PureThy.note_thmss_i "" (name_atts ~~ map Thm.simple_fact (unflat axiomss axioms)) |> snd |
|
462 |
|> Sign.restore_naming facts_thy |
|
| 19574 | 463 |
|> map_axclasses (fn (axclasses, parameters) => |
| 21919 | 464 |
(Symtab.update (class, axclass) axclasses, |
| 24964 | 465 |
fold (fn (x, _) => add_param pp (x, class)) params parameters)); |
| 19511 | 466 |
|
467 |
in (class, result_thy) end; |
|
468 |
||
469 |
||
| 19531 | 470 |
|
| 19511 | 471 |
(** axiomatizations **) |
472 |
||
473 |
local |
|
474 |
||
| 20628 | 475 |
fun axiomatize prep mk name add raw_args thy = |
476 |
let |
|
477 |
val args = prep thy raw_args; |
|
478 |
val specs = mk args; |
|
479 |
val names = name args; |
|
480 |
in thy |> PureThy.add_axioms_i (map (rpair []) (names ~~ specs)) |-> fold add end; |
|
| 19511 | 481 |
|
482 |
fun ax_classrel prep = |
|
| 20628 | 483 |
axiomatize (map o prep) (map Logic.mk_classrel) |
484 |
(map (prefix classrel_prefix o Logic.name_classrel)) add_classrel; |
|
| 19511 | 485 |
|
486 |
fun ax_arity prep = |
|
| 20628 | 487 |
axiomatize prep Logic.mk_arities |
488 |
(map (prefix arity_prefix) o Logic.name_arities) add_arity; |
|
| 19511 | 489 |
|
| 19706 | 490 |
fun class_const c = |
491 |
(Logic.const_of_class c, Term.itselfT (Term.aT []) --> propT); |
|
492 |
||
| 19511 | 493 |
fun ax_class prep_class prep_classrel (bclass, raw_super) thy = |
494 |
let |
|
495 |
val class = Sign.full_name thy bclass; |
|
| 24731 | 496 |
val super = map (prep_class thy) raw_super |> Sign.minimize_sort thy; |
| 19511 | 497 |
in |
498 |
thy |
|
499 |
|> Sign.primitive_class (bclass, super) |
|
500 |
|> ax_classrel prep_classrel (map (fn c => (class, c)) super) |
|
| 19706 | 501 |
|> Theory.add_deps "" (class_const class) (map class_const super) |
| 19511 | 502 |
end; |
503 |
||
504 |
in |
|
505 |
||
|
24929
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents:
24920
diff
changeset
|
506 |
val axiomatize_class = ax_class Sign.certify_class cert_classrel; |
|
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents:
24920
diff
changeset
|
507 |
val axiomatize_class_cmd = ax_class Sign.read_class read_classrel; |
|
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents:
24920
diff
changeset
|
508 |
val axiomatize_classrel = ax_classrel cert_classrel; |
|
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents:
24920
diff
changeset
|
509 |
val axiomatize_classrel_cmd = ax_classrel read_classrel; |
|
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents:
24920
diff
changeset
|
510 |
val axiomatize_arity = ax_arity Sign.cert_arity; |
|
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents:
24920
diff
changeset
|
511 |
val axiomatize_arity_cmd = ax_arity Sign.read_arity; |
| 19511 | 512 |
|
513 |
end; |
|
514 |
||
515 |
||
516 |
||
517 |
(** explicit derivations -- cached **) |
|
518 |
||
| 19574 | 519 |
datatype cache = Types of (class * thm) list Typtab.table; |
520 |
||
| 19511 | 521 |
local |
| 19503 | 522 |
|
| 19574 | 523 |
fun lookup_type (Types cache) = AList.lookup (op =) o Typtab.lookup_list cache; |
524 |
fun insert_type T der (Types cache) = Types (Typtab.insert_list (eq_fst op =) (T, der) cache); |
|
| 19503 | 525 |
|
| 19522 | 526 |
fun derive_type _ (_, []) = [] |
527 |
| derive_type thy (typ, sort) = |
|
528 |
let |
|
| 19528 | 529 |
val vars = Term.fold_atyps |
| 19522 | 530 |
(fn T as TFree (_, S) => insert (eq_fst op =) (T, S) |
531 |
| T as TVar (_, S) => insert (eq_fst op =) (T, S) |
|
| 19528 | 532 |
| _ => I) typ []; |
| 19574 | 533 |
val hyps = vars |
534 |
|> map (fn (T, S) => (T, Drule.sort_triv thy (T, S) ~~ S)); |
|
|
26939
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents:
26516
diff
changeset
|
535 |
val ths = (typ, sort) |
|
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents:
26516
diff
changeset
|
536 |
|> Sorts.of_sort_derivation (Syntax.pp_global thy) (Sign.classes_of thy) |
|
22570
f166a5416b3f
renamed of_sort_derivation record fields (avoid clash with Alice keywords);
wenzelm
parents:
22385
diff
changeset
|
537 |
{class_relation =
|
| 19574 | 538 |
fn (th, c1) => fn c2 => th RS the_classrel thy (c1, c2), |
|
22570
f166a5416b3f
renamed of_sort_derivation record fields (avoid clash with Alice keywords);
wenzelm
parents:
22385
diff
changeset
|
539 |
type_constructor = |
| 19574 | 540 |
fn a => fn dom => fn c => |
541 |
let val Ss = map (map snd) dom and ths = maps (map fst) dom |
|
542 |
in ths MRS the_arity thy a (c, Ss) end, |
|
|
22570
f166a5416b3f
renamed of_sort_derivation record fields (avoid clash with Alice keywords);
wenzelm
parents:
22385
diff
changeset
|
543 |
type_variable = |
| 19574 | 544 |
the_default [] o AList.lookup (op =) hyps}; |
545 |
in ths end; |
|
| 19503 | 546 |
|
| 19511 | 547 |
in |
548 |
||
| 19574 | 549 |
fun of_sort thy (typ, sort) cache = |
550 |
let |
|
551 |
val sort' = filter (is_none o lookup_type cache typ) sort; |
|
552 |
val ths' = derive_type thy (typ, sort') |
|
553 |
handle ERROR msg => cat_error msg ("The error(s) above occurred for sort derivation: " ^
|
|
|
26939
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents:
26516
diff
changeset
|
554 |
Syntax.string_of_typ_global thy typ ^ " :: " ^ Syntax.string_of_sort_global thy sort'); |
| 19574 | 555 |
val cache' = cache |> fold (insert_type typ) (sort' ~~ ths'); |
556 |
val ths = |
|
557 |
sort |> map (fn c => |
|
558 |
Goal.finish (the (lookup_type cache' typ c) RS |
|
559 |
Goal.init (Thm.cterm_of thy (Logic.mk_inclass (typ, c)))) |
|
| 20260 | 560 |
|> Thm.adjust_maxidx_thm ~1); |
| 19574 | 561 |
in (ths, cache') end; |
| 19503 | 562 |
|
| 19511 | 563 |
end; |
|
19418
03b01c9314fc
reworded add_axclass(_i): canonical specification format,
wenzelm
parents:
19405
diff
changeset
|
564 |
|
|
24929
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents:
24920
diff
changeset
|
565 |
val cache = Types Typtab.empty; |
|
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents:
24920
diff
changeset
|
566 |
|
|
15876
a67343c6ab2a
sane interfaces for tactical instance proofs (do not expand defs of theory, proper handling of sort instances);
wenzelm
parents:
15853
diff
changeset
|
567 |
end; |