| author | paulson |
| Fri, 19 Mar 2004 10:42:38 +0100 | |
| changeset 14472 | cba7c0a3ffb3 |
| parent 14427 | cea7d2f76112 |
| child 14579 | e79f1923fa0a |
| 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 |
| 14255 | 16 |
val print_record_type_abbr: bool ref |
| 5698 | 17 |
end; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
18 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
19 |
signature RECORD_PACKAGE = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
20 |
sig |
| 5698 | 21 |
include BASIC_RECORD_PACKAGE |
22 |
val quiet_mode: bool ref |
|
| 8574 | 23 |
val updateN: string |
| 4890 | 24 |
val mk_fieldT: (string * typ) * typ -> typ |
25 |
val dest_fieldT: typ -> (string * typ) * typ |
|
| 14255 | 26 |
val dest_fieldTs: typ -> (string * typ) list |
27 |
val last_fieldT: typ -> (string * typ) option |
|
| 14358 | 28 |
val last_field: Sign.sg -> string -> (string * typ) option |
29 |
val get_parents: Sign.sg -> string -> string list |
|
| 4890 | 30 |
val mk_field: (string * term) * term -> term |
31 |
val mk_fst: term -> term |
|
32 |
val mk_snd: term -> term |
|
33 |
val mk_recordT: (string * typ) list * typ -> typ |
|
34 |
val dest_recordT: typ -> (string * typ) list * typ |
|
35 |
val mk_record: (string * term) list * term -> term |
|
36 |
val mk_sel: term -> string -> term |
|
37 |
val mk_update: term -> string * term -> term |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
38 |
val print_records: theory -> unit |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
39 |
val add_record: (string list * bstring) -> string option |
| 12506 | 40 |
-> (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
|
41 |
val add_record_i: (string list * bstring) -> (typ list * string) option |
| 12506 | 42 |
-> (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
|
43 |
val setup: (theory -> theory) list |
| 14255 | 44 |
val record_upd_simproc: simproc |
45 |
val record_split_simproc: (term -> bool) -> simproc |
|
| 14427 | 46 |
val record_ex_sel_eq_simproc: simproc |
| 14255 | 47 |
val record_split_simp_tac: (term -> bool) -> int -> tactic |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
48 |
end; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
49 |
|
| 14358 | 50 |
structure RecordPackage: RECORD_PACKAGE = |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
51 |
struct |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
52 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
53 |
|
| 11832 | 54 |
(*** theory context references ***) |
55 |
||
56 |
val product_typeN = "Record.product_type"; |
|
57 |
||
| 13419 | 58 |
val product_type_intro = thm "product_type.intro"; |
| 13413 | 59 |
val product_type_inject = thm "product_type.inject"; |
60 |
val product_type_conv1 = thm "product_type.conv1"; |
|
61 |
val product_type_conv2 = thm "product_type.conv2"; |
|
62 |
val product_type_induct = thm "product_type.induct"; |
|
63 |
val product_type_cases = thm "product_type.cases"; |
|
64 |
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
|
65 |
val product_type_split_paired_All = thm "product_type.split_paired_All"; |
| 11832 | 66 |
|
67 |
||
68 |
||
| 4894 | 69 |
(*** utilities ***) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
70 |
|
| 5698 | 71 |
(* messages *) |
72 |
||
73 |
val quiet_mode = ref false; |
|
74 |
fun message s = if ! quiet_mode then () else writeln s; |
|
75 |
||
76 |
||
| 12255 | 77 |
(* syntax *) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
78 |
|
| 12247 | 79 |
fun prune n xs = Library.drop (n, xs); |
| 11832 | 80 |
fun prefix_base s = NameSpace.map_base (fn bname => s ^ bname); |
81 |
||
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
82 |
val Trueprop = HOLogic.mk_Trueprop; |
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
83 |
fun All xs t = Term.list_all_free (xs, t); |
| 4894 | 84 |
|
|
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
85 |
infix 9 $$; |
|
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
86 |
infix 0 :== ===; |
|
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
87 |
infixr 0 ==>; |
|
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
88 |
|
|
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
89 |
val (op $$) = Term.list_comb; |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
90 |
val (op :==) = Logic.mk_defpair; |
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
91 |
val (op ===) = Trueprop o HOLogic.mk_eq; |
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
92 |
val (op ==>) = Logic.mk_implies; |
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
93 |
|
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
94 |
|
| 12255 | 95 |
(* attributes *) |
96 |
||
| 12302 | 97 |
fun case_names_fields x = RuleCases.case_names ["fields"] x; |
| 12255 | 98 |
fun induct_type_global name = [case_names_fields, InductAttrib.induct_type_global name]; |
99 |
fun cases_type_global name = [case_names_fields, InductAttrib.cases_type_global name]; |
|
100 |
||
101 |
||
102 |
(* tactics *) |
|
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
103 |
|
| 11967 | 104 |
fun simp_all_tac ss simps = ALLGOALS (Simplifier.asm_full_simp_tac (ss addsimps simps)); |
| 4895 | 105 |
|
|
13904
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
106 |
(* 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
|
107 |
|
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
108 |
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
|
109 |
let |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
110 |
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
|
111 |
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
|
112 |
val params = Logic.strip_params g; |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
113 |
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
|
114 |
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
|
115 |
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
|
116 |
(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
|
117 |
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
|
118 |
[] => (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
|
119 |
(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
|
120 |
| [x] => (head_of x, false)); |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
121 |
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
|
122 |
[] => (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
|
123 |
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
|
124 |
| 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
|
125 |
(x, Free (s, T))]) |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
126 |
| (_, 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
|
127 |
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
|
128 |
(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
|
129 |
in compose_tac (false, rule'', nprems_of rule) i st end; |
| 4894 | 130 |
|
131 |
||
132 |
||
| 12449 | 133 |
(*** code generator data ***) |
134 |
||
135 |
val [prod_code, fst_code, snd_code] = |
|
136 |
map (Codegen.parse_mixfix (K (Bound 0))) ["(_,/ _)", "fst", "snd"]; |
|
137 |
val prodT_code = Codegen.parse_mixfix (K dummyT) "(_ */ _)"; |
|
138 |
||
139 |
||
140 |
||
| 4894 | 141 |
(*** syntax operations ***) |
142 |
||
143 |
(** name components **) |
|
144 |
||
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
145 |
val rN = "r"; |
| 4894 | 146 |
val moreN = "more"; |
147 |
val schemeN = "_scheme"; |
|
| 11832 | 148 |
val field_typeN = "_field_type"; |
| 4894 | 149 |
val fieldN = "_field"; |
| 5698 | 150 |
val fstN = "_val"; |
151 |
val sndN = "_more"; |
|
| 4894 | 152 |
val updateN = "_update"; |
153 |
val makeN = "make"; |
|
| 12265 | 154 |
val fieldsN = "fields"; |
|
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
155 |
val extendN = "extend"; |
|
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
156 |
val truncateN = "truncate"; |
|
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
157 |
|
| 4890 | 158 |
|
| 11832 | 159 |
(*see typedef_package.ML*) |
160 |
val RepN = "Rep_"; |
|
161 |
val AbsN = "Abs_"; |
|
| 5698 | 162 |
|
163 |
||
| 5713 | 164 |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
165 |
(** tuple operations **) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
166 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
167 |
(* types *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
168 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
169 |
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
|
170 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
171 |
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
|
172 |
(case try (unsuffix field_typeN) c_field_type of |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
173 |
None => raise TYPE ("dest_fieldT", [typ], [])
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
174 |
| Some c => ((c, T), U)) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
175 |
| dest_fieldT typ = raise TYPE ("dest_fieldT", [typ], []);
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
176 |
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
177 |
fun dest_fieldTs T = |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
178 |
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
|
179 |
in (c, T) :: dest_fieldTs U |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
180 |
end handle TYPE _ => []; |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
181 |
|
| 14255 | 182 |
fun last_fieldT T = |
183 |
let val ((c, T), U) = dest_fieldT T |
|
184 |
in (case last_fieldT U of |
|
185 |
None => Some (c,T) |
|
186 |
| Some l => Some l) |
|
187 |
end handle TYPE _ => None |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
188 |
|
| 11832 | 189 |
(* morphisms *) |
190 |
||
191 |
fun mk_Rep U (c, T) = |
|
192 |
Const (suffix field_typeN (prefix_base RepN c), |
|
193 |
mk_fieldT ((c, T), U) --> HOLogic.mk_prodT (T, U)); |
|
194 |
||
195 |
fun mk_Abs U (c, T) = |
|
196 |
Const (suffix field_typeN (prefix_base AbsN c), |
|
197 |
HOLogic.mk_prodT (T, U) --> mk_fieldT ((c, T), U)); |
|
| 11833 | 198 |
|
| 11832 | 199 |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
200 |
(* constructors *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
201 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
202 |
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
|
203 |
|
| 11832 | 204 |
fun mk_field ((c, t), u) = |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
205 |
let val T = fastype_of t and U = fastype_of u |
| 11832 | 206 |
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
|
207 |
|
|
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 |
(* destructors *) |
|
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 |
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
|
212 |
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
|
213 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
214 |
fun dest_field fst_or_snd p = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
215 |
let |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
216 |
val pT = fastype_of p; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
217 |
val ((c, T), U) = dest_fieldT pT; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
218 |
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
|
219 |
in Const (suffix destN c, pT --> destT) $ p end; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
220 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
221 |
val mk_fst = dest_field true; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
222 |
val mk_snd = dest_field false; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
223 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
224 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
225 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
226 |
(** record operations **) |
|
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 |
(* types *) |
|
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_recordT = foldr mk_fieldT; |
|
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 |
fun dest_recordT T = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
233 |
(case try dest_fieldT T of |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
234 |
None => ([], T) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
235 |
| 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
|
236 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
237 |
fun find_fieldT c rT = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
238 |
(case assoc (fst (dest_recordT rT), c) of |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
239 |
None => raise TYPE ("find_field: " ^ c, [rT], [])
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
240 |
| Some T => T); |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
241 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
242 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
243 |
(* constructors *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
244 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
245 |
val mk_record = foldr mk_field; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
246 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
247 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
248 |
(* selectors *) |
|
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 |
fun mk_selC rT (c, T) = (c, rT --> T); |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
251 |
|
| 4890 | 252 |
fun mk_sel r c = |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
253 |
let val rT = fastype_of r |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
254 |
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
|
255 |
|
|
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
256 |
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
|
257 |
|
| 4894 | 258 |
val mk_moreC = mk_selC; |
259 |
||
260 |
fun mk_more r c = |
|
261 |
let val rT = fastype_of r |
|
262 |
in Const (mk_moreC rT (c, snd (dest_recordT rT))) $ 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 |
(* updates *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
266 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
267 |
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
|
268 |
|
| 4890 | 269 |
fun mk_update r (c, x) = |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
270 |
let val rT = fastype_of r |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
271 |
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
|
272 |
|
| 5197 | 273 |
val mk_more_updateC = mk_updateC; |
274 |
||
275 |
fun mk_more_update r (c, x) = |
|
276 |
let val rT = fastype_of r |
|
277 |
in Const (mk_more_updateC rT (c, snd (dest_recordT rT))) $ x $ r end; |
|
278 |
||
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
279 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
280 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
281 |
(** concrete syntax for records **) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
282 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
283 |
(* parse translations *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
284 |
|
|
11473
4546d8d39221
fix problem with user translations by making field names appear as consts;
wenzelm
parents:
10008
diff
changeset
|
285 |
fun gen_field_tr mark sfx (t as Const (c, _) $ Const (name, _) $ arg) = |
| 5197 | 286 |
if c = mark then Syntax.const (suffix sfx name) $ arg |
287 |
else raise TERM ("gen_field_tr: " ^ mark, [t])
|
|
288 |
| 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
|
289 |
|
| 5197 | 290 |
fun gen_fields_tr sep mark sfx (tm as Const (c, _) $ t $ u) = |
291 |
if c = sep then gen_field_tr mark sfx t :: gen_fields_tr sep mark sfx u |
|
| 5201 | 292 |
else [gen_field_tr mark sfx tm] |
293 |
| gen_fields_tr _ mark sfx tm = [gen_field_tr mark sfx tm]; |
|
| 5197 | 294 |
|
295 |
fun gen_record_tr sep mark sfx unit [t] = foldr (op $) (gen_fields_tr sep mark sfx t, unit) |
|
| 5201 | 296 |
| gen_record_tr _ _ _ _ ts = raise TERM ("gen_record_tr", ts);
|
| 5197 | 297 |
|
298 |
fun gen_record_scheme_tr sep mark sfx [t, more] = foldr (op $) (gen_fields_tr sep mark sfx t, more) |
|
| 5201 | 299 |
| gen_record_scheme_tr _ _ _ ts = raise TERM ("gen_record_scheme_tr", ts);
|
| 5197 | 300 |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
301 |
|
| 5197 | 302 |
val record_type_tr = gen_record_tr "_field_types" "_field_type" field_typeN (Syntax.const "unit"); |
303 |
val record_type_scheme_tr = gen_record_scheme_tr "_field_types" "_field_type" field_typeN; |
|
304 |
||
305 |
val record_tr = gen_record_tr "_fields" "_field" fieldN HOLogic.unit; |
|
306 |
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
|
307 |
|
| 5197 | 308 |
fun record_update_tr [t, u] = |
309 |
foldr (op $) (rev (gen_fields_tr "_updates" "_update" updateN u), t) |
|
310 |
| record_update_tr ts = raise TERM ("record_update_tr", ts);
|
|
311 |
||
312 |
||
|
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
313 |
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
|
314 |
| update_name_tr (Const (x, T) :: ts) = Const (suffix updateN x, T) $$ ts |
| 11833 | 315 |
| 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
|
316 |
(c $ update_name_tr [t] $ (Syntax.const "fun" $ ty $ Syntax.const "dummy")) $$ ts |
| 11833 | 317 |
| update_name_tr ts = raise TERM ("update_name_tr", ts);
|
318 |
||
319 |
||
| 5197 | 320 |
val parse_translation = |
321 |
[("_record_type", record_type_tr),
|
|
322 |
("_record_type_scheme", record_type_scheme_tr),
|
|
323 |
("_record", record_tr),
|
|
324 |
("_record_scheme", record_scheme_tr),
|
|
| 11833 | 325 |
("_record_update", record_update_tr),
|
326 |
("_update_name", update_name_tr)];
|
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
327 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
328 |
|
| 4890 | 329 |
(* print translations *) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
330 |
|
| 14255 | 331 |
|
332 |
val print_record_type_abbr = ref true; |
|
333 |
||
| 5197 | 334 |
fun gen_fields_tr' mark sfx (tm as Const (name_field, _) $ t $ u) = |
335 |
(case try (unsuffix sfx) name_field of |
|
336 |
Some name => |
|
337 |
apfst (cons (Syntax.const mark $ Syntax.free name $ t)) (gen_fields_tr' mark sfx u) |
|
338 |
| None => ([], tm)) |
|
339 |
| gen_fields_tr' _ _ tm = ([], tm); |
|
340 |
||
341 |
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
|
342 |
let |
| 5197 | 343 |
val (ts, u) = gen_fields_tr' mark sfx tm; |
344 |
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
|
345 |
in |
| 5197 | 346 |
if is_unit u then Syntax.const record $ t' |
347 |
else Syntax.const record_scheme $ t' $ u |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
348 |
end; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
349 |
|
| 5197 | 350 |
|
351 |
val record_type_tr' = |
|
352 |
gen_record_tr' "_field_types" "_field_type" field_typeN |
|
353 |
(fn Const ("unit", _) => true | _ => false) "_record_type" "_record_type_scheme";
|
|
354 |
||
| 14255 | 355 |
|
356 |
(* record_type_abbr_tr' tries to reconstruct the record name type abbreviation from *) |
|
357 |
(* the (nested) field types. *) |
|
| 14358 | 358 |
fun record_type_abbr_tr' sg abbr alphas zeta lastF rec_schemeT tm = |
| 14255 | 359 |
let |
360 |
(* tm is term representation of a (nested) field type. We first reconstruct the *) |
|
361 |
(* type from tm so that we can continue on the type level rather then the term level.*) |
|
362 |
||
363 |
fun get_sort xs n = (case assoc (xs,n) of |
|
364 |
Some s => s |
|
365 |
| None => Sign.defaultS sg); |
|
366 |
||
367 |
val T = Sign.intern_typ sg (Syntax.typ_of_term (get_sort (Syntax.raw_term_sorts tm)) I tm) |
|
368 |
val {tsig,...} = Sign.rep_sg sg
|
|
369 |
||
370 |
fun mk_type_abbr subst name alphas = |
|
371 |
let val abbrT = Type (name, map (fn a => TVar ((a,0),logicS)) alphas); |
|
372 |
in Syntax.term_of_typ (! Syntax.show_sorts) (Envir.norm_type subst abbrT) end; |
|
373 |
||
374 |
fun unify rT T = fst (Type.unify tsig (Vartab.empty,0) (Type.varifyT rT,T)) |
|
375 |
||
376 |
in if !print_record_type_abbr |
|
377 |
then (case last_fieldT T of |
|
378 |
Some (name,_) |
|
379 |
=> if name = lastF |
|
380 |
then |
|
381 |
let val subst = unify rec_schemeT T |
|
382 |
in |
|
383 |
if HOLogic.is_unitT (Envir.norm_type subst (TVar((zeta,0),Sign.defaultS sg))) |
|
384 |
then mk_type_abbr subst abbr alphas |
|
385 |
else mk_type_abbr subst (suffix schemeN abbr) (alphas@[zeta]) |
|
386 |
end handle TUNIFY => record_type_tr' tm |
|
387 |
else raise Match (* give print translation of specialised record a chance *) |
|
388 |
| _ => record_type_tr' tm) |
|
389 |
else record_type_tr' tm |
|
390 |
end |
|
391 |
||
392 |
||
| 14358 | 393 |
fun gen_record_type_abbr_tr' sg abbr alphas zeta lastF rec_schemeT name = |
| 14255 | 394 |
let val name_sfx = suffix field_typeN name |
| 14358 | 395 |
val tr' = record_type_abbr_tr' sg abbr alphas zeta lastF rec_schemeT |
| 14255 | 396 |
in (name_sfx, fn [t,u] => tr' (Syntax.const name_sfx $ t $ u) | _ => raise Match) end; |
397 |
||
| 5197 | 398 |
val record_tr' = |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
399 |
gen_record_tr' "_fields" "_field" fieldN |
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
400 |
(fn Const ("Unity", _) => true | _ => false) "_record" "_record_scheme";
|
| 5197 | 401 |
|
402 |
fun record_update_tr' tm = |
|
403 |
let val (ts, u) = gen_fields_tr' "_update" updateN tm in |
|
404 |
Syntax.const "_record_update" $ u $ |
|
405 |
foldr1 (fn (v, w) => Syntax.const "_updates" $ v $ w) (rev ts) |
|
406 |
end; |
|
407 |
||
| 5201 | 408 |
fun gen_field_tr' sfx tr' name = |
409 |
let val name_sfx = suffix sfx name |
|
410 |
in (name_sfx, fn [t, u] => tr' (Syntax.const name_sfx $ t $ u) | _ => raise Match) end; |
|
411 |
||
| 5197 | 412 |
fun print_translation names = |
413 |
map (gen_field_tr' fieldN record_tr') names @ |
|
414 |
map (gen_field_tr' updateN record_update_tr') names; |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
415 |
|
| 14255 | 416 |
fun print_translation_field_types names = |
417 |
map (gen_field_tr' field_typeN record_type_tr') names |
|
418 |
||
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
419 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
420 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
421 |
(*** extend theory by record definition ***) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
422 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
423 |
(** record info **) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
424 |
|
| 14255 | 425 |
(* type record_info and parent_info *) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
426 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
427 |
type record_info = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
428 |
{args: (string * sort) list,
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
429 |
parent: (typ list * string) option, |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
430 |
fields: (string * typ) list, |
| 12247 | 431 |
field_inducts: thm list, |
432 |
field_cases: thm list, |
|
| 14255 | 433 |
field_splits: thm list, |
| 12247 | 434 |
simps: thm list}; |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
435 |
|
| 14255 | 436 |
fun make_record_info args parent fields field_inducts field_cases field_splits simps = |
| 12247 | 437 |
{args = args, parent = parent, fields = fields, field_inducts = field_inducts,
|
| 14255 | 438 |
field_cases = field_cases, field_splits = field_splits, simps = simps}: record_info; |
|
4867
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 |
type parent_info = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
441 |
{name: string,
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
442 |
fields: (string * typ) list, |
| 12247 | 443 |
field_inducts: thm list, |
444 |
field_cases: thm list, |
|
| 14255 | 445 |
field_splits: thm list, |
| 12247 | 446 |
simps: thm list}; |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
447 |
|
| 14255 | 448 |
fun make_parent_info name fields field_inducts field_cases field_splits simps = |
| 12247 | 449 |
{name = name, fields = fields, field_inducts = field_inducts,
|
| 14255 | 450 |
field_cases = field_cases, field_splits = field_splits, simps = simps}: parent_info; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
451 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
452 |
|
| 5052 | 453 |
(* data kind 'HOL/records' *) |
| 5001 | 454 |
|
| 7178 | 455 |
type record_data = |
456 |
{records: record_info Symtab.table,
|
|
457 |
sel_upd: |
|
458 |
{selectors: unit Symtab.table,
|
|
459 |
updates: string Symtab.table, |
|
460 |
simpset: Simplifier.simpset}, |
|
461 |
field_splits: |
|
462 |
{fields: unit Symtab.table,
|
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
463 |
simpset: Simplifier.simpset}, |
| 14255 | 464 |
equalities: thm Symtab.table, |
465 |
splits: (thm*thm*thm*thm) Symtab.table (* !!,!,EX - split-equalities,induct rule *) |
|
466 |
}; |
|
| 7178 | 467 |
|
| 14255 | 468 |
fun make_record_data records sel_upd field_splits equalities splits = |
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
469 |
{records = records, sel_upd = sel_upd, field_splits = field_splits,
|
| 14255 | 470 |
equalities = equalities, splits = splits}: record_data; |
| 7178 | 471 |
|
| 5006 | 472 |
structure RecordsArgs = |
473 |
struct |
|
474 |
val name = "HOL/records"; |
|
| 7178 | 475 |
type T = record_data; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
476 |
|
| 7178 | 477 |
val empty = |
478 |
make_record_data Symtab.empty |
|
479 |
{selectors = Symtab.empty, updates = Symtab.empty, simpset = HOL_basic_ss}
|
|
| 14255 | 480 |
{fields = Symtab.empty, simpset = HOL_basic_ss} Symtab.empty Symtab.empty;
|
| 7178 | 481 |
|
| 6556 | 482 |
val copy = I; |
| 5006 | 483 |
val prep_ext = I; |
| 7178 | 484 |
fun merge |
485 |
({records = recs1,
|
|
486 |
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
|
487 |
field_splits = {fields = flds1, simpset = fld_ss1},
|
| 14255 | 488 |
equalities = equalities1, |
489 |
splits = splits1}, |
|
| 7178 | 490 |
{records = recs2,
|
491 |
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
|
492 |
field_splits = {fields = flds2, simpset = fld_ss2},
|
| 14255 | 493 |
equalities = equalities2, |
494 |
splits = splits2}) = |
|
495 |
make_record_data |
|
| 7178 | 496 |
(Symtab.merge (K true) (recs1, recs2)) |
497 |
{selectors = Symtab.merge (K true) (sels1, sels2),
|
|
498 |
updates = Symtab.merge (K true) (upds1, upds2), |
|
499 |
simpset = Simplifier.merge_ss (ss1, ss2)} |
|
500 |
{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
|
501 |
simpset = Simplifier.merge_ss (fld_ss1, fld_ss2)} |
| 14255 | 502 |
(Symtab.merge Thm.eq_thm (equalities1, equalities2)) |
503 |
(Symtab.merge (fn ((a,b,c,d),(w,x,y,z)) |
|
504 |
=> Thm.eq_thm (a,w) andalso Thm.eq_thm (b,x) andalso |
|
505 |
Thm.eq_thm (c,y) andalso Thm.eq_thm (d,z)) |
|
506 |
(splits1, splits2)); |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
507 |
|
| 7178 | 508 |
fun print sg ({records = recs, ...}: record_data) =
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
509 |
let |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
510 |
val prt_typ = Sign.pretty_typ sg; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
511 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
512 |
fun pretty_parent None = [] |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
513 |
| pretty_parent (Some (Ts, name)) = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
514 |
[Pretty.block [prt_typ (Type (name, Ts)), Pretty.str " +"]]; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
515 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
516 |
fun pretty_field (c, T) = Pretty.block |
| 12129 | 517 |
[Pretty.str (Sign.cond_extern sg Sign.constK c), Pretty.str " ::", |
518 |
Pretty.brk 1, Pretty.quote (prt_typ T)]; |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
519 |
|
| 12247 | 520 |
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
|
521 |
Pretty.block (Pretty.fbreaks (Pretty.block |
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
522 |
[prt_typ (Type (name, map TFree args)), Pretty.str " = "] :: |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
523 |
pretty_parent parent @ map pretty_field fields)); |
| 12129 | 524 |
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
|
525 |
end; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
526 |
|
| 5006 | 527 |
structure RecordsData = TheoryDataFun(RecordsArgs); |
528 |
val print_records = RecordsData.print; |
|
529 |
||
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
530 |
|
| 7178 | 531 |
(* access 'records' *) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
532 |
|
| 7178 | 533 |
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
|
534 |
|
| 4890 | 535 |
fun put_record name info thy = |
| 7178 | 536 |
let |
| 14255 | 537 |
val {records, sel_upd, field_splits, equalities, splits} = RecordsData.get thy;
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
538 |
val data = make_record_data (Symtab.update ((name, info), records)) |
| 14255 | 539 |
sel_upd field_splits equalities splits; |
| 7178 | 540 |
in RecordsData.put data thy end; |
541 |
||
542 |
||
543 |
(* access 'sel_upd' *) |
|
544 |
||
545 |
fun get_sel_upd sg = #sel_upd (RecordsData.get_sg sg); |
|
546 |
||
547 |
fun get_selectors sg name = Symtab.lookup (#selectors (get_sel_upd sg), name); |
|
548 |
fun get_updates sg name = Symtab.lookup (#updates (get_sel_upd sg), name); |
|
549 |
fun get_simpset sg = #simpset (get_sel_upd sg); |
|
550 |
||
551 |
fun put_sel_upd names simps thy = |
|
552 |
let |
|
553 |
val sels = map (rpair ()) names; |
|
554 |
val upds = map (suffix updateN) names ~~ names; |
|
555 |
||
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
556 |
val {records, sel_upd = {selectors, updates, simpset}, field_splits,
|
| 14255 | 557 |
equalities, splits} = RecordsData.get thy; |
| 7178 | 558 |
val data = make_record_data records |
559 |
{selectors = Symtab.extend (selectors, sels),
|
|
560 |
updates = Symtab.extend (updates, upds), |
|
561 |
simpset = Simplifier.addsimps (simpset, simps)} |
|
| 14255 | 562 |
field_splits equalities splits; |
| 7178 | 563 |
in RecordsData.put data thy end; |
564 |
||
565 |
||
566 |
(* access 'field_splits' *) |
|
| 5698 | 567 |
|
| 14255 | 568 |
fun add_field_splits names simps thy = |
| 5698 | 569 |
let |
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
570 |
val {records, sel_upd, field_splits = {fields, simpset},
|
| 14255 | 571 |
equalities, splits} = RecordsData.get thy; |
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
572 |
val flds = map (rpair ()) names; |
| 7178 | 573 |
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
|
574 |
{fields = Symtab.extend (fields, flds),
|
| 14255 | 575 |
simpset = Simplifier.addsimps (simpset, simps)} equalities splits; |
| 7178 | 576 |
in RecordsData.put data thy end; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
577 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
578 |
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
579 |
(* access 'equalities' *) |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
580 |
|
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
581 |
fun add_record_equalities name thm thy = |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
582 |
let |
| 14255 | 583 |
val {records, sel_upd, field_splits, equalities, splits} = RecordsData.get thy;
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
584 |
val data = make_record_data records sel_upd field_splits |
| 14255 | 585 |
(Symtab.update_new ((name, thm), equalities)) splits; |
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
586 |
in RecordsData.put data thy end; |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
587 |
|
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
588 |
fun get_equalities sg name = |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
589 |
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
|
590 |
|
| 14255 | 591 |
(* access 'splits' *) |
592 |
||
593 |
fun add_record_splits name thmP thy = |
|
594 |
let |
|
595 |
val {records, sel_upd, field_splits, equalities, splits} = RecordsData.get thy;
|
|
596 |
val data = make_record_data records sel_upd field_splits |
|
597 |
equalities (Symtab.update_new ((name, thmP), splits)); |
|
598 |
in RecordsData.put data thy end; |
|
599 |
||
600 |
fun get_splits sg name = |
|
601 |
Symtab.lookup (#splits (RecordsData.get_sg sg), name); |
|
602 |
||
| 14358 | 603 |
(* last field of a record *) |
604 |
fun last_field sg name = |
|
605 |
case Symtab.lookup (#records (RecordsData.get_sg sg),name) of |
|
606 |
Some r => Some (hd (rev (#fields r))) |
|
607 |
| None => None; |
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
608 |
|
| 14358 | 609 |
(* get parent names *) |
610 |
fun get_parents sg name = |
|
611 |
(case Symtab.lookup (#records (RecordsData.get_sg sg),name) of |
|
612 |
Some r => (case #parent r of |
|
613 |
Some (_,p) => p::get_parents sg p |
|
614 |
| None => []) |
|
615 |
| None => []) |
|
616 |
||
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
617 |
(* parent records *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
618 |
|
| 12247 | 619 |
fun add_parents thy None parents = parents |
620 |
| add_parents thy (Some (types, name)) parents = |
|
621 |
let |
|
622 |
val sign = Theory.sign_of thy; |
|
623 |
fun err msg = error (msg ^ " parent record " ^ quote name); |
|
| 12255 | 624 |
|
| 14255 | 625 |
val {args, parent, fields, field_inducts, field_cases, field_splits, simps} =
|
| 12247 | 626 |
(case get_record thy name of Some info => info | None => err "Unknown"); |
627 |
val _ = if length types <> length args then err "Bad number of arguments for" else (); |
|
| 12255 | 628 |
|
| 12247 | 629 |
fun bad_inst ((x, S), T) = |
630 |
if Sign.of_sort sign (T, S) then None else Some x |
|
631 |
val bads = mapfilter bad_inst (args ~~ types); |
|
| 12255 | 632 |
|
| 12247 | 633 |
val inst = map fst args ~~ types; |
634 |
val subst = Term.map_type_tfree (fn (x, _) => the (assoc (inst, x))); |
|
635 |
val parent' = apsome (apfst (map subst)) parent; |
|
636 |
val fields' = map (apsnd subst) fields; |
|
637 |
in |
|
| 12255 | 638 |
conditional (not (null bads)) (fn () => |
639 |
err ("Ill-sorted instantiation of " ^ commas bads ^ " in"));
|
|
640 |
add_parents thy parent' |
|
| 14255 | 641 |
(make_parent_info name fields' field_inducts field_cases field_splits simps::parents) |
| 12247 | 642 |
end; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
643 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
644 |
|
| 14358 | 645 |
|
| 14255 | 646 |
(** record simprocs **) |
647 |
||
648 |
fun quick_and_dirty_prove sg xs asms prop tac = |
|
649 |
Tactic.prove sg xs asms prop |
|
650 |
(if ! quick_and_dirty then (K (SkipProof.cheat_tac HOL.thy)) else tac); |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
651 |
|
| 14255 | 652 |
|
653 |
fun prove_split_simp sg T prop = |
|
654 |
(case last_fieldT T of |
|
655 |
Some (name,_) => (case get_splits sg name of |
|
656 |
Some (all_thm,_,_,_) |
|
657 |
=> let val {sel_upd={simpset,...},...} = RecordsData.get_sg sg;
|
|
658 |
in (quick_and_dirty_prove sg [] [] prop |
|
659 |
(K (simp_tac (simpset addsimps [all_thm]) 1))) |
|
660 |
end |
|
661 |
| _ => error "RecordPackage.prove_split_simp: code should never been reached") |
|
662 |
| _ => error "RecordPackage.prove_split_simp: code should never been reached") |
|
663 |
||
| 7178 | 664 |
|
| 14255 | 665 |
(* record_simproc *) |
666 |
(* Simplifies selections of an record update: |
|
667 |
* (1) S (r(|S:=k|)) = k respectively |
|
668 |
* (2) S (r(|X:=k|)) = S r |
|
669 |
* The simproc skips multiple updates at once, eg: |
|
670 |
* S (r (|S:=k,X:=2,Y:=3|)) = k |
|
671 |
* But be careful in (2) because of the extendibility of records. |
|
672 |
* - If S is a more-selector we have to make sure that the update on component |
|
673 |
* X does not affect the selected subrecord. |
|
674 |
* - If X is a more-selector we have to make sure that S is not in the updated |
|
675 |
* subrecord. |
|
676 |
*) |
|
| 13462 | 677 |
val record_simproc = |
678 |
Simplifier.simproc (Theory.sign_of HOL.thy) "record_simp" ["s (u k r)"] |
|
679 |
(fn sg => fn _ => fn t => |
|
| 14255 | 680 |
(case t of (sel as Const (s, Type (_,[domS,rangeS]))) $ ((upd as Const (u, _)) $ k $ r) => |
| 13462 | 681 |
(case get_selectors sg s of Some () => |
682 |
(case get_updates sg u of Some u_name => |
|
683 |
let |
|
| 14255 | 684 |
fun mk_abs_var x t = (x, fastype_of t); |
685 |
val {sel_upd={updates,...},...} = RecordsData.get_sg sg;
|
|
686 |
||
687 |
fun mk_eq_terms ((upd as Const (u,Type(_,[updT,_]))) $ k $ r) = |
|
688 |
(case (Symtab.lookup (updates,u)) of |
|
689 |
None => None |
|
690 |
| Some u_name |
|
691 |
=> if u_name = s |
|
692 |
then let |
|
693 |
val rv = mk_abs_var "r" r |
|
694 |
val rb = Bound 0 |
|
695 |
val kv = mk_abs_var "k" k |
|
696 |
val kb = Bound 1 |
|
697 |
in Some (upd$kb$rb,kb,[kv,rv],true) end |
|
698 |
else if u_name mem (map fst (dest_fieldTs rangeS)) |
|
699 |
orelse s mem (map fst (dest_fieldTs updT)) |
|
700 |
then None |
|
701 |
else (case mk_eq_terms r of |
|
702 |
Some (trm,trm',vars,update_s) |
|
703 |
=> let |
|
704 |
val kv = mk_abs_var "k" k |
|
705 |
val kb = Bound (length vars) |
|
706 |
in Some (upd$kb$trm,trm',kv::vars,update_s) end |
|
707 |
| None |
|
708 |
=> let |
|
709 |
val rv = mk_abs_var "r" r |
|
710 |
val rb = Bound 0 |
|
711 |
val kv = mk_abs_var "k" k |
|
712 |
val kb = Bound 1 |
|
713 |
in Some (upd$kb$rb,rb,[kv,rv],false) end)) |
|
714 |
| mk_eq_terms r = None |
|
| 13462 | 715 |
in |
| 14255 | 716 |
(case mk_eq_terms (upd$k$r) of |
717 |
Some (trm,trm',vars,update_s) |
|
718 |
=> if update_s |
|
719 |
then Some (prove_split_simp sg domS |
|
720 |
(list_all(vars,(Logic.mk_equals (sel$trm,trm'))))) |
|
721 |
else Some (prove_split_simp sg domS |
|
722 |
(list_all(vars,(Logic.mk_equals (sel$trm,sel$trm'))))) |
|
723 |
| None => None) |
|
| 13462 | 724 |
end |
725 |
| None => None) |
|
726 |
| None => None) |
|
727 |
| _ => None)); |
|
| 7178 | 728 |
|
| 14255 | 729 |
(* record_eq_simproc *) |
730 |
(* looks up the most specific record-equality. |
|
731 |
* Note on efficiency: |
|
732 |
* Testing equality of records boils down to the test of equality of all components. |
|
733 |
* Therefore the complexity is: #components * complexity for single component. |
|
734 |
* Especially if a record has a lot of components it may be better to split up |
|
735 |
* the record first and do simplification on that (record_split_simp_tac). |
|
736 |
* e.g. r(|lots of updates|) = x |
|
737 |
* |
|
738 |
* record_eq_simproc record_split_simp_tac |
|
739 |
* Complexity: #components * #updates #updates |
|
740 |
* |
|
741 |
*) |
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
742 |
val record_eq_simproc = |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
743 |
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
|
744 |
(fn sg => fn _ => fn t => |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
745 |
(case t of Const ("op =", Type (_, [T, _])) $ _ $ _ =>
|
| 14255 | 746 |
(case last_fieldT T of |
747 |
None => None |
|
748 |
| Some (name, _) => (case get_equalities sg name of |
|
749 |
None => None |
|
750 |
| Some thm => Some (thm RS Eq_TrueI))) |
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
751 |
| _ => None)); |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
752 |
|
| 7178 | 753 |
|
| 14255 | 754 |
(* record_upd_simproc *) |
755 |
(* simplify multiple updates; for example: "r(|M:=3,N:=1,M:=2,N:=4|) == r(|M:=2,N:=4|)" *) |
|
756 |
val record_upd_simproc = |
|
757 |
Simplifier.simproc (Theory.sign_of HOL.thy) "record_upd_simp" ["(u1 k1 (u2 k2 r))"] |
|
758 |
(fn sg => fn _ => fn t => |
|
759 |
(case t of ((upd as Const (u, Type(_,[_,Type(_,[T,_])]))) $ k $ r) => |
|
760 |
let val {sel_upd={updates,...},...} = RecordsData.get_sg sg;
|
|
761 |
fun mk_abs_var x t = (x, fastype_of t); |
|
762 |
||
763 |
fun mk_updterm upds already ((upd as Const (u,_)) $ k $ r) = |
|
764 |
if is_some (Symtab.lookup (upds,u)) |
|
765 |
then let |
|
766 |
fun rest already = mk_updterm upds already |
|
767 |
in if is_some (Symtab.lookup (already,u)) |
|
768 |
then (case (rest already r) of |
|
769 |
None => let |
|
770 |
val rv = mk_abs_var "r" r |
|
771 |
val rb = Bound 0 |
|
772 |
val kv = mk_abs_var "k" k |
|
773 |
val kb = Bound 1 |
|
774 |
in Some (upd$kb$rb,rb,[kv,rv]) end |
|
775 |
| Some (trm,trm',vars) |
|
776 |
=> let |
|
777 |
val kv = mk_abs_var "k" k |
|
778 |
val kb = Bound (length vars) |
|
779 |
in Some (upd$kb$trm,trm',kv::vars) end) |
|
780 |
else (case rest (Symtab.update ((u,()),already)) r of |
|
781 |
None => None |
|
782 |
| Some (trm,trm',vars) |
|
783 |
=> let |
|
784 |
val kv = mk_abs_var "k" k |
|
785 |
val kb = Bound (length vars) |
|
786 |
in Some (upd$kb$trm,upd$kb$trm',kv::vars) end) |
|
787 |
end |
|
788 |
else None |
|
789 |
| mk_updterm _ _ _ = None; |
|
790 |
||
791 |
in (case mk_updterm updates Symtab.empty t of |
|
792 |
Some (trm,trm',vars) |
|
793 |
=> Some (prove_split_simp sg T (list_all(vars,(Logic.mk_equals (trm,trm'))))) |
|
794 |
| None => None) |
|
795 |
end |
|
796 |
| _ => None)); |
|
797 |
||
798 |
(* record_split_simproc *) |
|
799 |
(* splits quantified occurrences of records, for which P holds. P can peek on the |
|
800 |
* subterm starting at the quantified occurrence of the record (including the quantifier) |
|
801 |
*) |
|
802 |
fun record_split_simproc P = |
|
803 |
Simplifier.simproc (Theory.sign_of HOL.thy) "record_split_simp" ["(a t)"] |
|
804 |
(fn sg => fn _ => fn t => |
|
805 |
(case t of (Const (quantifier, Type (_, [Type (_, [T, _]), _])))$trm => |
|
806 |
if quantifier = "All" orelse quantifier = "all" orelse quantifier = "Ex" |
|
807 |
then (case last_fieldT T of |
|
808 |
None => None |
|
809 |
| Some (name, _) |
|
810 |
=> if P t |
|
811 |
then (case get_splits sg name of |
|
812 |
None => None |
|
813 |
| Some (all_thm, All_thm, Ex_thm,_) |
|
814 |
=> Some (case quantifier of |
|
815 |
"all" => all_thm |
|
816 |
| "All" => All_thm RS HOL.eq_reflection |
|
817 |
| "Ex" => Ex_thm RS HOL.eq_reflection |
|
818 |
| _ => error "record_split_simproc")) |
|
819 |
else None) |
|
820 |
else None |
|
821 |
| _ => None)) |
|
| 7178 | 822 |
|
| 14427 | 823 |
(* record_ex_sel_eq_simproc *) |
824 |
(* record: (EX r. x = sel r) resp. (EX r. sel r = x) to True *) |
|
825 |
val record_ex_sel_eq_simproc = |
|
826 |
Simplifier.simproc (Theory.sign_of HOL.thy) "record_ex_sel_eq_simproc" ["Ex t"] |
|
827 |
(fn sg => fn _ => fn t => |
|
828 |
let fun prove prop = (quick_and_dirty_prove sg [] [] prop |
|
829 |
(fn _ => (simp_tac ((get_simpset sg) addsimps simp_thms |
|
830 |
addsimprocs [record_split_simproc (K true)]) 1))); |
|
831 |
in |
|
832 |
(case t of |
|
833 |
(Const ("Ex",Tex)$Abs(r,T,Const ("op =",Teq)$(Const (sel,Tsel)$Bound 0)$X)) =>
|
|
834 |
(case get_selectors sg sel of Some () => |
|
835 |
let |
|
836 |
val X' = ("x",range_type Tsel);
|
|
837 |
val prop = list_all ([X'], |
|
838 |
Logic.mk_equals |
|
839 |
(Const ("Ex",Tex)$Abs(r,T,Const ("op =",Teq)$
|
|
840 |
(Const (sel,Tsel)$Bound 0)$Bound 1), |
|
841 |
Const ("True",HOLogic.boolT)));
|
|
842 |
in Some (prove prop) end |
|
843 |
| None => None) |
|
844 |
|(Const ("Ex",Tex)$Abs(r,T,Const ("op =",Teq)$X$(Const (sel,Tsel)$Bound 0))) =>
|
|
845 |
(case get_selectors sg sel of Some () => |
|
846 |
let |
|
847 |
val X' = ("x",range_type Tsel);
|
|
848 |
val prop = list_all ([X'], |
|
849 |
Logic.mk_equals |
|
850 |
(Const ("Ex",Tex)$Abs(r,T,Const ("op =",Teq)$
|
|
851 |
Bound 1$(Const (sel,Tsel)$Bound 0)), |
|
852 |
Const ("True",HOLogic.boolT)));
|
|
853 |
in Some (prove prop) end |
|
854 |
| None => None) |
|
855 |
| _ => None) |
|
856 |
end) |
|
857 |
||
| 5698 | 858 |
(** record field splitting **) |
859 |
||
| 6358 | 860 |
(* tactic *) |
861 |
||
| 14255 | 862 |
fun is_fieldT fields (Type (a, [_, _])) = is_some (Symtab.lookup (fields, a)) |
863 |
| is_fieldT _ _ = false; |
|
864 |
||
| 5698 | 865 |
fun record_split_tac i st = |
866 |
let |
|
| 7178 | 867 |
val {field_splits = {fields, simpset}, ...} = RecordsData.get_sg (Thm.sign_of_thm st);
|
| 5698 | 868 |
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
869 |
val has_field = exists_Const |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
870 |
(fn (s, Type (_, [Type (_, [T, _]), _])) => |
| 14255 | 871 |
(s = "all" orelse s = "All") andalso is_fieldT fields T |
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
872 |
| _ => false); |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
873 |
|
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
874 |
val goal = Library.nth_elem (i - 1, Thm.prems_of st); |
| 5698 | 875 |
in |
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
876 |
if has_field goal then Simplifier.full_simp_tac simpset i st |
| 5698 | 877 |
else Seq.empty |
878 |
end handle Library.LIST _ => Seq.empty; |
|
879 |
||
| 6358 | 880 |
|
| 14255 | 881 |
local |
882 |
val inductive_atomize = thms "induct_atomize"; |
|
883 |
val inductive_rulify1 = thms "induct_rulify1"; |
|
884 |
in |
|
885 |
(* record_split_simp_tac *) |
|
886 |
(* splits (and simplifies) all records in the goal for which P holds. |
|
887 |
* For quantified occurrences of a record |
|
888 |
* P can peek on the whole subterm (including the quantifier); for free variables P |
|
889 |
* can only peek on the variable itself. |
|
890 |
*) |
|
891 |
fun record_split_simp_tac P i st = |
|
892 |
let |
|
893 |
val sg = Thm.sign_of_thm st; |
|
894 |
val {sel_upd={simpset,...},field_splits={fields,...},...}
|
|
895 |
= RecordsData.get_sg sg; |
|
896 |
||
897 |
val has_field = exists_Const |
|
898 |
(fn (s, Type (_, [Type (_, [T, _]), _])) => |
|
899 |
(s = "all" orelse s = "All" orelse s = "Ex") andalso is_fieldT fields T |
|
900 |
| _ => false); |
|
901 |
||
902 |
val goal = Library.nth_elem (i - 1, Thm.prems_of st); |
|
903 |
val frees = filter (is_fieldT fields o type_of) (term_frees goal); |
|
904 |
||
905 |
fun mk_split_free_tac free induct_thm i = |
|
906 |
let val cfree = cterm_of sg free; |
|
907 |
val (_$(_$r)) = concl_of induct_thm; |
|
908 |
val crec = cterm_of sg r; |
|
909 |
val thm = cterm_instantiate [(crec,cfree)] induct_thm; |
|
910 |
in EVERY [simp_tac (HOL_basic_ss addsimps inductive_atomize) i, |
|
911 |
rtac thm i, |
|
912 |
simp_tac (HOL_basic_ss addsimps inductive_rulify1) i] |
|
913 |
end; |
|
914 |
||
915 |
fun split_free_tac P i (free as Free (n,T)) = |
|
916 |
(case last_fieldT T of |
|
917 |
None => None |
|
918 |
| Some(name,_)=> if P free |
|
919 |
then (case get_splits sg name of |
|
920 |
None => None |
|
921 |
| Some (_,_,_,induct_thm) |
|
922 |
=> Some (mk_split_free_tac free induct_thm i)) |
|
923 |
else None) |
|
924 |
| split_free_tac _ _ _ = None; |
|
925 |
||
926 |
val split_frees_tacs = mapfilter (split_free_tac P i) frees; |
|
927 |
||
928 |
val simprocs = if has_field goal then [record_split_simproc P] else []; |
|
929 |
||
930 |
in st |> (EVERY split_frees_tacs) |
|
931 |
THEN (Simplifier.full_simp_tac (simpset addsimprocs simprocs) i) |
|
932 |
end handle Library.LIST _ => Seq.empty; |
|
933 |
end; |
|
934 |
||
| 6358 | 935 |
(* wrapper *) |
936 |
||
| 5707 | 937 |
val record_split_name = "record_split_tac"; |
938 |
val record_split_wrapper = (record_split_name, fn tac => record_split_tac ORELSE' tac); |
|
| 5698 | 939 |
|
940 |
||
| 6358 | 941 |
(* method *) |
942 |
||
943 |
val record_split_method = |
|
| 9705 | 944 |
("record_split", Method.no_args (Method.SIMPLE_METHOD' HEADGOAL record_split_tac),
|
| 6358 | 945 |
"split record fields"); |
946 |
||
947 |
||
| 12255 | 948 |
|
| 4890 | 949 |
(** internal theory extenders **) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
950 |
|
| 11832 | 951 |
(* field_typedefs *) |
| 5698 | 952 |
|
| 11832 | 953 |
fun field_typedefs zeta moreT names theory = |
| 5698 | 954 |
let |
| 11832 | 955 |
val alpha = "'a"; |
|
12338
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
12311
diff
changeset
|
956 |
val aT = TFree (alpha, HOLogic.typeS); |
| 11832 | 957 |
val UNIV = HOLogic.mk_UNIV (HOLogic.mk_prodT (aT, moreT)); |
| 5698 | 958 |
|
| 11832 | 959 |
fun type_def (thy, name) = |
| 11940 | 960 |
let val (thy', {type_definition, set_def = Some def, ...}) =
|
961 |
thy |> setmp TypedefPackage.quiet_mode true |
|
| 11832 | 962 |
(TypedefPackage.add_typedef_i true None |
963 |
(suffix field_typeN (Sign.base_name name), [alpha, zeta], Syntax.NoSyn) UNIV None |
|
964 |
(Tactic.rtac UNIV_witness 1)) |
|
965 |
in (thy', Tactic.rewrite_rule [def] type_definition) end |
|
966 |
in foldl_map type_def (theory, names) end; |
|
| 5698 | 967 |
|
968 |
||
| 4894 | 969 |
(* field_definitions *) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
970 |
|
| 14358 | 971 |
fun field_definitions fields names alphas zeta moreT more vars thy = |
| 4890 | 972 |
let |
| 5698 | 973 |
val sign = Theory.sign_of thy; |
| 4890 | 974 |
val base = Sign.base_name; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
975 |
|
|
12338
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
12311
diff
changeset
|
976 |
val xT = TFree (variant alphas "'x", HOLogic.typeS); |
| 11832 | 977 |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
978 |
|
| 4890 | 979 |
(* prepare declarations and definitions *) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
980 |
|
| 5698 | 981 |
(*field constructors*) |
| 4890 | 982 |
val field_decls = map (mk_fieldC moreT) fields; |
983 |
||
| 11832 | 984 |
fun mk_field_spec ((c, T), v) = |
985 |
Term.head_of (mk_field ((c, v), more)) :== |
|
986 |
lambda v (lambda more (mk_Abs moreT (c, T) $ (HOLogic.mk_prod (v, more)))); |
|
987 |
val field_specs = map mk_field_spec (fields ~~ vars); |
|
| 4890 | 988 |
|
989 |
(*field destructors*) |
|
| 5698 | 990 |
val dest_decls = map (mk_fstC moreT) fields @ map (mk_sndC moreT) fields; |
991 |
||
| 11832 | 992 |
fun mk_dest_spec dest sel (c, T) = |
| 5698 | 993 |
let val p = Free ("p", mk_fieldT ((c, T), moreT));
|
| 11832 | 994 |
in Term.head_of (dest p) :== lambda p (sel (mk_Rep moreT (c, T) $ p)) end; |
995 |
val dest_specs1 = map (mk_dest_spec mk_fst HOLogic.mk_fst) fields; |
|
996 |
val dest_specs2 = map (mk_dest_spec mk_snd HOLogic.mk_snd) fields; |
|
| 4890 | 997 |
|
998 |
||
| 11832 | 999 |
(* 1st stage: defs_thy *) |
| 5713 | 1000 |
|
| 11832 | 1001 |
val (defs_thy, (((typedefs, field_defs), dest_defs1), dest_defs2)) = |
1002 |
thy |
|
1003 |
|> field_typedefs zeta moreT names |
|
1004 |
|>> (Theory.add_consts_i o map (Syntax.no_syn o apfst base)) (field_decls @ dest_decls) |
|
1005 |
|>>> (PureThy.add_defs_i false o map Thm.no_attributes) field_specs |
|
1006 |
|>>> (PureThy.add_defs_i false o map Thm.no_attributes) dest_specs1 |
|
1007 |
|>>> (PureThy.add_defs_i false o map Thm.no_attributes) dest_specs2; |
|
| 4890 | 1008 |
|
| 13419 | 1009 |
val prod_types = map (fn (((a, b), c), d) => product_type_intro OF [a, b, c, d]) |
| 11832 | 1010 |
(typedefs ~~ field_defs ~~ dest_defs1 ~~ dest_defs2); |
| 4890 | 1011 |
|
| 5698 | 1012 |
|
| 11832 | 1013 |
(* 2nd stage: thms_thy *) |
| 5698 | 1014 |
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
1015 |
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
|
1016 |
(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
|
1017 |
(th OF [prod_type]))) (prod_types ~~ fields); |
| 4890 | 1018 |
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
1019 |
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
|
1020 |
val field_injects = make [] product_type_inject; |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
1021 |
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
|
1022 |
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
|
1023 |
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
|
1024 |
make ["a", "b"] product_type_split_paired_All; |
| 4894 | 1025 |
|
| 11940 | 1026 |
val (thms_thy, [field_defs', dest_defs', dest_convs', field_injects', |
1027 |
field_splits', field_inducts', field_cases']) = defs_thy |
|
| 12449 | 1028 |
|> Codegen.assoc_consts_i (flat (map (fn (s, _) => |
1029 |
[(suffix fieldN s, None, prod_code), |
|
1030 |
(suffix fstN s, None, fst_code), |
|
1031 |
(suffix sndN s, None, snd_code)]) fields)) |
|
1032 |
|> Codegen.assoc_types (map (fn (s, _) => |
|
1033 |
(suffix field_typeN s, prodT_code)) fields) |
|
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
1034 |
|> (PureThy.add_thmss o map Thm.no_attributes) |
| 11940 | 1035 |
[("field_defs", field_defs),
|
1036 |
("dest_defs", dest_defs1 @ dest_defs2),
|
|
1037 |
("dest_convs", dest_convs),
|
|
1038 |
("field_injects", field_injects),
|
|
1039 |
("field_splits", field_splits),
|
|
1040 |
("field_inducts", field_inducts),
|
|
1041 |
("field_cases", field_cases)];
|
|
| 4890 | 1042 |
|
| 11940 | 1043 |
in (thms_thy, dest_convs', field_injects', field_splits', field_inducts', field_cases') end; |
| 4890 | 1044 |
|
1045 |
||
1046 |
(* record_definition *) |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1047 |
|
| 12506 | 1048 |
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
|
1049 |
let |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1050 |
val sign = Theory.sign_of thy; |
| 12247 | 1051 |
|
1052 |
val alphas = map fst args; |
|
1053 |
val name = Sign.full_name sign bname; |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1054 |
val full = Sign.full_name_path sign bname; |
| 4890 | 1055 |
val base = Sign.base_name; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1056 |
|
| 12506 | 1057 |
val (bfields, field_syntax) = split_list (map (fn (x, T, mx) => ((x, T), mx)) raw_fields); |
1058 |
||
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1059 |
|
| 4890 | 1060 |
(* basic components *) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1061 |
|
| 12247 | 1062 |
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
|
1063 |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1064 |
val parent_fields = flat (map #fields parents); |
| 4890 | 1065 |
val parent_names = map fst parent_fields; |
1066 |
val parent_types = map snd parent_fields; |
|
1067 |
val parent_len = length parent_fields; |
|
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
1068 |
val parent_xs = variantlist (map (base o fst) parent_fields, [moreN, rN]); |
| 4890 | 1069 |
val parent_vars = ListPair.map Free (parent_xs, parent_types); |
| 4894 | 1070 |
val parent_named_vars = parent_names ~~ parent_vars; |
| 4890 | 1071 |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1072 |
val fields = map (apfst full) bfields; |
| 4890 | 1073 |
val names = map fst fields; |
1074 |
val types = map snd fields; |
|
1075 |
val len = length fields; |
|
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
1076 |
val xs = variantlist (map fst bfields, moreN :: rN :: parent_xs); |
| 4890 | 1077 |
val vars = ListPair.map Free (xs, types); |
| 4894 | 1078 |
val named_vars = names ~~ vars; |
|
4867
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 |
val all_fields = parent_fields @ fields; |
| 4890 | 1081 |
val all_names = parent_names @ names; |
1082 |
val all_types = parent_types @ types; |
|
1083 |
val all_len = parent_len + len; |
|
1084 |
val all_xs = parent_xs @ xs; |
|
1085 |
val all_vars = parent_vars @ vars; |
|
| 4894 | 1086 |
val all_named_vars = parent_named_vars @ named_vars; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1087 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1088 |
val zeta = variant alphas "'z"; |
|
12338
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
12311
diff
changeset
|
1089 |
val moreT = TFree (zeta, HOLogic.typeS); |
| 4895 | 1090 |
val more = Free (moreN, moreT); |
| 5197 | 1091 |
val full_moreN = full moreN; |
1092 |
fun more_part t = mk_more t full_moreN; |
|
1093 |
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
|
1094 |
val all_types_more = all_types @ [moreT]; |
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
1095 |
val all_xs_more = all_xs @ [moreN]; |
| 4894 | 1096 |
|
1097 |
val parent_more = funpow parent_len mk_snd; |
|
1098 |
val idxs = 0 upto (len - 1); |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1099 |
|
| 12265 | 1100 |
val fieldsT = mk_recordT (fields, HOLogic.unitT); |
| 12247 | 1101 |
fun rec_schemeT n = mk_recordT (prune n all_fields, moreT); |
1102 |
fun rec_scheme n = mk_record (prune n all_named_vars, more); |
|
1103 |
fun recT n = mk_recordT (prune n all_fields, HOLogic.unitT); |
|
| 12255 | 1104 |
fun rec_ n = mk_record (prune n all_named_vars, HOLogic.unit); |
| 12247 | 1105 |
fun r_scheme n = Free (rN, rec_schemeT n); |
1106 |
fun r n = Free (rN, recT n); |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1107 |
|
| 14255 | 1108 |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1109 |
|
| 4890 | 1110 |
(* prepare print translation functions *) |
| 5698 | 1111 |
val field_tr's = |
| 13333 | 1112 |
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
|
1113 |
|
| 14255 | 1114 |
val field_type_tr's = |
1115 |
let val fldnames = if parent_len = 0 then (tl names) else names; |
|
1116 |
in print_translation_field_types (distinct (flat (map NameSpace.accesses' fldnames))) |
|
1117 |
end; |
|
| 14358 | 1118 |
|
| 14255 | 1119 |
fun record_type_abbr_tr's thy = |
| 14358 | 1120 |
let val trnames = NameSpace.accesses' (hd all_names) |
| 14255 | 1121 |
val sg = Theory.sign_of thy |
1122 |
in map (gen_record_type_abbr_tr' |
|
| 14358 | 1123 |
sg bname alphas zeta (hd (rev names)) (rec_schemeT 0)) trnames end; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1124 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1125 |
(* prepare declarations *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1126 |
|
| 12247 | 1127 |
val sel_decls = map (mk_selC (rec_schemeT 0)) bfields @ |
1128 |
[mk_moreC (rec_schemeT 0) (moreN, moreT)]; |
|
1129 |
val update_decls = map (mk_updateC (rec_schemeT 0)) bfields @ |
|
1130 |
[mk_more_updateC (rec_schemeT 0) (moreN, moreT)]; |
|
| 12265 | 1131 |
val make_decl = (makeN, all_types ---> recT 0); |
1132 |
val fields_decl = (fieldsN, types ---> fieldsT); |
|
| 12247 | 1133 |
val extend_decl = (extendN, recT 0 --> moreT --> rec_schemeT 0); |
1134 |
val truncate_decl = (truncateN, rec_schemeT 0 --> recT 0); |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1135 |
|
|
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 |
(* prepare definitions *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1138 |
|
| 4895 | 1139 |
(*record (scheme) type abbreviation*) |
| 4890 | 1140 |
val recordT_specs = |
| 12247 | 1141 |
[(suffix schemeN bname, alphas @ [zeta], rec_schemeT 0, Syntax.NoSyn), |
1142 |
(bname, alphas, recT 0, Syntax.NoSyn)]; |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1143 |
|
| 4894 | 1144 |
(*selectors*) |
| 4890 | 1145 |
fun mk_sel_spec (i, c) = |
| 12247 | 1146 |
mk_sel (r_scheme 0) c :== mk_fst (funpow i mk_snd (parent_more (r_scheme 0))); |
| 4894 | 1147 |
val sel_specs = |
1148 |
ListPair.map mk_sel_spec (idxs, names) @ |
|
| 12247 | 1149 |
[more_part (r_scheme 0) :== funpow len mk_snd (parent_more (r_scheme 0))]; |
| 4890 | 1150 |
|
1151 |
(*updates*) |
|
| 12247 | 1152 |
val all_sels = mk_named_sels all_names (r_scheme 0); |
| 4890 | 1153 |
fun mk_upd_spec (i, (c, x)) = |
| 12247 | 1154 |
mk_update (r_scheme 0) (c, x) :== |
1155 |
mk_record (nth_update (c, x) (parent_len + i, all_sels), more_part (r_scheme 0)) |
|
| 5197 | 1156 |
val update_specs = |
1157 |
ListPair.map mk_upd_spec (idxs, named_vars) @ |
|
| 12247 | 1158 |
[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
|
1159 |
|
|
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
1160 |
(*derived operations*) |
| 12265 | 1161 |
val make_spec = Const (full makeN, all_types ---> recT 0) $$ all_vars :== |
1162 |
mk_record (all_named_vars, HOLogic.unit); |
|
1163 |
val fields_spec = Const (full fieldsN, types ---> fieldsT) $$ vars :== |
|
1164 |
mk_record (named_vars, HOLogic.unit); |
|
| 12247 | 1165 |
val extend_spec = Const (full extendN, recT 0 --> moreT --> rec_schemeT 0) $ r 0 $ more :== |
1166 |
mk_record (mk_named_sels all_names (r 0), more); |
|
1167 |
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
|
1168 |
mk_record (all_sels, HOLogic.unit); |
| 4894 | 1169 |
|
1170 |
||
1171 |
(* prepare propositions *) |
|
1172 |
||
1173 |
(*selectors*) |
|
1174 |
val sel_props = |
|
| 12247 | 1175 |
map (fn (c, x) => mk_sel (rec_scheme 0) c === x) named_vars @ |
1176 |
[more_part (rec_scheme 0) === more]; |
|
| 4894 | 1177 |
|
1178 |
(*updates*) |
|
1179 |
fun mk_upd_prop (i, (c, T)) = |
|
1180 |
let val x' = Free (variant all_xs (base c ^ "'"), T) in |
|
| 12247 | 1181 |
mk_update (rec_scheme 0) (c, x') === |
| 4894 | 1182 |
mk_record (nth_update (c, x') (parent_len + i, all_named_vars), more) |
1183 |
end; |
|
| 5197 | 1184 |
val update_props = |
1185 |
ListPair.map mk_upd_prop (idxs, fields) @ |
|
1186 |
let val more' = Free (variant all_xs (moreN ^ "'"), moreT) |
|
| 12247 | 1187 |
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
|
1188 |
|
| 9626 | 1189 |
(*equality*) |
1190 |
fun mk_sel_eq (t, T) = |
|
| 12247 | 1191 |
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
|
1192 |
in Trueprop (HOLogic.eq_const T $ Term.incr_boundvars 1 t' $ t') end; |
| 12247 | 1193 |
val sel_eqs = map2 mk_sel_eq |
1194 |
(map (mk_sel (r_scheme 0)) all_names @ [more_part (r_scheme 0)], all_types @ [moreT]); |
|
| 9626 | 1195 |
val equality_prop = |
| 12247 | 1196 |
Term.all (rec_schemeT 0) $ (Abs ("r", rec_schemeT 0,
|
1197 |
Term.all (rec_schemeT 0) $ (Abs ("r'", rec_schemeT 0,
|
|
| 9626 | 1198 |
Logic.list_implies (sel_eqs, |
| 12247 | 1199 |
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
|
1200 |
|
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
1201 |
(*induct*) |
| 12247 | 1202 |
fun induct_scheme_prop n = |
1203 |
let val P = Free ("P", rec_schemeT n --> HOLogic.boolT) in
|
|
1204 |
(All (prune n all_xs_more ~~ prune n all_types_more) |
|
1205 |
(Trueprop (P $ rec_scheme n)), Trueprop (P $ r_scheme n)) |
|
1206 |
end; |
|
1207 |
fun induct_prop n = |
|
1208 |
let val P = Free ("P", recT n --> HOLogic.boolT) in
|
|
1209 |
(All (prune n all_xs ~~ prune n all_types) (Trueprop (P $ rec_ n)), Trueprop (P $ r n)) |
|
1210 |
end; |
|
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
1211 |
|
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
1212 |
(*cases*) |
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
1213 |
val C = Trueprop (Free (variant all_xs_more "C", HOLogic.boolT)); |
| 12247 | 1214 |
fun cases_scheme_prop n = |
1215 |
All (prune n all_xs_more ~~ prune n all_types_more) |
|
1216 |
((r_scheme n === rec_scheme n) ==> C) ==> C; |
|
| 12255 | 1217 |
fun cases_prop n = All (prune n all_xs ~~ prune n all_types) ((r n === rec_ n) ==> C) ==> C; |
| 9626 | 1218 |
|
| 14255 | 1219 |
(*split*) |
1220 |
fun split_scheme_meta_prop n = |
|
1221 |
let val P = Free ("P", rec_schemeT n --> Term.propT) in
|
|
1222 |
equals (Term.propT) $ |
|
1223 |
(Term.list_all_free ([(rN,rec_schemeT n)],(P $ r_scheme n)))$ |
|
1224 |
(All (prune n all_xs_more ~~ prune n all_types_more) (P $ rec_scheme n)) |
|
1225 |
end; |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1226 |
|
| 14255 | 1227 |
fun split_scheme_object_prop n = |
1228 |
let val P = Free ("P", rec_schemeT n --> HOLogic.boolT)
|
|
1229 |
val ALL = foldr (fn ((v,T),t) => HOLogic.mk_all (v,T,t)) |
|
1230 |
in |
|
1231 |
Trueprop ( |
|
1232 |
HOLogic.eq_const (HOLogic.boolT) $ |
|
1233 |
(HOLogic.mk_all ((rN,rec_schemeT n,P $ r_scheme n)))$ |
|
1234 |
(ALL (prune n all_xs_more ~~ prune n all_types_more,P $ rec_scheme n))) |
|
1235 |
end; |
|
1236 |
||
1237 |
fun split_scheme_object_ex_prop n = |
|
1238 |
let val P = Free ("P", rec_schemeT n --> HOLogic.boolT)
|
|
1239 |
val EX = foldr (fn ((v,T),t) => HOLogic.mk_exists (v,T,t)) |
|
1240 |
in |
|
1241 |
Trueprop ( |
|
1242 |
HOLogic.eq_const (HOLogic.boolT) $ |
|
1243 |
(HOLogic.mk_exists ((rN,rec_schemeT n,P $ r_scheme n)))$ |
|
1244 |
(EX (prune n all_xs_more ~~ prune n all_types_more,P $ rec_scheme n))) |
|
1245 |
end; |
|
| 4890 | 1246 |
(* 1st stage: fields_thy *) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1247 |
|
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
1248 |
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
|
1249 |
thy |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1250 |
|> Theory.add_path bname |
| 14358 | 1251 |
|> field_definitions fields names alphas zeta moreT more vars; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1252 |
|
| 12247 | 1253 |
val all_field_inducts = flat (map #field_inducts parents) @ field_inducts; |
1254 |
val all_field_cases = flat (map #field_cases parents) @ field_cases; |
|
| 14255 | 1255 |
val all_field_splits = flat (map #field_splits parents) @ field_splits |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1256 |
|
| 14255 | 1257 |
|
| 4890 | 1258 |
(* 2nd stage: defs_thy *) |
1259 |
||
| 14255 | 1260 |
|
1261 |
||
1262 |
||
|
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
1263 |
val (defs_thy, (((sel_defs, update_defs), derived_defs))) = |
| 4890 | 1264 |
fields_thy |
| 14255 | 1265 |
|> Theory.add_trfuns |
1266 |
([],[],record_type_abbr_tr's fields_thy @ field_type_tr's @ field_tr's, []) |
|
1267 |
|> add_field_splits (map (suffix field_typeN) names) field_splits |
|
| 4890 | 1268 |
|> Theory.parent_path |
| 12255 | 1269 |
|> Theory.add_tyabbrs_i recordT_specs |
| 4890 | 1270 |
|> Theory.add_path bname |
| 12506 | 1271 |
|> Theory.add_consts_i |
1272 |
(map2 (fn ((x, T), mx) => (x, T, mx)) (sel_decls, field_syntax @ [Syntax.NoSyn])) |
|
| 4894 | 1273 |
|> (Theory.add_consts_i o map Syntax.no_syn) |
| 12506 | 1274 |
(update_decls @ [make_decl, fields_decl, extend_decl, truncate_decl]) |
| 11832 | 1275 |
|> (PureThy.add_defs_i false o map Thm.no_attributes) sel_specs |
1276 |
|>>> (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
|
1277 |
|>>> (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
|
1278 |
[make_spec, fields_spec, extend_spec, truncate_spec] |
|
3573830e9b91
hide base name of "make", "fields", "extend", "truncate", "more",
wenzelm
parents:
12506
diff
changeset
|
1279 |
|>> 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
|
1280 |
full moreN, full (suffix updateN moreN)]; |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
1281 |
|
| 4890 | 1282 |
|
1283 |
(* 3rd stage: thms_thy *) |
|
1284 |
||
| 12247 | 1285 |
val prove_standard = Tactic.prove_standard (Theory.sign_of defs_thy); |
| 11967 | 1286 |
fun prove_simp simps = |
1287 |
let val tac = simp_all_tac HOL_basic_ss simps |
|
1288 |
in fn prop => prove_standard [] [] prop (K tac) end; |
|
| 4890 | 1289 |
|
| 11967 | 1290 |
val parent_simps = flat (map #simps parents); |
1291 |
val sel_convs = map (prove_simp (parent_simps @ sel_defs @ field_simps)) sel_props; |
|
1292 |
val update_convs = map (prove_simp (parent_simps @ update_defs @ sel_convs)) update_props; |
|
| 4894 | 1293 |
|
| 12247 | 1294 |
fun induct_scheme n = |
1295 |
let val (assm, concl) = induct_scheme_prop n in |
|
1296 |
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
|
1297 |
EVERY (map (fn rule => try_param_tac rN rule 1) (prune n all_field_inducts)) |
| 12247 | 1298 |
THEN resolve_tac prems 1) |
1299 |
end; |
|
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
1300 |
|
| 12247 | 1301 |
fun cases_scheme n = |
1302 |
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
|
1303 |
EVERY (map (fn rule => try_param_tac rN rule 1) (prune n all_field_cases)) |
| 11967 | 1304 |
THEN simp_all_tac HOL_basic_ss []); |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
1305 |
|
| 14255 | 1306 |
fun split_scheme_meta n = |
1307 |
prove_standard [] [] (split_scheme_meta_prop n) (fn _ => |
|
1308 |
Simplifier.full_simp_tac (HOL_basic_ss addsimps all_field_splits) 1); |
|
1309 |
||
1310 |
fun split_scheme_object induct_scheme n = |
|
1311 |
prove_standard [] [] (split_scheme_object_prop n) (fn _ => |
|
1312 |
EVERY [rtac iffI 1, |
|
1313 |
REPEAT (rtac allI 1), etac allE 1, atac 1, |
|
1314 |
rtac allI 1, rtac induct_scheme 1,REPEAT (etac allE 1),atac 1]); |
|
1315 |
||
1316 |
fun split_scheme_object_ex split_scheme_meta n = |
|
1317 |
prove_standard [] [] (split_scheme_object_ex_prop n) (fn _ => |
|
1318 |
fast_simp_tac (claset_of HOL.thy, |
|
1319 |
HOL_basic_ss addsimps [split_scheme_meta]) 1); |
|
1320 |
||
| 12247 | 1321 |
val induct_scheme0 = induct_scheme 0; |
1322 |
val cases_scheme0 = cases_scheme 0; |
|
| 14255 | 1323 |
val split_scheme_meta0 = split_scheme_meta 0; |
1324 |
val split_scheme_object0 = split_scheme_object induct_scheme0 0; |
|
1325 |
val split_scheme_object_ex0 = split_scheme_object_ex split_scheme_meta0 0; |
|
| 12247 | 1326 |
val more_induct_scheme = map induct_scheme ancestry; |
1327 |
val more_cases_scheme = map cases_scheme ancestry; |
|
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
1328 |
|
| 14255 | 1329 |
val (thms_thy, (([sel_convs', update_convs', sel_defs', update_defs', _, |
1330 |
[split_scheme_meta',split_scheme_object', |
|
1331 |
split_scheme_object_ex',split_scheme_free']], |
|
| 12247 | 1332 |
[induct_scheme', cases_scheme']), [more_induct_scheme', more_cases_scheme'])) = |
| 11940 | 1333 |
defs_thy |
1334 |
|> (PureThy.add_thmss o map Thm.no_attributes) |
|
1335 |
[("select_convs", sel_convs),
|
|
1336 |
("update_convs", update_convs),
|
|
1337 |
("select_defs", sel_defs),
|
|
1338 |
("update_defs", update_defs),
|
|
| 14255 | 1339 |
("defs", derived_defs),
|
1340 |
("splits",[split_scheme_meta0,split_scheme_object0,
|
|
1341 |
split_scheme_object_ex0,induct_scheme0])] |
|
| 11940 | 1342 |
|>>> PureThy.add_thms |
| 12255 | 1343 |
[(("induct_scheme", induct_scheme0), induct_type_global (suffix schemeN name)),
|
1344 |
(("cases_scheme", cases_scheme0), cases_type_global (suffix schemeN name))]
|
|
1345 |
|>>> PureThy.add_thmss |
|
1346 |
[(("more_induct_scheme", more_induct_scheme), induct_type_global ""),
|
|
1347 |
(("more_cases_scheme", more_cases_scheme), cases_type_global "")];
|
|
| 12247 | 1348 |
|
1349 |
||
1350 |
(* 4th stage: more_thms_thy *) |
|
1351 |
||
1352 |
val prove_standard = Tactic.prove_standard (Theory.sign_of thms_thy); |
|
| 11940 | 1353 |
|
| 12247 | 1354 |
fun induct (n, scheme) = |
1355 |
let val (assm, concl) = induct_prop n in |
|
1356 |
prove_standard [] [assm] concl (fn prems => |
|
1357 |
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
|
1358 |
THEN try_param_tac "more" unit_induct 1 |
| 12247 | 1359 |
THEN resolve_tac prems 1) |
1360 |
end; |
|
1361 |
||
1362 |
fun cases (n, scheme) = |
|
1363 |
prove_standard [] [] (cases_prop n) (fn _ => |
|
1364 |
res_inst_tac [(rN, rN)] scheme 1 |
|
1365 |
THEN simp_all_tac HOL_basic_ss [unit_all_eq1]); |
|
1366 |
||
1367 |
val induct0 = induct (0, induct_scheme'); |
|
1368 |
val cases0 = cases (0, cases_scheme'); |
|
1369 |
val more_induct = map induct (ancestry ~~ more_induct_scheme'); |
|
1370 |
val more_cases = map cases (ancestry ~~ more_cases_scheme'); |
|
1371 |
||
1372 |
val equality = prove_standard [] [] equality_prop (fn _ => |
|
| 11967 | 1373 |
fn st => let val [r, r'] = map #1 (rev (Tactic.innermost_params 1 st)) in |
1374 |
st |> (res_inst_tac [(rN, r)] cases_scheme' 1 |
|
1375 |
THEN res_inst_tac [(rN, r')] cases_scheme' 1 |
|
1376 |
THEN simp_all_tac HOL_basic_ss (parent_simps @ sel_convs)) |
|
1377 |
end); |
|
1378 |
||
| 12247 | 1379 |
val (more_thms_thy, [_, _, equality']) = |
1380 |
thms_thy |> PureThy.add_thms |
|
| 12255 | 1381 |
[(("induct", induct0), induct_type_global name),
|
1382 |
(("cases", cases0), cases_type_global name),
|
|
| 12374 | 1383 |
(("equality", equality), [ContextRules.intro_bang_global None])]
|
| 12255 | 1384 |
|>> (#1 oo PureThy.add_thmss) |
1385 |
[(("more_induct", more_induct), induct_type_global ""),
|
|
1386 |
(("more_cases", more_cases), cases_type_global "")];
|
|
| 11967 | 1387 |
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
1388 |
val simps = sel_convs' @ update_convs'; |
| 6519 | 1389 |
val iffs = field_injects; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1390 |
|
| 12247 | 1391 |
val more_thms_thy' = |
1392 |
more_thms_thy |> (#1 oo PureThy.add_thmss) |
|
| 5707 | 1393 |
[(("simps", simps), [Simplifier.simp_add_global]),
|
| 6519 | 1394 |
(("iffs", iffs), [iff_add_global])];
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1395 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1396 |
|
| 12247 | 1397 |
(* 5th stage: final_thy *) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1398 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1399 |
val final_thy = |
| 12247 | 1400 |
more_thms_thy' |
1401 |
|> put_record name (make_record_info args parent fields field_inducts field_cases |
|
| 14255 | 1402 |
field_splits (field_simps @ simps)) |
1403 |
|> put_sel_upd (names @ [full_moreN]) simps |
|
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
1404 |
|> add_record_equalities (snd (split_last names)) equality' |
| 14255 | 1405 |
|> add_record_splits (snd (split_last names)) |
1406 |
(split_scheme_meta',split_scheme_object', |
|
1407 |
split_scheme_object_ex',split_scheme_free') |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1408 |
|> Theory.parent_path; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1409 |
|
| 6519 | 1410 |
in (final_thy, {simps = simps, iffs = iffs}) end;
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1411 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1412 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1413 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1414 |
(** theory extender interface **) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1415 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1416 |
(* prepare arguments *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1417 |
|
| 4894 | 1418 |
(*note: read_raw_typ avoids expanding type abbreviations*) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1419 |
fun read_raw_parent sign s = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1420 |
(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
|
1421 |
Type (name, Ts) => (Ts, name) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1422 |
| _ => error ("Bad parent record specification: " ^ quote s));
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1423 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1424 |
fun read_typ sign (env, s) = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1425 |
let |
| 5060 | 1426 |
fun def_sort (x, ~1) = assoc (env, x) |
1427 |
| def_sort _ = None; |
|
1428 |
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
|
1429 |
in (Term.add_typ_tfrees (T, env), T) end; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1430 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1431 |
fun cert_typ sign (env, raw_T) = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1432 |
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
|
1433 |
in (Term.add_typ_tfrees (T, env), T) end; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1434 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1435 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1436 |
(* add_record *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1437 |
|
| 4895 | 1438 |
(*we do all preparations and error checks here, deferring the real |
1439 |
work to record_definition*) |
|
| 4890 | 1440 |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1441 |
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
|
1442 |
let |
| 4970 | 1443 |
val _ = Theory.requires thy "Record" "record definitions"; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1444 |
val sign = Theory.sign_of thy; |
| 5698 | 1445 |
val _ = message ("Defining record " ^ quote bname ^ " ...");
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1446 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1447 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1448 |
(* parents *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1449 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1450 |
fun prep_inst T = snd (cert_typ sign ([], T)); |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1451 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1452 |
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
|
1453 |
handle ERROR => error ("The error(s) above in parent record specification");
|
| 12247 | 1454 |
val parents = add_parents thy parent []; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1455 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1456 |
val init_env = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1457 |
(case parent of |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1458 |
None => [] |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1459 |
| Some (types, _) => foldr Term.add_typ_tfrees (types, [])); |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1460 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1461 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1462 |
(* fields *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1463 |
|
| 12506 | 1464 |
fun prep_field (env, (c, raw_T, mx)) = |
| 4967 | 1465 |
let val (env', T) = prep_typ sign (env, raw_T) handle ERROR => |
1466 |
error ("The error(s) above occured in field " ^ quote c)
|
|
| 12506 | 1467 |
in (env', (c, T, mx)) end; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1468 |
|
| 4967 | 1469 |
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
|
1470 |
val envir_names = map fst envir; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1471 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1472 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1473 |
(* args *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1474 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1475 |
val defaultS = Sign.defaultS sign; |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1476 |
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
|
1477 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1478 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1479 |
(* errors *) |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1480 |
|
| 4890 | 1481 |
val name = Sign.full_name sign bname; |
1482 |
val err_dup_record = |
|
1483 |
if is_none (get_record thy name) then [] |
|
1484 |
else ["Duplicate definition of record " ^ quote name]; |
|
1485 |
||
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1486 |
val err_dup_parms = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1487 |
(case duplicates params of |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1488 |
[] => [] |
| 4890 | 1489 |
| dups => ["Duplicate parameter(s) " ^ commas dups]); |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1490 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1491 |
val err_extra_frees = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1492 |
(case gen_rems (op =) (envir_names, params) of |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1493 |
[] => [] |
| 4890 | 1494 |
| extras => ["Extra free type variable(s) " ^ commas extras]); |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1495 |
|
| 4890 | 1496 |
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
|
1497 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1498 |
val err_dup_fields = |
| 12506 | 1499 |
(case duplicates (map #1 bfields) of |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1500 |
[] => [] |
| 4890 | 1501 |
| dups => ["Duplicate field(s) " ^ commas_quote dups]); |
1502 |
||
1503 |
val err_bad_fields = |
|
| 12506 | 1504 |
if forall (not_equal moreN o #1) bfields then [] |
| 4890 | 1505 |
else ["Illegal field name " ^ quote moreN]; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1506 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1507 |
val err_dup_sorts = |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1508 |
(case duplicates envir_names of |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1509 |
[] => [] |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1510 |
| dups => ["Inconsistent sort constraints for " ^ commas dups]); |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1511 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1512 |
val errs = |
| 4890 | 1513 |
err_dup_record @ err_dup_parms @ err_extra_frees @ err_no_fields @ |
1514 |
err_dup_fields @ err_bad_fields @ err_dup_sorts; |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1515 |
in |
| 4890 | 1516 |
if null errs then () else error (cat_lines errs); |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1517 |
thy |> record_definition (args, bname) parent parents bfields |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1518 |
end |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1519 |
handle ERROR => error ("Failed to define record " ^ quote bname);
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1520 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1521 |
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
|
1522 |
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
|
1523 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1524 |
|
| 6358 | 1525 |
(** package setup **) |
1526 |
||
1527 |
(* setup theory *) |
|
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1528 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1529 |
val setup = |
| 5006 | 1530 |
[RecordsData.init, |
|
11490
f9ae28f55178
field_name_ast_tr superceded by constify_ast_tr in Pure;
wenzelm
parents:
11473
diff
changeset
|
1531 |
Theory.add_trfuns ([], parse_translation, [], []), |
| 6358 | 1532 |
Method.add_methods [record_split_method], |
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
1533 |
Simplifier.change_simpset_of Simplifier.addsimprocs |
|
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
1534 |
[record_simproc, record_eq_simproc]]; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1535 |
|
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1536 |
|
| 6358 | 1537 |
(* outer syntax *) |
1538 |
||
| 6723 | 1539 |
local structure P = OuterParse and K = OuterSyntax.Keyword in |
| 6358 | 1540 |
|
1541 |
val record_decl = |
|
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12590
diff
changeset
|
1542 |
P.type_args -- P.name -- |
|
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12590
diff
changeset
|
1543 |
(P.$$$ "=" |-- Scan.option (P.typ --| P.$$$ "+") -- Scan.repeat1 P.const); |
| 6358 | 1544 |
|
1545 |
val recordP = |
|
| 6723 | 1546 |
OuterSyntax.command "record" "define extensible record" K.thy_decl |
| 6519 | 1547 |
(record_decl >> (fn (x, (y, z)) => Toplevel.theory (#1 o add_record x y z))); |
| 6358 | 1548 |
|
1549 |
val _ = OuterSyntax.add_parsers [recordP]; |
|
1550 |
||
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1551 |
end; |
| 5698 | 1552 |
|
| 6384 | 1553 |
end; |
1554 |
||
| 5698 | 1555 |
structure BasicRecordPackage: BASIC_RECORD_PACKAGE = RecordPackage; |
1556 |
open BasicRecordPackage; |