| author | paulson |
| Thu, 04 Sep 2003 11:15:53 +0200 | |
| changeset 14182 | 5f49f00fe084 |
| parent 14079 | 1c22e5499eeb |
| child 14255 | e6e3e3f0deed |
| permissions | -rw-r--r-- |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1 |
(* Title: HOL/Tools/record_package.ML |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
2 |
ID: $Id$ |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
3 |
Author: Wolfgang Naraschewski and Markus Wenzel, TU Muenchen |
| 9230 | 4 |
License: GPL (GNU GENERAL PUBLIC LICENSE) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
5 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
6 |
Extensible records with structural subtyping in HOL. |
| 5698 | 7 |
*) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
8 |
|
| 5698 | 9 |
signature BASIC_RECORD_PACKAGE = |
10 |
sig |
|
| 7178 | 11 |
val record_simproc: simproc |
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
12 |
val record_eq_simproc: simproc |
| 5698 | 13 |
val record_split_tac: int -> tactic |
| 5713 | 14 |
val record_split_name: string |
| 5698 | 15 |
val record_split_wrapper: string * wrapper |
16 |
end; |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
17 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
18 |
signature RECORD_PACKAGE = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
19 |
sig |
| 5698 | 20 |
include BASIC_RECORD_PACKAGE |
21 |
val quiet_mode: bool ref |
|
| 8574 | 22 |
val updateN: string |
| 4890 | 23 |
val mk_fieldT: (string * typ) * typ -> typ |
24 |
val dest_fieldT: typ -> (string * typ) * typ |
|
25 |
val mk_field: (string * term) * term -> term |
|
26 |
val mk_fst: term -> term |
|
27 |
val mk_snd: term -> term |
|
28 |
val mk_recordT: (string * typ) list * typ -> typ |
|
29 |
val dest_recordT: typ -> (string * typ) list * typ |
|
30 |
val mk_record: (string * term) list * term -> term |
|
31 |
val mk_sel: term -> string -> term |
|
32 |
val mk_update: term -> string * term -> term |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
33 |
val print_records: theory -> unit |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
34 |
val add_record: (string list * bstring) -> string option |
| 12506 | 35 |
-> (bstring * string * mixfix) list -> theory -> theory * {simps: thm list, iffs: thm list}
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
36 |
val add_record_i: (string list * bstring) -> (typ list * string) option |
| 12506 | 37 |
-> (bstring * typ * mixfix) list -> theory -> theory * {simps: thm list, iffs: thm list}
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
38 |
val setup: (theory -> theory) list |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
39 |
end; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
40 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
41 |
structure RecordPackage: RECORD_PACKAGE = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
42 |
struct |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
43 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
44 |
|
| 11832 | 45 |
(*** theory context references ***) |
46 |
||
47 |
val product_typeN = "Record.product_type"; |
|
48 |
||
| 13419 | 49 |
val product_type_intro = thm "product_type.intro"; |
| 13413 | 50 |
val product_type_inject = thm "product_type.inject"; |
51 |
val product_type_conv1 = thm "product_type.conv1"; |
|
52 |
val product_type_conv2 = thm "product_type.conv2"; |
|
53 |
val product_type_induct = thm "product_type.induct"; |
|
54 |
val product_type_cases = thm "product_type.cases"; |
|
55 |
val product_type_split_paired_all = thm "product_type.split_paired_all"; |
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
56 |
val product_type_split_paired_All = thm "product_type.split_paired_All"; |
| 11832 | 57 |
|
58 |
||
59 |
||
| 4894 | 60 |
(*** utilities ***) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
61 |
|
| 5698 | 62 |
(* messages *) |
63 |
||
64 |
val quiet_mode = ref false; |
|
65 |
fun message s = if ! quiet_mode then () else writeln s; |
|
66 |
||
67 |
||
| 12255 | 68 |
(* syntax *) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
69 |
|
| 12247 | 70 |
fun prune n xs = Library.drop (n, xs); |
| 11832 | 71 |
fun prefix_base s = NameSpace.map_base (fn bname => s ^ bname); |
72 |
||
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
73 |
val Trueprop = HOLogic.mk_Trueprop; |
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
74 |
fun All xs t = Term.list_all_free (xs, t); |
| 4894 | 75 |
|
|
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
76 |
infix 9 $$; |
|
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
77 |
infix 0 :== ===; |
|
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
78 |
infixr 0 ==>; |
|
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
79 |
|
|
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
80 |
val (op $$) = Term.list_comb; |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
81 |
val (op :==) = Logic.mk_defpair; |
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
82 |
val (op ===) = Trueprop o HOLogic.mk_eq; |
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
83 |
val (op ==>) = Logic.mk_implies; |
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
84 |
|
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
85 |
|
| 12255 | 86 |
(* attributes *) |
87 |
||
| 12302 | 88 |
fun case_names_fields x = RuleCases.case_names ["fields"] x; |
| 12255 | 89 |
fun induct_type_global name = [case_names_fields, InductAttrib.induct_type_global name]; |
90 |
fun cases_type_global name = [case_names_fields, InductAttrib.cases_type_global name]; |
|
91 |
||
92 |
||
93 |
(* tactics *) |
|
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
94 |
|
| 11967 | 95 |
fun simp_all_tac ss simps = ALLGOALS (Simplifier.asm_full_simp_tac (ss addsimps simps)); |
| 4895 | 96 |
|
|
13904
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
97 |
(* do case analysis / induction on last parameter of ith subgoal (or s) *) |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
98 |
|
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
99 |
fun try_param_tac s rule i st = |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
100 |
let |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
101 |
val cert = cterm_of (#sign (rep_thm st)); |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
102 |
val g = nth_elem (i - 1, prems_of st); |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
103 |
val params = Logic.strip_params g; |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
104 |
val concl = HOLogic.dest_Trueprop (Logic.strip_assums_concl g); |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
105 |
val rule' = Thm.lift_rule (st, i) rule; |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
106 |
val (P, ys) = strip_comb (HOLogic.dest_Trueprop |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
107 |
(Logic.strip_assums_concl (prop_of rule'))); |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
108 |
val (x, ca) = (case rev (drop (length params, ys)) of |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
109 |
[] => (head_of (fst (HOLogic.dest_eq (HOLogic.dest_Trueprop |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
110 |
(hd (rev (Logic.strip_assums_hyp (hd (prems_of rule')))))))), true) |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
111 |
| [x] => (head_of x, false)); |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
112 |
val rule'' = cterm_instantiate (map (pairself cert) (case (rev params) of |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
113 |
[] => (case assoc (map dest_Free (term_frees (prop_of st)), s) of |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
114 |
None => sys_error "try_param_tac: no such variable" |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
115 |
| Some T => [(P, if ca then concl else lambda (Free (s, T)) concl), |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
116 |
(x, Free (s, T))]) |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
117 |
| (_, T) :: _ => [(P, list_abs (params, if ca then concl |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
118 |
else incr_boundvars 1 (Abs (s, T, concl)))), |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
119 |
(x, list_abs (params, Bound 0))])) rule' |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
120 |
in compose_tac (false, rule'', nprems_of rule) i st end; |
| 4894 | 121 |
|
122 |
||
123 |
||
| 12449 | 124 |
(*** code generator data ***) |
125 |
||
126 |
val [prod_code, fst_code, snd_code] = |
|
127 |
map (Codegen.parse_mixfix (K (Bound 0))) ["(_,/ _)", "fst", "snd"]; |
|
128 |
val prodT_code = Codegen.parse_mixfix (K dummyT) "(_ */ _)"; |
|
129 |
||
130 |
||
131 |
||
| 4894 | 132 |
(*** syntax operations ***) |
133 |
||
134 |
(** name components **) |
|
135 |
||
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
136 |
val rN = "r"; |
| 4894 | 137 |
val moreN = "more"; |
138 |
val schemeN = "_scheme"; |
|
| 11832 | 139 |
val field_typeN = "_field_type"; |
| 4894 | 140 |
val fieldN = "_field"; |
| 5698 | 141 |
val fstN = "_val"; |
142 |
val sndN = "_more"; |
|
| 4894 | 143 |
val updateN = "_update"; |
144 |
val makeN = "make"; |
|
| 12265 | 145 |
val fieldsN = "fields"; |
|
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
146 |
val extendN = "extend"; |
|
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
147 |
val truncateN = "truncate"; |
|
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
148 |
|
| 4890 | 149 |
|
| 11832 | 150 |
(*see typedef_package.ML*) |
151 |
val RepN = "Rep_"; |
|
152 |
val AbsN = "Abs_"; |
|
| 5698 | 153 |
|
154 |
||
| 5713 | 155 |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
156 |
(** tuple operations **) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
157 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
158 |
(* types *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
159 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
160 |
fun mk_fieldT ((c, T), U) = Type (suffix field_typeN c, [T, U]); |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
161 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
162 |
fun dest_fieldT (typ as Type (c_field_type, [T, U])) = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
163 |
(case try (unsuffix field_typeN) c_field_type of |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
164 |
None => raise TYPE ("dest_fieldT", [typ], [])
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
165 |
| Some c => ((c, T), U)) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
166 |
| dest_fieldT typ = raise TYPE ("dest_fieldT", [typ], []);
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
167 |
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
168 |
fun dest_fieldTs T = |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
169 |
let val ((c, T), U) = dest_fieldT T |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
170 |
in (c, T) :: dest_fieldTs U |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
171 |
end handle TYPE _ => []; |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
172 |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
173 |
|
| 11832 | 174 |
(* morphisms *) |
175 |
||
176 |
fun mk_Rep U (c, T) = |
|
177 |
Const (suffix field_typeN (prefix_base RepN c), |
|
178 |
mk_fieldT ((c, T), U) --> HOLogic.mk_prodT (T, U)); |
|
179 |
||
180 |
fun mk_Abs U (c, T) = |
|
181 |
Const (suffix field_typeN (prefix_base AbsN c), |
|
182 |
HOLogic.mk_prodT (T, U) --> mk_fieldT ((c, T), U)); |
|
| 11833 | 183 |
|
| 11832 | 184 |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
185 |
(* constructors *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
186 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
187 |
fun mk_fieldC U (c, T) = (suffix fieldN c, T --> U --> mk_fieldT ((c, T), U)); |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
188 |
|
| 11832 | 189 |
fun mk_field ((c, t), u) = |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
190 |
let val T = fastype_of t and U = fastype_of u |
| 11832 | 191 |
in Const (suffix fieldN c, [T, U] ---> mk_fieldT ((c, T), U)) $ t $ u end; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
192 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
193 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
194 |
(* destructors *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
195 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
196 |
fun mk_fstC U (c, T) = (suffix fstN c, mk_fieldT ((c, T), U) --> T); |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
197 |
fun mk_sndC U (c, T) = (suffix sndN c, mk_fieldT ((c, T), U) --> U); |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
198 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
199 |
fun dest_field fst_or_snd p = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
200 |
let |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
201 |
val pT = fastype_of p; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
202 |
val ((c, T), U) = dest_fieldT pT; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
203 |
val (destN, destT) = if fst_or_snd then (fstN, T) else (sndN, U); |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
204 |
in Const (suffix destN c, pT --> destT) $ p end; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
205 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
206 |
val mk_fst = dest_field true; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
207 |
val mk_snd = dest_field false; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
208 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
209 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
210 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
211 |
(** record operations **) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
212 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
213 |
(* types *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
214 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
215 |
val mk_recordT = foldr mk_fieldT; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
216 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
217 |
fun dest_recordT T = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
218 |
(case try dest_fieldT T of |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
219 |
None => ([], T) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
220 |
| Some (c_T, U) => apfst (cons c_T) (dest_recordT U)); |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
221 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
222 |
fun find_fieldT c rT = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
223 |
(case assoc (fst (dest_recordT rT), c) of |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
224 |
None => raise TYPE ("find_field: " ^ c, [rT], [])
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
225 |
| Some T => T); |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
226 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
227 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
228 |
(* constructors *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
229 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
230 |
val mk_record = foldr mk_field; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
231 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
232 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
233 |
(* selectors *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
234 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
235 |
fun mk_selC rT (c, T) = (c, rT --> T); |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
236 |
|
| 4890 | 237 |
fun mk_sel r c = |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
238 |
let val rT = fastype_of r |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
239 |
in Const (mk_selC rT (c, find_fieldT c rT)) $ r end; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
240 |
|
|
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
241 |
fun mk_named_sels names r = names ~~ map (mk_sel r) names; |
|
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
242 |
|
| 4894 | 243 |
val mk_moreC = mk_selC; |
244 |
||
245 |
fun mk_more r c = |
|
246 |
let val rT = fastype_of r |
|
247 |
in Const (mk_moreC rT (c, snd (dest_recordT rT))) $ r end; |
|
248 |
||
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
249 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
250 |
(* updates *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
251 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
252 |
fun mk_updateC rT (c, T) = (suffix updateN c, T --> rT --> rT); |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
253 |
|
| 4890 | 254 |
fun mk_update r (c, x) = |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
255 |
let val rT = fastype_of r |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
256 |
in Const (mk_updateC rT (c, find_fieldT c rT)) $ x $ r end; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
257 |
|
| 5197 | 258 |
val mk_more_updateC = mk_updateC; |
259 |
||
260 |
fun mk_more_update r (c, x) = |
|
261 |
let val rT = fastype_of r |
|
262 |
in Const (mk_more_updateC rT (c, snd (dest_recordT rT))) $ x $ r end; |
|
263 |
||
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
264 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
265 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
266 |
(** concrete syntax for records **) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
267 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
268 |
(* parse translations *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
269 |
|
|
11473
4546d8d39221
fix problem with user translations by making field names appear as consts;
wenzelm
parents:
10008
diff
changeset
|
270 |
fun gen_field_tr mark sfx (t as Const (c, _) $ Const (name, _) $ arg) = |
| 5197 | 271 |
if c = mark then Syntax.const (suffix sfx name) $ arg |
272 |
else raise TERM ("gen_field_tr: " ^ mark, [t])
|
|
273 |
| gen_field_tr mark _ t = raise TERM ("gen_field_tr: " ^ mark, [t]);
|
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
274 |
|
| 5197 | 275 |
fun gen_fields_tr sep mark sfx (tm as Const (c, _) $ t $ u) = |
276 |
if c = sep then gen_field_tr mark sfx t :: gen_fields_tr sep mark sfx u |
|
| 5201 | 277 |
else [gen_field_tr mark sfx tm] |
278 |
| gen_fields_tr _ mark sfx tm = [gen_field_tr mark sfx tm]; |
|
| 5197 | 279 |
|
280 |
fun gen_record_tr sep mark sfx unit [t] = foldr (op $) (gen_fields_tr sep mark sfx t, unit) |
|
| 5201 | 281 |
| gen_record_tr _ _ _ _ ts = raise TERM ("gen_record_tr", ts);
|
| 5197 | 282 |
|
283 |
fun gen_record_scheme_tr sep mark sfx [t, more] = foldr (op $) (gen_fields_tr sep mark sfx t, more) |
|
| 5201 | 284 |
| gen_record_scheme_tr _ _ _ ts = raise TERM ("gen_record_scheme_tr", ts);
|
| 5197 | 285 |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
286 |
|
| 5197 | 287 |
val record_type_tr = gen_record_tr "_field_types" "_field_type" field_typeN (Syntax.const "unit"); |
288 |
val record_type_scheme_tr = gen_record_scheme_tr "_field_types" "_field_type" field_typeN; |
|
289 |
||
290 |
val record_tr = gen_record_tr "_fields" "_field" fieldN HOLogic.unit; |
|
291 |
val record_scheme_tr = gen_record_scheme_tr "_fields" "_field" fieldN; |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
292 |
|
| 5197 | 293 |
fun record_update_tr [t, u] = |
294 |
foldr (op $) (rev (gen_fields_tr "_updates" "_update" updateN u), t) |
|
295 |
| record_update_tr ts = raise TERM ("record_update_tr", ts);
|
|
296 |
||
297 |
||
|
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
298 |
fun update_name_tr (Free (x, T) :: ts) = Free (suffix updateN x, T) $$ ts |
|
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
299 |
| update_name_tr (Const (x, T) :: ts) = Const (suffix updateN x, T) $$ ts |
| 11833 | 300 |
| update_name_tr (((c as Const ("_constrain", _)) $ t $ ty) :: ts) =
|
|
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
301 |
(c $ update_name_tr [t] $ (Syntax.const "fun" $ ty $ Syntax.const "dummy")) $$ ts |
| 11833 | 302 |
| update_name_tr ts = raise TERM ("update_name_tr", ts);
|
303 |
||
304 |
||
| 5197 | 305 |
val parse_translation = |
306 |
[("_record_type", record_type_tr),
|
|
307 |
("_record_type_scheme", record_type_scheme_tr),
|
|
308 |
("_record", record_tr),
|
|
309 |
("_record_scheme", record_scheme_tr),
|
|
| 11833 | 310 |
("_record_update", record_update_tr),
|
311 |
("_update_name", update_name_tr)];
|
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
312 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
313 |
|
| 4890 | 314 |
(* print translations *) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
315 |
|
| 5197 | 316 |
fun gen_fields_tr' mark sfx (tm as Const (name_field, _) $ t $ u) = |
317 |
(case try (unsuffix sfx) name_field of |
|
318 |
Some name => |
|
319 |
apfst (cons (Syntax.const mark $ Syntax.free name $ t)) (gen_fields_tr' mark sfx u) |
|
320 |
| None => ([], tm)) |
|
321 |
| gen_fields_tr' _ _ tm = ([], tm); |
|
322 |
||
323 |
fun gen_record_tr' sep mark sfx is_unit record record_scheme tm = |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
324 |
let |
| 5197 | 325 |
val (ts, u) = gen_fields_tr' mark sfx tm; |
326 |
val t' = foldr1 (fn (v, w) => Syntax.const sep $ v $ w) ts; |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
327 |
in |
| 5197 | 328 |
if is_unit u then Syntax.const record $ t' |
329 |
else Syntax.const record_scheme $ t' $ u |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
330 |
end; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
331 |
|
| 5197 | 332 |
|
333 |
val record_type_tr' = |
|
334 |
gen_record_tr' "_field_types" "_field_type" field_typeN |
|
335 |
(fn Const ("unit", _) => true | _ => false) "_record_type" "_record_type_scheme";
|
|
336 |
||
337 |
val record_tr' = |
|
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
338 |
gen_record_tr' "_fields" "_field" fieldN |
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
339 |
(fn Const ("Unity", _) => true | _ => false) "_record" "_record_scheme";
|
| 5197 | 340 |
|
341 |
fun record_update_tr' tm = |
|
342 |
let val (ts, u) = gen_fields_tr' "_update" updateN tm in |
|
343 |
Syntax.const "_record_update" $ u $ |
|
344 |
foldr1 (fn (v, w) => Syntax.const "_updates" $ v $ w) (rev ts) |
|
345 |
end; |
|
346 |
||
347 |
||
| 5201 | 348 |
fun gen_field_tr' sfx tr' name = |
349 |
let val name_sfx = suffix sfx name |
|
350 |
in (name_sfx, fn [t, u] => tr' (Syntax.const name_sfx $ t $ u) | _ => raise Match) end; |
|
351 |
||
| 5197 | 352 |
fun print_translation names = |
353 |
map (gen_field_tr' field_typeN record_type_tr') names @ |
|
354 |
map (gen_field_tr' fieldN record_tr') names @ |
|
355 |
map (gen_field_tr' updateN record_update_tr') names; |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
356 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
357 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
358 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
359 |
(*** extend theory by record definition ***) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
360 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
361 |
(** record info **) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
362 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
363 |
(* type record_info and parent_info *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
364 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
365 |
type record_info = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
366 |
{args: (string * sort) list,
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
367 |
parent: (typ list * string) option, |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
368 |
fields: (string * typ) list, |
| 12247 | 369 |
field_inducts: thm list, |
370 |
field_cases: thm list, |
|
371 |
simps: thm list}; |
|
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
372 |
|
| 12247 | 373 |
fun make_record_info args parent fields field_inducts field_cases simps = |
374 |
{args = args, parent = parent, fields = fields, field_inducts = field_inducts,
|
|
375 |
field_cases = field_cases, simps = simps}: record_info; |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
376 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
377 |
type parent_info = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
378 |
{name: string,
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
379 |
fields: (string * typ) list, |
| 12247 | 380 |
field_inducts: thm list, |
381 |
field_cases: thm list, |
|
382 |
simps: thm list}; |
|
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
383 |
|
| 12247 | 384 |
fun make_parent_info name fields field_inducts field_cases simps = |
385 |
{name = name, fields = fields, field_inducts = field_inducts,
|
|
386 |
field_cases = field_cases, simps = simps}: parent_info; |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
387 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
388 |
|
| 5052 | 389 |
(* data kind 'HOL/records' *) |
| 5001 | 390 |
|
| 7178 | 391 |
type record_data = |
392 |
{records: record_info Symtab.table,
|
|
393 |
sel_upd: |
|
394 |
{selectors: unit Symtab.table,
|
|
395 |
updates: string Symtab.table, |
|
396 |
simpset: Simplifier.simpset}, |
|
397 |
field_splits: |
|
398 |
{fields: unit Symtab.table,
|
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
399 |
simpset: Simplifier.simpset}, |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
400 |
equalities: thm Symtab.table}; |
| 7178 | 401 |
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
402 |
fun make_record_data records sel_upd field_splits equalities= |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
403 |
{records = records, sel_upd = sel_upd, field_splits = field_splits,
|
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
404 |
equalities = equalities}: record_data; |
| 7178 | 405 |
|
| 5006 | 406 |
structure RecordsArgs = |
407 |
struct |
|
408 |
val name = "HOL/records"; |
|
| 7178 | 409 |
type T = record_data; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
410 |
|
| 7178 | 411 |
val empty = |
412 |
make_record_data Symtab.empty |
|
413 |
{selectors = Symtab.empty, updates = Symtab.empty, simpset = HOL_basic_ss}
|
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
414 |
{fields = Symtab.empty, simpset = HOL_basic_ss} Symtab.empty;
|
| 7178 | 415 |
|
| 6556 | 416 |
val copy = I; |
| 5006 | 417 |
val prep_ext = I; |
| 7178 | 418 |
fun merge |
419 |
({records = recs1,
|
|
420 |
sel_upd = {selectors = sels1, updates = upds1, simpset = ss1},
|
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
421 |
field_splits = {fields = flds1, simpset = fld_ss1},
|
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
422 |
equalities = equalities1}, |
| 7178 | 423 |
{records = recs2,
|
424 |
sel_upd = {selectors = sels2, updates = upds2, simpset = ss2},
|
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
425 |
field_splits = {fields = flds2, simpset = fld_ss2},
|
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
426 |
equalities = equalities2}) = |
| 7178 | 427 |
make_record_data |
428 |
(Symtab.merge (K true) (recs1, recs2)) |
|
429 |
{selectors = Symtab.merge (K true) (sels1, sels2),
|
|
430 |
updates = Symtab.merge (K true) (upds1, upds2), |
|
431 |
simpset = Simplifier.merge_ss (ss1, ss2)} |
|
432 |
{fields = Symtab.merge (K true) (flds1, flds2),
|
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
433 |
simpset = Simplifier.merge_ss (fld_ss1, fld_ss2)} |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
434 |
(Symtab.merge Thm.eq_thm (equalities1, equalities2)); |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
435 |
|
| 7178 | 436 |
fun print sg ({records = recs, ...}: record_data) =
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
437 |
let |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
438 |
val prt_typ = Sign.pretty_typ sg; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
439 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
440 |
fun pretty_parent None = [] |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
441 |
| pretty_parent (Some (Ts, name)) = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
442 |
[Pretty.block [prt_typ (Type (name, Ts)), Pretty.str " +"]]; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
443 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
444 |
fun pretty_field (c, T) = Pretty.block |
| 12129 | 445 |
[Pretty.str (Sign.cond_extern sg Sign.constK c), Pretty.str " ::", |
446 |
Pretty.brk 1, Pretty.quote (prt_typ T)]; |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
447 |
|
| 12247 | 448 |
fun pretty_record (name, {args, parent, fields, ...}: record_info) =
|
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
449 |
Pretty.block (Pretty.fbreaks (Pretty.block |
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
450 |
[prt_typ (Type (name, map TFree args)), Pretty.str " = "] :: |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
451 |
pretty_parent parent @ map pretty_field fields)); |
| 12129 | 452 |
in map pretty_record (Symtab.dest recs) |> Pretty.chunks |> Pretty.writeln end; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
453 |
end; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
454 |
|
| 5006 | 455 |
structure RecordsData = TheoryDataFun(RecordsArgs); |
456 |
val print_records = RecordsData.print; |
|
457 |
||
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
458 |
|
| 7178 | 459 |
(* access 'records' *) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
460 |
|
| 7178 | 461 |
fun get_record thy name = Symtab.lookup (#records (RecordsData.get thy), name); |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
462 |
|
| 4890 | 463 |
fun put_record name info thy = |
| 7178 | 464 |
let |
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
465 |
val {records, sel_upd, field_splits, equalities} = RecordsData.get thy;
|
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
466 |
val data = make_record_data (Symtab.update ((name, info), records)) |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
467 |
sel_upd field_splits equalities; |
| 7178 | 468 |
in RecordsData.put data thy end; |
469 |
||
470 |
||
471 |
(* access 'sel_upd' *) |
|
472 |
||
473 |
fun get_sel_upd sg = #sel_upd (RecordsData.get_sg sg); |
|
474 |
||
475 |
fun get_selectors sg name = Symtab.lookup (#selectors (get_sel_upd sg), name); |
|
476 |
fun get_updates sg name = Symtab.lookup (#updates (get_sel_upd sg), name); |
|
477 |
fun get_simpset sg = #simpset (get_sel_upd sg); |
|
478 |
||
479 |
||
480 |
fun put_sel_upd names simps thy = |
|
481 |
let |
|
482 |
val sels = map (rpair ()) names; |
|
483 |
val upds = map (suffix updateN) names ~~ names; |
|
484 |
||
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
485 |
val {records, sel_upd = {selectors, updates, simpset}, field_splits,
|
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
486 |
equalities} = RecordsData.get thy; |
| 7178 | 487 |
val data = make_record_data records |
488 |
{selectors = Symtab.extend (selectors, sels),
|
|
489 |
updates = Symtab.extend (updates, upds), |
|
490 |
simpset = Simplifier.addsimps (simpset, simps)} |
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
491 |
field_splits equalities; |
| 7178 | 492 |
in RecordsData.put data thy end; |
493 |
||
494 |
||
495 |
(* access 'field_splits' *) |
|
| 5698 | 496 |
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
497 |
fun add_record_splits names simps thy = |
| 5698 | 498 |
let |
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
499 |
val {records, sel_upd, field_splits = {fields, simpset},
|
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
500 |
equalities} = RecordsData.get thy; |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
501 |
val flds = map (rpair ()) names; |
| 7178 | 502 |
val data = make_record_data records sel_upd |
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
503 |
{fields = Symtab.extend (fields, flds),
|
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
504 |
simpset = Simplifier.addsimps (simpset, simps)} equalities; |
| 7178 | 505 |
in RecordsData.put data thy end; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
506 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
507 |
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
508 |
(* access 'equalities' *) |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
509 |
|
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
510 |
fun add_record_equalities name thm thy = |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
511 |
let |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
512 |
val {records, sel_upd, field_splits, equalities} = RecordsData.get thy;
|
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
513 |
val data = make_record_data records sel_upd field_splits |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
514 |
(Symtab.update_new ((name, thm), equalities)); |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
515 |
in RecordsData.put data thy end; |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
516 |
|
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
517 |
fun get_equalities sg name = |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
518 |
Symtab.lookup (#equalities (RecordsData.get_sg sg), name); |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
519 |
|
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
520 |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
521 |
(* parent records *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
522 |
|
| 12247 | 523 |
fun add_parents thy None parents = parents |
524 |
| add_parents thy (Some (types, name)) parents = |
|
525 |
let |
|
526 |
val sign = Theory.sign_of thy; |
|
527 |
fun err msg = error (msg ^ " parent record " ^ quote name); |
|
| 12255 | 528 |
|
| 12247 | 529 |
val {args, parent, fields, field_inducts, field_cases, simps} =
|
530 |
(case get_record thy name of Some info => info | None => err "Unknown"); |
|
531 |
val _ = if length types <> length args then err "Bad number of arguments for" else (); |
|
| 12255 | 532 |
|
| 12247 | 533 |
fun bad_inst ((x, S), T) = |
534 |
if Sign.of_sort sign (T, S) then None else Some x |
|
535 |
val bads = mapfilter bad_inst (args ~~ types); |
|
| 12255 | 536 |
|
| 12247 | 537 |
val inst = map fst args ~~ types; |
538 |
val subst = Term.map_type_tfree (fn (x, _) => the (assoc (inst, x))); |
|
539 |
val parent' = apsome (apfst (map subst)) parent; |
|
540 |
val fields' = map (apsnd subst) fields; |
|
541 |
in |
|
| 12255 | 542 |
conditional (not (null bads)) (fn () => |
543 |
err ("Ill-sorted instantiation of " ^ commas bads ^ " in"));
|
|
544 |
add_parents thy parent' |
|
| 12247 | 545 |
(make_parent_info name fields' field_inducts field_cases simps :: parents) |
546 |
end; |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
547 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
548 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
549 |
|
| 7178 | 550 |
(** record simproc **) |
551 |
||
| 13462 | 552 |
val record_simproc = |
553 |
Simplifier.simproc (Theory.sign_of HOL.thy) "record_simp" ["s (u k r)"] |
|
554 |
(fn sg => fn _ => fn t => |
|
555 |
(case t of (sel as Const (s, _)) $ ((upd as Const (u, _)) $ k $ r) => |
|
556 |
(case get_selectors sg s of Some () => |
|
557 |
(case get_updates sg u of Some u_name => |
|
558 |
let |
|
559 |
fun mk_free x t = Free (x, fastype_of t); |
|
560 |
val k' = mk_free "k" k; |
|
561 |
val r' = mk_free "r" r; |
|
562 |
val t' = sel $ (upd $ k' $ r'); |
|
563 |
fun prove prop = |
|
564 |
Tactic.prove sg ["k", "r"] [] prop (K (simp_all_tac (get_simpset sg) [])); |
|
565 |
in |
|
566 |
if u_name = s then Some (prove (Logic.mk_equals (t', k'))) |
|
567 |
else Some (prove (Logic.mk_equals (t', sel $ r'))) |
|
568 |
end |
|
569 |
| None => None) |
|
570 |
| None => None) |
|
571 |
| _ => None)); |
|
| 7178 | 572 |
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
573 |
val record_eq_simproc = |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
574 |
Simplifier.simproc (Theory.sign_of HOL.thy) "record_eq_simp" ["r = s"] |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
575 |
(fn sg => fn _ => fn t => |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
576 |
(case t of Const ("op =", Type (_, [T, _])) $ _ $ _ =>
|
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
577 |
(case rev (dest_fieldTs T) of |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
578 |
[] => None |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
579 |
| (name, _) :: _ => (case get_equalities sg name of |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
580 |
None => None |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
581 |
| Some thm => Some (thm RS Eq_TrueI))) |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
582 |
| _ => None)); |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
583 |
|
| 7178 | 584 |
|
585 |
||
| 5698 | 586 |
(** record field splitting **) |
587 |
||
| 6358 | 588 |
(* tactic *) |
589 |
||
| 5698 | 590 |
fun record_split_tac i st = |
591 |
let |
|
| 7178 | 592 |
val {field_splits = {fields, simpset}, ...} = RecordsData.get_sg (Thm.sign_of_thm st);
|
| 5698 | 593 |
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
594 |
fun is_fieldT (Type (a, [_, _])) = is_some (Symtab.lookup (fields, a)) |
| 5698 | 595 |
| is_fieldT _ = false; |
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
596 |
val has_field = exists_Const |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
597 |
(fn (s, Type (_, [Type (_, [T, _]), _])) => |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
598 |
(s = "all" orelse s = "All") andalso is_fieldT T |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
599 |
| _ => false); |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
600 |
|
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
601 |
val goal = Library.nth_elem (i - 1, Thm.prems_of st); |
| 5698 | 602 |
in |
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
603 |
if has_field goal then Simplifier.full_simp_tac simpset i st |
| 5698 | 604 |
else Seq.empty |
605 |
end handle Library.LIST _ => Seq.empty; |
|
606 |
||
| 6358 | 607 |
|
608 |
(* wrapper *) |
|
609 |
||
| 5707 | 610 |
val record_split_name = "record_split_tac"; |
611 |
val record_split_wrapper = (record_split_name, fn tac => record_split_tac ORELSE' tac); |
|
| 5698 | 612 |
|
613 |
||
| 6358 | 614 |
(* method *) |
615 |
||
616 |
val record_split_method = |
|
| 9705 | 617 |
("record_split", Method.no_args (Method.SIMPLE_METHOD' HEADGOAL record_split_tac),
|
| 6358 | 618 |
"split record fields"); |
619 |
||
620 |
||
| 12255 | 621 |
|
| 4890 | 622 |
(** internal theory extenders **) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
623 |
|
| 11832 | 624 |
(* field_typedefs *) |
| 5698 | 625 |
|
| 11832 | 626 |
fun field_typedefs zeta moreT names theory = |
| 5698 | 627 |
let |
| 11832 | 628 |
val alpha = "'a"; |
|
12338
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
12311
diff
changeset
|
629 |
val aT = TFree (alpha, HOLogic.typeS); |
| 11832 | 630 |
val UNIV = HOLogic.mk_UNIV (HOLogic.mk_prodT (aT, moreT)); |
| 5698 | 631 |
|
| 11832 | 632 |
fun type_def (thy, name) = |
| 11940 | 633 |
let val (thy', {type_definition, set_def = Some def, ...}) =
|
634 |
thy |> setmp TypedefPackage.quiet_mode true |
|
| 11832 | 635 |
(TypedefPackage.add_typedef_i true None |
636 |
(suffix field_typeN (Sign.base_name name), [alpha, zeta], Syntax.NoSyn) UNIV None |
|
637 |
(Tactic.rtac UNIV_witness 1)) |
|
638 |
in (thy', Tactic.rewrite_rule [def] type_definition) end |
|
639 |
in foldl_map type_def (theory, names) end; |
|
| 5698 | 640 |
|
641 |
||
| 4894 | 642 |
(* field_definitions *) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
643 |
|
| 11832 | 644 |
fun field_definitions fields names xs alphas zeta moreT more vars named_vars thy = |
| 4890 | 645 |
let |
| 5698 | 646 |
val sign = Theory.sign_of thy; |
| 4890 | 647 |
val base = Sign.base_name; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
648 |
|
|
12338
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
12311
diff
changeset
|
649 |
val xT = TFree (variant alphas "'x", HOLogic.typeS); |
| 11832 | 650 |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
651 |
|
| 4890 | 652 |
(* prepare declarations and definitions *) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
653 |
|
| 5698 | 654 |
(*field constructors*) |
| 4890 | 655 |
val field_decls = map (mk_fieldC moreT) fields; |
656 |
||
| 11832 | 657 |
fun mk_field_spec ((c, T), v) = |
658 |
Term.head_of (mk_field ((c, v), more)) :== |
|
659 |
lambda v (lambda more (mk_Abs moreT (c, T) $ (HOLogic.mk_prod (v, more)))); |
|
660 |
val field_specs = map mk_field_spec (fields ~~ vars); |
|
| 4890 | 661 |
|
662 |
(*field destructors*) |
|
| 5698 | 663 |
val dest_decls = map (mk_fstC moreT) fields @ map (mk_sndC moreT) fields; |
664 |
||
| 11832 | 665 |
fun mk_dest_spec dest sel (c, T) = |
| 5698 | 666 |
let val p = Free ("p", mk_fieldT ((c, T), moreT));
|
| 11832 | 667 |
in Term.head_of (dest p) :== lambda p (sel (mk_Rep moreT (c, T) $ p)) end; |
668 |
val dest_specs1 = map (mk_dest_spec mk_fst HOLogic.mk_fst) fields; |
|
669 |
val dest_specs2 = map (mk_dest_spec mk_snd HOLogic.mk_snd) fields; |
|
| 4890 | 670 |
|
671 |
||
| 11832 | 672 |
(* 1st stage: defs_thy *) |
| 5713 | 673 |
|
| 11832 | 674 |
val (defs_thy, (((typedefs, field_defs), dest_defs1), dest_defs2)) = |
675 |
thy |
|
676 |
|> field_typedefs zeta moreT names |
|
677 |
|>> (Theory.add_consts_i o map (Syntax.no_syn o apfst base)) (field_decls @ dest_decls) |
|
678 |
|>>> (PureThy.add_defs_i false o map Thm.no_attributes) field_specs |
|
679 |
|>>> (PureThy.add_defs_i false o map Thm.no_attributes) dest_specs1 |
|
680 |
|>>> (PureThy.add_defs_i false o map Thm.no_attributes) dest_specs2; |
|
| 4890 | 681 |
|
| 13419 | 682 |
val prod_types = map (fn (((a, b), c), d) => product_type_intro OF [a, b, c, d]) |
| 11832 | 683 |
(typedefs ~~ field_defs ~~ dest_defs1 ~~ dest_defs2); |
| 4890 | 684 |
|
| 5698 | 685 |
|
| 11832 | 686 |
(* 2nd stage: thms_thy *) |
| 5698 | 687 |
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
688 |
fun make ren th = map (fn (prod_type, field) => Drule.standard |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
689 |
(Drule.rename_bvars (ren ~~ [base (fst field), moreN] handle LIST _ => []) |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
690 |
(th OF [prod_type]))) (prod_types ~~ fields); |
| 4890 | 691 |
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
692 |
val dest_convs = make [] product_type_conv1 @ make [] product_type_conv2; |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
693 |
val field_injects = make [] product_type_inject; |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
694 |
val field_inducts = make ["x", "y"] product_type_induct; |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
695 |
val field_cases = make ["x", "y"] product_type_cases; |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
696 |
val field_splits = make ["a", "b"] product_type_split_paired_all @ |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
697 |
make ["a", "b"] product_type_split_paired_All; |
| 4894 | 698 |
|
| 11940 | 699 |
val (thms_thy, [field_defs', dest_defs', dest_convs', field_injects', |
700 |
field_splits', field_inducts', field_cases']) = defs_thy |
|
| 12449 | 701 |
|> Codegen.assoc_consts_i (flat (map (fn (s, _) => |
702 |
[(suffix fieldN s, None, prod_code), |
|
703 |
(suffix fstN s, None, fst_code), |
|
704 |
(suffix sndN s, None, snd_code)]) fields)) |
|
705 |
|> Codegen.assoc_types (map (fn (s, _) => |
|
706 |
(suffix field_typeN s, prodT_code)) fields) |
|
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
707 |
|> (PureThy.add_thmss o map Thm.no_attributes) |
| 11940 | 708 |
[("field_defs", field_defs),
|
709 |
("dest_defs", dest_defs1 @ dest_defs2),
|
|
710 |
("dest_convs", dest_convs),
|
|
711 |
("field_injects", field_injects),
|
|
712 |
("field_splits", field_splits),
|
|
713 |
("field_inducts", field_inducts),
|
|
714 |
("field_cases", field_cases)];
|
|
| 4890 | 715 |
|
| 11940 | 716 |
in (thms_thy, dest_convs', field_injects', field_splits', field_inducts', field_cases') end; |
| 4890 | 717 |
|
718 |
||
719 |
(* record_definition *) |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
720 |
|
| 12506 | 721 |
fun record_definition (args, bname) parent (parents: parent_info list) raw_fields thy = |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
722 |
let |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
723 |
val sign = Theory.sign_of thy; |
| 12247 | 724 |
|
725 |
val alphas = map fst args; |
|
726 |
val name = Sign.full_name sign bname; |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
727 |
val full = Sign.full_name_path sign bname; |
| 4890 | 728 |
val base = Sign.base_name; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
729 |
|
| 12506 | 730 |
val (bfields, field_syntax) = split_list (map (fn (x, T, mx) => ((x, T), mx)) raw_fields); |
731 |
||
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
732 |
|
| 4890 | 733 |
(* basic components *) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
734 |
|
| 12247 | 735 |
val ancestry = map (length o flat o map #fields) (Library.prefixes1 parents); |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
736 |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
737 |
val parent_fields = flat (map #fields parents); |
| 4890 | 738 |
val parent_names = map fst parent_fields; |
739 |
val parent_types = map snd parent_fields; |
|
740 |
val parent_len = length parent_fields; |
|
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
741 |
val parent_xs = variantlist (map (base o fst) parent_fields, [moreN, rN]); |
| 4890 | 742 |
val parent_vars = ListPair.map Free (parent_xs, parent_types); |
| 4894 | 743 |
val parent_named_vars = parent_names ~~ parent_vars; |
| 4890 | 744 |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
745 |
val fields = map (apfst full) bfields; |
| 4890 | 746 |
val names = map fst fields; |
747 |
val types = map snd fields; |
|
748 |
val len = length fields; |
|
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
749 |
val xs = variantlist (map fst bfields, moreN :: rN :: parent_xs); |
| 4890 | 750 |
val vars = ListPair.map Free (xs, types); |
| 4894 | 751 |
val named_vars = names ~~ vars; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
752 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
753 |
val all_fields = parent_fields @ fields; |
| 4890 | 754 |
val all_names = parent_names @ names; |
755 |
val all_types = parent_types @ types; |
|
756 |
val all_len = parent_len + len; |
|
757 |
val all_xs = parent_xs @ xs; |
|
758 |
val all_vars = parent_vars @ vars; |
|
| 4894 | 759 |
val all_named_vars = parent_named_vars @ named_vars; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
760 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
761 |
val zeta = variant alphas "'z"; |
|
12338
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
12311
diff
changeset
|
762 |
val moreT = TFree (zeta, HOLogic.typeS); |
| 4895 | 763 |
val more = Free (moreN, moreT); |
| 5197 | 764 |
val full_moreN = full moreN; |
765 |
fun more_part t = mk_more t full_moreN; |
|
766 |
fun more_part_update t x = mk_more_update t (full_moreN, x); |
|
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
767 |
val all_types_more = all_types @ [moreT]; |
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
768 |
val all_xs_more = all_xs @ [moreN]; |
| 4894 | 769 |
|
770 |
val parent_more = funpow parent_len mk_snd; |
|
771 |
val idxs = 0 upto (len - 1); |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
772 |
|
| 12265 | 773 |
val fieldsT = mk_recordT (fields, HOLogic.unitT); |
| 12247 | 774 |
fun rec_schemeT n = mk_recordT (prune n all_fields, moreT); |
775 |
fun rec_scheme n = mk_record (prune n all_named_vars, more); |
|
776 |
fun recT n = mk_recordT (prune n all_fields, HOLogic.unitT); |
|
| 12255 | 777 |
fun rec_ n = mk_record (prune n all_named_vars, HOLogic.unit); |
| 12247 | 778 |
fun r_scheme n = Free (rN, rec_schemeT n); |
779 |
fun r n = Free (rN, recT n); |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
780 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
781 |
|
| 4890 | 782 |
(* prepare print translation functions *) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
783 |
|
| 5698 | 784 |
val field_tr's = |
| 13333 | 785 |
print_translation (distinct (flat (map NameSpace.accesses' (full_moreN :: names)))); |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
786 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
787 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
788 |
(* prepare declarations *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
789 |
|
| 12247 | 790 |
val sel_decls = map (mk_selC (rec_schemeT 0)) bfields @ |
791 |
[mk_moreC (rec_schemeT 0) (moreN, moreT)]; |
|
792 |
val update_decls = map (mk_updateC (rec_schemeT 0)) bfields @ |
|
793 |
[mk_more_updateC (rec_schemeT 0) (moreN, moreT)]; |
|
| 12265 | 794 |
val make_decl = (makeN, all_types ---> recT 0); |
795 |
val fields_decl = (fieldsN, types ---> fieldsT); |
|
| 12247 | 796 |
val extend_decl = (extendN, recT 0 --> moreT --> rec_schemeT 0); |
797 |
val truncate_decl = (truncateN, rec_schemeT 0 --> recT 0); |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
798 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
799 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
800 |
(* prepare definitions *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
801 |
|
| 4895 | 802 |
(*record (scheme) type abbreviation*) |
| 4890 | 803 |
val recordT_specs = |
| 12247 | 804 |
[(suffix schemeN bname, alphas @ [zeta], rec_schemeT 0, Syntax.NoSyn), |
805 |
(bname, alphas, recT 0, Syntax.NoSyn)]; |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
806 |
|
| 4894 | 807 |
(*selectors*) |
| 4890 | 808 |
fun mk_sel_spec (i, c) = |
| 12247 | 809 |
mk_sel (r_scheme 0) c :== mk_fst (funpow i mk_snd (parent_more (r_scheme 0))); |
| 4894 | 810 |
val sel_specs = |
811 |
ListPair.map mk_sel_spec (idxs, names) @ |
|
| 12247 | 812 |
[more_part (r_scheme 0) :== funpow len mk_snd (parent_more (r_scheme 0))]; |
| 4890 | 813 |
|
814 |
(*updates*) |
|
| 12247 | 815 |
val all_sels = mk_named_sels all_names (r_scheme 0); |
| 4890 | 816 |
fun mk_upd_spec (i, (c, x)) = |
| 12247 | 817 |
mk_update (r_scheme 0) (c, x) :== |
818 |
mk_record (nth_update (c, x) (parent_len + i, all_sels), more_part (r_scheme 0)) |
|
| 5197 | 819 |
val update_specs = |
820 |
ListPair.map mk_upd_spec (idxs, named_vars) @ |
|
| 12247 | 821 |
[more_part_update (r_scheme 0) more :== mk_record (all_sels, more)]; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
822 |
|
|
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
823 |
(*derived operations*) |
| 12265 | 824 |
val make_spec = Const (full makeN, all_types ---> recT 0) $$ all_vars :== |
825 |
mk_record (all_named_vars, HOLogic.unit); |
|
826 |
val fields_spec = Const (full fieldsN, types ---> fieldsT) $$ vars :== |
|
827 |
mk_record (named_vars, HOLogic.unit); |
|
| 12247 | 828 |
val extend_spec = Const (full extendN, recT 0 --> moreT --> rec_schemeT 0) $ r 0 $ more :== |
829 |
mk_record (mk_named_sels all_names (r 0), more); |
|
830 |
val truncate_spec = Const (full truncateN, rec_schemeT 0 --> recT 0) $ r_scheme 0 :== |
|
|
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
831 |
mk_record (all_sels, HOLogic.unit); |
| 4894 | 832 |
|
833 |
||
834 |
(* prepare propositions *) |
|
835 |
||
836 |
(*selectors*) |
|
837 |
val sel_props = |
|
| 12247 | 838 |
map (fn (c, x) => mk_sel (rec_scheme 0) c === x) named_vars @ |
839 |
[more_part (rec_scheme 0) === more]; |
|
| 4894 | 840 |
|
841 |
(*updates*) |
|
842 |
fun mk_upd_prop (i, (c, T)) = |
|
843 |
let val x' = Free (variant all_xs (base c ^ "'"), T) in |
|
| 12247 | 844 |
mk_update (rec_scheme 0) (c, x') === |
| 4894 | 845 |
mk_record (nth_update (c, x') (parent_len + i, all_named_vars), more) |
846 |
end; |
|
| 5197 | 847 |
val update_props = |
848 |
ListPair.map mk_upd_prop (idxs, fields) @ |
|
849 |
let val more' = Free (variant all_xs (moreN ^ "'"), moreT) |
|
| 12247 | 850 |
in [more_part_update (rec_scheme 0) more' === mk_record (all_named_vars, more')] end; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
851 |
|
| 9626 | 852 |
(*equality*) |
853 |
fun mk_sel_eq (t, T) = |
|
| 12247 | 854 |
let val t' = Term.abstract_over (r_scheme 0, t) |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
855 |
in Trueprop (HOLogic.eq_const T $ Term.incr_boundvars 1 t' $ t') end; |
| 12247 | 856 |
val sel_eqs = map2 mk_sel_eq |
857 |
(map (mk_sel (r_scheme 0)) all_names @ [more_part (r_scheme 0)], all_types @ [moreT]); |
|
| 9626 | 858 |
val equality_prop = |
| 12247 | 859 |
Term.all (rec_schemeT 0) $ (Abs ("r", rec_schemeT 0,
|
860 |
Term.all (rec_schemeT 0) $ (Abs ("r'", rec_schemeT 0,
|
|
| 9626 | 861 |
Logic.list_implies (sel_eqs, |
| 12247 | 862 |
Trueprop (HOLogic.eq_const (rec_schemeT 0) $ Bound 1 $ Bound 0)))))); |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
863 |
|
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
864 |
(*induct*) |
| 12247 | 865 |
fun induct_scheme_prop n = |
866 |
let val P = Free ("P", rec_schemeT n --> HOLogic.boolT) in
|
|
867 |
(All (prune n all_xs_more ~~ prune n all_types_more) |
|
868 |
(Trueprop (P $ rec_scheme n)), Trueprop (P $ r_scheme n)) |
|
869 |
end; |
|
870 |
fun induct_prop n = |
|
871 |
let val P = Free ("P", recT n --> HOLogic.boolT) in
|
|
872 |
(All (prune n all_xs ~~ prune n all_types) (Trueprop (P $ rec_ n)), Trueprop (P $ r n)) |
|
873 |
end; |
|
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
874 |
|
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
875 |
(*cases*) |
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
876 |
val C = Trueprop (Free (variant all_xs_more "C", HOLogic.boolT)); |
| 12247 | 877 |
fun cases_scheme_prop n = |
878 |
All (prune n all_xs_more ~~ prune n all_types_more) |
|
879 |
((r_scheme n === rec_scheme n) ==> C) ==> C; |
|
| 12255 | 880 |
fun cases_prop n = All (prune n all_xs ~~ prune n all_types) ((r n === rec_ n) ==> C) ==> C; |
| 9626 | 881 |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
882 |
|
| 4890 | 883 |
(* 1st stage: fields_thy *) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
884 |
|
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
885 |
val (fields_thy, field_simps, field_injects, field_splits, field_inducts, field_cases) = |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
886 |
thy |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
887 |
|> Theory.add_path bname |
| 11832 | 888 |
|> field_definitions fields names xs alphas zeta moreT more vars named_vars; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
889 |
|
| 12247 | 890 |
val all_field_inducts = flat (map #field_inducts parents) @ field_inducts; |
891 |
val all_field_cases = flat (map #field_cases parents) @ field_cases; |
|
892 |
||
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
893 |
|
| 4890 | 894 |
(* 2nd stage: defs_thy *) |
895 |
||
|
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
896 |
val (defs_thy, (((sel_defs, update_defs), derived_defs))) = |
| 4890 | 897 |
fields_thy |
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
898 |
|> add_record_splits (map (suffix field_typeN) names) field_splits |
| 4890 | 899 |
|> Theory.parent_path |
| 12255 | 900 |
|> Theory.add_tyabbrs_i recordT_specs |
| 4890 | 901 |
|> Theory.add_path bname |
| 5197 | 902 |
|> Theory.add_trfuns ([], [], field_tr's, []) |
| 12506 | 903 |
|> Theory.add_consts_i |
904 |
(map2 (fn ((x, T), mx) => (x, T, mx)) (sel_decls, field_syntax @ [Syntax.NoSyn])) |
|
| 4894 | 905 |
|> (Theory.add_consts_i o map Syntax.no_syn) |
| 12506 | 906 |
(update_decls @ [make_decl, fields_decl, extend_decl, truncate_decl]) |
| 11832 | 907 |
|> (PureThy.add_defs_i false o map Thm.no_attributes) sel_specs |
908 |
|>>> (PureThy.add_defs_i false o map Thm.no_attributes) update_specs |
|
|
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
909 |
|>>> (PureThy.add_defs_i false o map Thm.no_attributes) |
|
12590
3573830e9b91
hide base name of "make", "fields", "extend", "truncate", "more",
wenzelm
parents:
12506
diff
changeset
|
910 |
[make_spec, fields_spec, extend_spec, truncate_spec] |
|
3573830e9b91
hide base name of "make", "fields", "extend", "truncate", "more",
wenzelm
parents:
12506
diff
changeset
|
911 |
|>> Theory.hide_consts false [full makeN, full fieldsN, full extendN, full truncateN, |
|
3573830e9b91
hide base name of "make", "fields", "extend", "truncate", "more",
wenzelm
parents:
12506
diff
changeset
|
912 |
full moreN, full (suffix updateN moreN)]; |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
913 |
|
| 4890 | 914 |
|
915 |
(* 3rd stage: thms_thy *) |
|
916 |
||
| 12247 | 917 |
val prove_standard = Tactic.prove_standard (Theory.sign_of defs_thy); |
| 11967 | 918 |
fun prove_simp simps = |
919 |
let val tac = simp_all_tac HOL_basic_ss simps |
|
920 |
in fn prop => prove_standard [] [] prop (K tac) end; |
|
| 4890 | 921 |
|
| 11967 | 922 |
val parent_simps = flat (map #simps parents); |
923 |
val sel_convs = map (prove_simp (parent_simps @ sel_defs @ field_simps)) sel_props; |
|
924 |
val update_convs = map (prove_simp (parent_simps @ update_defs @ sel_convs)) update_props; |
|
| 4894 | 925 |
|
| 12247 | 926 |
fun induct_scheme n = |
927 |
let val (assm, concl) = induct_scheme_prop n in |
|
928 |
prove_standard [] [assm] concl (fn prems => |
|
|
13904
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
929 |
EVERY (map (fn rule => try_param_tac rN rule 1) (prune n all_field_inducts)) |
| 12247 | 930 |
THEN resolve_tac prems 1) |
931 |
end; |
|
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
932 |
|
| 12247 | 933 |
fun cases_scheme n = |
934 |
prove_standard [] [] (cases_scheme_prop n) (fn _ => |
|
|
13904
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
935 |
EVERY (map (fn rule => try_param_tac rN rule 1) (prune n all_field_cases)) |
| 11967 | 936 |
THEN simp_all_tac HOL_basic_ss []); |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
937 |
|
| 12247 | 938 |
val induct_scheme0 = induct_scheme 0; |
939 |
val cases_scheme0 = cases_scheme 0; |
|
940 |
val more_induct_scheme = map induct_scheme ancestry; |
|
941 |
val more_cases_scheme = map cases_scheme ancestry; |
|
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
942 |
|
| 12247 | 943 |
val (thms_thy, (([sel_convs', update_convs', sel_defs', update_defs', _], |
944 |
[induct_scheme', cases_scheme']), [more_induct_scheme', more_cases_scheme'])) = |
|
| 11940 | 945 |
defs_thy |
946 |
|> (PureThy.add_thmss o map Thm.no_attributes) |
|
947 |
[("select_convs", sel_convs),
|
|
948 |
("update_convs", update_convs),
|
|
949 |
("select_defs", sel_defs),
|
|
950 |
("update_defs", update_defs),
|
|
| 12265 | 951 |
("defs", derived_defs)]
|
| 11940 | 952 |
|>>> PureThy.add_thms |
| 12255 | 953 |
[(("induct_scheme", induct_scheme0), induct_type_global (suffix schemeN name)),
|
954 |
(("cases_scheme", cases_scheme0), cases_type_global (suffix schemeN name))]
|
|
955 |
|>>> PureThy.add_thmss |
|
956 |
[(("more_induct_scheme", more_induct_scheme), induct_type_global ""),
|
|
957 |
(("more_cases_scheme", more_cases_scheme), cases_type_global "")];
|
|
| 12247 | 958 |
|
959 |
||
960 |
(* 4th stage: more_thms_thy *) |
|
961 |
||
962 |
val prove_standard = Tactic.prove_standard (Theory.sign_of thms_thy); |
|
| 11940 | 963 |
|
| 12247 | 964 |
fun induct (n, scheme) = |
965 |
let val (assm, concl) = induct_prop n in |
|
966 |
prove_standard [] [assm] concl (fn prems => |
|
967 |
res_inst_tac [(rN, rN)] scheme 1 |
|
|
13904
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
968 |
THEN try_param_tac "more" unit_induct 1 |
| 12247 | 969 |
THEN resolve_tac prems 1) |
970 |
end; |
|
971 |
||
972 |
fun cases (n, scheme) = |
|
973 |
prove_standard [] [] (cases_prop n) (fn _ => |
|
974 |
res_inst_tac [(rN, rN)] scheme 1 |
|
975 |
THEN simp_all_tac HOL_basic_ss [unit_all_eq1]); |
|
976 |
||
977 |
val induct0 = induct (0, induct_scheme'); |
|
978 |
val cases0 = cases (0, cases_scheme'); |
|
979 |
val more_induct = map induct (ancestry ~~ more_induct_scheme'); |
|
980 |
val more_cases = map cases (ancestry ~~ more_cases_scheme'); |
|
981 |
||
982 |
val equality = prove_standard [] [] equality_prop (fn _ => |
|
| 11967 | 983 |
fn st => let val [r, r'] = map #1 (rev (Tactic.innermost_params 1 st)) in |
984 |
st |> (res_inst_tac [(rN, r)] cases_scheme' 1 |
|
985 |
THEN res_inst_tac [(rN, r')] cases_scheme' 1 |
|
986 |
THEN simp_all_tac HOL_basic_ss (parent_simps @ sel_convs)) |
|
987 |
end); |
|
988 |
||
| 12247 | 989 |
val (more_thms_thy, [_, _, equality']) = |
990 |
thms_thy |> PureThy.add_thms |
|
| 12255 | 991 |
[(("induct", induct0), induct_type_global name),
|
992 |
(("cases", cases0), cases_type_global name),
|
|
| 12374 | 993 |
(("equality", equality), [ContextRules.intro_bang_global None])]
|
| 12255 | 994 |
|>> (#1 oo PureThy.add_thmss) |
995 |
[(("more_induct", more_induct), induct_type_global ""),
|
|
996 |
(("more_cases", more_cases), cases_type_global "")];
|
|
| 11967 | 997 |
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
998 |
val simps = sel_convs' @ update_convs'; |
| 6519 | 999 |
val iffs = field_injects; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1000 |
|
| 12247 | 1001 |
val more_thms_thy' = |
1002 |
more_thms_thy |> (#1 oo PureThy.add_thmss) |
|
| 5707 | 1003 |
[(("simps", simps), [Simplifier.simp_add_global]),
|
| 6519 | 1004 |
(("iffs", iffs), [iff_add_global])];
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1005 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1006 |
|
| 12247 | 1007 |
(* 5th stage: final_thy *) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1008 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1009 |
val final_thy = |
| 12247 | 1010 |
more_thms_thy' |
1011 |
|> put_record name (make_record_info args parent fields field_inducts field_cases |
|
1012 |
(field_simps @ simps)) |
|
| 11940 | 1013 |
|> put_sel_upd (names @ [full_moreN]) (field_simps @ sel_defs' @ update_defs') |
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
1014 |
|> add_record_equalities (snd (split_last names)) equality' |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1015 |
|> Theory.parent_path; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1016 |
|
| 6519 | 1017 |
in (final_thy, {simps = simps, iffs = iffs}) end;
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1018 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1019 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1020 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1021 |
(** theory extender interface **) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1022 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1023 |
(* prepare arguments *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1024 |
|
| 4894 | 1025 |
(*note: read_raw_typ avoids expanding type abbreviations*) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1026 |
fun read_raw_parent sign s = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1027 |
(case Sign.read_raw_typ (sign, K None) s handle TYPE (msg, _, _) => error msg of |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1028 |
Type (name, Ts) => (Ts, name) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1029 |
| _ => error ("Bad parent record specification: " ^ quote s));
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1030 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1031 |
fun read_typ sign (env, s) = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1032 |
let |
| 5060 | 1033 |
fun def_sort (x, ~1) = assoc (env, x) |
1034 |
| def_sort _ = None; |
|
1035 |
val T = Type.no_tvars (Sign.read_typ (sign, def_sort) s) handle TYPE (msg, _, _) => error msg; |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1036 |
in (Term.add_typ_tfrees (T, env), T) end; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1037 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1038 |
fun cert_typ sign (env, raw_T) = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1039 |
let val T = Type.no_tvars (Sign.certify_typ sign raw_T) handle TYPE (msg, _, _) => error msg |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1040 |
in (Term.add_typ_tfrees (T, env), T) end; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1041 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1042 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1043 |
(* add_record *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1044 |
|
| 4895 | 1045 |
(*we do all preparations and error checks here, deferring the real |
1046 |
work to record_definition*) |
|
| 4890 | 1047 |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1048 |
fun gen_add_record prep_typ prep_raw_parent (params, bname) raw_parent raw_fields thy = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1049 |
let |
| 4970 | 1050 |
val _ = Theory.requires thy "Record" "record definitions"; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1051 |
val sign = Theory.sign_of thy; |
| 5698 | 1052 |
val _ = message ("Defining record " ^ quote bname ^ " ...");
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1053 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1054 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1055 |
(* parents *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1056 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1057 |
fun prep_inst T = snd (cert_typ sign ([], T)); |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1058 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1059 |
val parent = apsome (apfst (map prep_inst) o prep_raw_parent sign) raw_parent |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1060 |
handle ERROR => error ("The error(s) above in parent record specification");
|
| 12247 | 1061 |
val parents = add_parents thy parent []; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1062 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1063 |
val init_env = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1064 |
(case parent of |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1065 |
None => [] |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1066 |
| Some (types, _) => foldr Term.add_typ_tfrees (types, [])); |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1067 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1068 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1069 |
(* fields *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1070 |
|
| 12506 | 1071 |
fun prep_field (env, (c, raw_T, mx)) = |
| 4967 | 1072 |
let val (env', T) = prep_typ sign (env, raw_T) handle ERROR => |
1073 |
error ("The error(s) above occured in field " ^ quote c)
|
|
| 12506 | 1074 |
in (env', (c, T, mx)) end; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1075 |
|
| 4967 | 1076 |
val (envir, bfields) = foldl_map prep_field (init_env, raw_fields); |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1077 |
val envir_names = map fst envir; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1078 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1079 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1080 |
(* args *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1081 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1082 |
val defaultS = Sign.defaultS sign; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1083 |
val args = map (fn x => (x, if_none (assoc (envir, x)) defaultS)) params; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1084 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1085 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1086 |
(* errors *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1087 |
|
| 4890 | 1088 |
val name = Sign.full_name sign bname; |
1089 |
val err_dup_record = |
|
1090 |
if is_none (get_record thy name) then [] |
|
1091 |
else ["Duplicate definition of record " ^ quote name]; |
|
1092 |
||
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1093 |
val err_dup_parms = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1094 |
(case duplicates params of |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1095 |
[] => [] |
| 4890 | 1096 |
| dups => ["Duplicate parameter(s) " ^ commas dups]); |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1097 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1098 |
val err_extra_frees = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1099 |
(case gen_rems (op =) (envir_names, params) of |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1100 |
[] => [] |
| 4890 | 1101 |
| extras => ["Extra free type variable(s) " ^ commas extras]); |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1102 |
|
| 4890 | 1103 |
val err_no_fields = if null bfields then ["No fields present"] else []; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1104 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1105 |
val err_dup_fields = |
| 12506 | 1106 |
(case duplicates (map #1 bfields) of |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1107 |
[] => [] |
| 4890 | 1108 |
| dups => ["Duplicate field(s) " ^ commas_quote dups]); |
1109 |
||
1110 |
val err_bad_fields = |
|
| 12506 | 1111 |
if forall (not_equal moreN o #1) bfields then [] |
| 4890 | 1112 |
else ["Illegal field name " ^ quote moreN]; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1113 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1114 |
val err_dup_sorts = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1115 |
(case duplicates envir_names of |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1116 |
[] => [] |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1117 |
| dups => ["Inconsistent sort constraints for " ^ commas dups]); |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1118 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1119 |
val errs = |
| 4890 | 1120 |
err_dup_record @ err_dup_parms @ err_extra_frees @ err_no_fields @ |
1121 |
err_dup_fields @ err_bad_fields @ err_dup_sorts; |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1122 |
in |
| 4890 | 1123 |
if null errs then () else error (cat_lines errs); |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1124 |
thy |> record_definition (args, bname) parent parents bfields |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1125 |
end |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1126 |
handle ERROR => error ("Failed to define record " ^ quote bname);
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1127 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1128 |
val add_record = gen_add_record read_typ read_raw_parent; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1129 |
val add_record_i = gen_add_record cert_typ (K I); |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1130 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1131 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1132 |
|
| 6358 | 1133 |
(** package setup **) |
1134 |
||
1135 |
(* setup theory *) |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1136 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1137 |
val setup = |
| 5006 | 1138 |
[RecordsData.init, |
|
11490
f9ae28f55178
field_name_ast_tr superceded by constify_ast_tr in Pure;
wenzelm
parents:
11473
diff
changeset
|
1139 |
Theory.add_trfuns ([], parse_translation, [], []), |
| 6358 | 1140 |
Method.add_methods [record_split_method], |
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
1141 |
Simplifier.change_simpset_of Simplifier.addsimprocs |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
1142 |
[record_simproc, record_eq_simproc]]; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1143 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1144 |
|
| 6358 | 1145 |
(* outer syntax *) |
1146 |
||
| 6723 | 1147 |
local structure P = OuterParse and K = OuterSyntax.Keyword in |
| 6358 | 1148 |
|
1149 |
val record_decl = |
|
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12590
diff
changeset
|
1150 |
P.type_args -- P.name -- |
|
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12590
diff
changeset
|
1151 |
(P.$$$ "=" |-- Scan.option (P.typ --| P.$$$ "+") -- Scan.repeat1 P.const); |
| 6358 | 1152 |
|
1153 |
val recordP = |
|
| 6723 | 1154 |
OuterSyntax.command "record" "define extensible record" K.thy_decl |
| 6519 | 1155 |
(record_decl >> (fn (x, (y, z)) => Toplevel.theory (#1 o add_record x y z))); |
| 6358 | 1156 |
|
1157 |
val _ = OuterSyntax.add_parsers [recordP]; |
|
1158 |
||
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1159 |
end; |
| 5698 | 1160 |
|
| 6384 | 1161 |
end; |
1162 |
||
| 5698 | 1163 |
structure BasicRecordPackage: BASIC_RECORD_PACKAGE = RecordPackage; |
1164 |
open BasicRecordPackage; |