author | wenzelm |
Sun, 04 Aug 2024 17:39:47 +0200 | |
changeset 80636 | 4041e7c8059d |
parent 79336 | 032a31db4c6f |
child 80701 | 39cd50407f79 |
permissions | -rw-r--r-- |
31723
f5cafe803b55
discontinued ancient tradition to suffix certain ML module names with "_package"
haftmann
parents:
31136
diff
changeset
|
1 |
(* Title: HOL/Tools/record.ML |
32763 | 2 |
Author: Wolfgang Naraschewski, TU Muenchen |
3 |
Author: Markus Wenzel, TU Muenchen |
|
4 |
Author: Norbert Schirmer, TU Muenchen |
|
76039
ca7737249aa4
option "sort_updates" for record update simproc. Make proper record simproc definitions.
Norbert Schirmer <nschirmer@apple.com>
parents:
74610
diff
changeset
|
5 |
Author: Norbert Schirmer, Apple, 2022 |
32763 | 6 |
Author: Thomas Sewell, NICTA |
7 |
||
8 |
Extensible records with structural subtyping. |
|
5698 | 9 |
*) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
10 |
|
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
11 |
signature RECORD = |
5698 | 12 |
sig |
43682 | 13 |
val type_abbr: bool Config.T |
14 |
val type_as_fields: bool Config.T |
|
15 |
val timing: bool Config.T |
|
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
16 |
|
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
17 |
type info = |
35138 | 18 |
{args: (string * sort) list, |
19 |
parent: (typ list * string) option, |
|
20 |
fields: (string * typ) list, |
|
21 |
extension: (string * typ list), |
|
22 |
ext_induct: thm, ext_inject: thm, ext_surjective: thm, ext_split: thm, ext_def: thm, |
|
23 |
select_convs: thm list, update_convs: thm list, select_defs: thm list, update_defs: thm list, |
|
24 |
fold_congs: thm list, unfold_congs: thm list, splits: thm list, defs: thm list, |
|
25 |
surjective: thm, equality: thm, induct_scheme: thm, induct: thm, cases_scheme: thm, |
|
26 |
cases: thm, simps: thm list, iffs: thm list} |
|
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
27 |
val get_info: theory -> string -> info option |
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
28 |
val the_info: theory -> string -> info |
41591 | 29 |
val get_hierarchy: theory -> (string * typ list) -> (string * ((string * sort) * typ) list) list |
61260 | 30 |
val add_record: {overloaded: bool} -> (string * sort) list * binding -> |
31 |
(typ list * string) option -> (binding * typ * mixfix) list -> theory -> theory |
|
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
32 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
33 |
val last_extT: typ -> (string * typ list) option |
32972 | 34 |
val dest_recTs: typ -> (string * typ list) list |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
35 |
val get_extT_fields: theory -> typ -> (string * typ) list * (string * typ) |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
36 |
val get_recT_fields: theory -> typ -> (string * typ) list * (string * typ) |
26088 | 37 |
val get_parent: theory -> string -> (typ list * string) option |
38 |
val get_extension: theory -> string -> (string * typ list) option |
|
16458 | 39 |
val get_extinjects: theory -> thm list |
40 |
val get_simpset: theory -> simpset |
|
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
41 |
val simproc: simproc |
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
42 |
val eq_simproc: simproc |
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
43 |
val upd_simproc: simproc |
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
44 |
val split_simproc: (term -> int) -> simproc |
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
45 |
val ex_sel_eq_simproc: simproc |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
46 |
val split_tac: Proof.context -> int -> tactic |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
47 |
val split_simp_tac: Proof.context -> thm list -> (term -> int) -> int -> tactic |
42793 | 48 |
val split_wrapper: string * (Proof.context -> wrapper) |
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
49 |
|
62117
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
50 |
val pretty_recT: Proof.context -> typ -> Pretty.T |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
51 |
val string_of_record: Proof.context -> string -> string |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
52 |
|
47842
bfc08ce7b7b9
provide [[record_codegen]] option for skipping codegen setup for records
Gerwin Klein <gerwin.klein@nicta.com.au>
parents:
47783
diff
changeset
|
53 |
val codegen: bool Config.T |
76039
ca7737249aa4
option "sort_updates" for record update simproc. Make proper record simproc definitions.
Norbert Schirmer <nschirmer@apple.com>
parents:
74610
diff
changeset
|
54 |
val sort_updates: bool Config.T |
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
55 |
val updateN: string |
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
56 |
val ext_typeN: string |
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
57 |
val extN: string |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
58 |
end; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
59 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
60 |
|
34151
8d57ce46b3f7
prefer prefix "iso" over potentially misleading "is"; tuned
haftmann
parents:
33957
diff
changeset
|
61 |
signature ISO_TUPLE_SUPPORT = |
32752
f65d74a264dd
Initial response to feedback from Norbert, Makarius on record patch
tsewell@rubicon.NSW.bigpond.net.au
parents:
32749
diff
changeset
|
62 |
sig |
61260 | 63 |
val add_iso_tuple_type: {overloaded: bool} -> binding * (string * sort) list -> |
36151
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
64 |
typ * typ -> theory -> (term * term) * theory |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
65 |
val mk_cons_tuple: term * term -> term |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
66 |
val dest_cons_tuple: term -> term * term |
59164 | 67 |
val iso_tuple_intros_tac: Proof.context -> int -> tactic |
32752
f65d74a264dd
Initial response to feedback from Norbert, Makarius on record patch
tsewell@rubicon.NSW.bigpond.net.au
parents:
32749
diff
changeset
|
68 |
end; |
f65d74a264dd
Initial response to feedback from Norbert, Makarius on record patch
tsewell@rubicon.NSW.bigpond.net.au
parents:
32749
diff
changeset
|
69 |
|
34151
8d57ce46b3f7
prefer prefix "iso" over potentially misleading "is"; tuned
haftmann
parents:
33957
diff
changeset
|
70 |
structure Iso_Tuple_Support: ISO_TUPLE_SUPPORT = |
32752
f65d74a264dd
Initial response to feedback from Norbert, Makarius on record patch
tsewell@rubicon.NSW.bigpond.net.au
parents:
32749
diff
changeset
|
71 |
struct |
f65d74a264dd
Initial response to feedback from Norbert, Makarius on record patch
tsewell@rubicon.NSW.bigpond.net.au
parents:
32749
diff
changeset
|
72 |
|
34151
8d57ce46b3f7
prefer prefix "iso" over potentially misleading "is"; tuned
haftmann
parents:
33957
diff
changeset
|
73 |
val isoN = "_Tuple_Iso"; |
8d57ce46b3f7
prefer prefix "iso" over potentially misleading "is"; tuned
haftmann
parents:
33957
diff
changeset
|
74 |
|
8d57ce46b3f7
prefer prefix "iso" over potentially misleading "is"; tuned
haftmann
parents:
33957
diff
changeset
|
75 |
val iso_tuple_intro = @{thm isomorphic_tuple_intro}; |
8d57ce46b3f7
prefer prefix "iso" over potentially misleading "is"; tuned
haftmann
parents:
33957
diff
changeset
|
76 |
val iso_tuple_intros = Tactic.build_net @{thms isomorphic_tuple.intros}; |
8d57ce46b3f7
prefer prefix "iso" over potentially misleading "is"; tuned
haftmann
parents:
33957
diff
changeset
|
77 |
|
67149 | 78 |
val tuple_iso_tuple = (\<^const_name>\<open>Record.tuple_iso_tuple\<close>, @{thm tuple_iso_tuple}); |
32752
f65d74a264dd
Initial response to feedback from Norbert, Makarius on record patch
tsewell@rubicon.NSW.bigpond.net.au
parents:
32749
diff
changeset
|
79 |
|
34151
8d57ce46b3f7
prefer prefix "iso" over potentially misleading "is"; tuned
haftmann
parents:
33957
diff
changeset
|
80 |
structure Iso_Tuple_Thms = Theory_Data |
32752
f65d74a264dd
Initial response to feedback from Norbert, Makarius on record patch
tsewell@rubicon.NSW.bigpond.net.au
parents:
32749
diff
changeset
|
81 |
( |
f65d74a264dd
Initial response to feedback from Norbert, Makarius on record patch
tsewell@rubicon.NSW.bigpond.net.au
parents:
32749
diff
changeset
|
82 |
type T = thm Symtab.table; |
34151
8d57ce46b3f7
prefer prefix "iso" over potentially misleading "is"; tuned
haftmann
parents:
33957
diff
changeset
|
83 |
val empty = Symtab.make [tuple_iso_tuple]; |
33522 | 84 |
fun merge data = Symtab.merge Thm.eq_thm_prop data; (* FIXME handle Symtab.DUP ?? *) |
32752
f65d74a264dd
Initial response to feedback from Norbert, Makarius on record patch
tsewell@rubicon.NSW.bigpond.net.au
parents:
32749
diff
changeset
|
85 |
); |
f65d74a264dd
Initial response to feedback from Norbert, Makarius on record patch
tsewell@rubicon.NSW.bigpond.net.au
parents:
32749
diff
changeset
|
86 |
|
41575 | 87 |
fun get_typedef_info tyco vs |
88 |
(({rep_type, Abs_name, ...}, {Rep_inject, Abs_inverse, ... }) : Typedef.info) thy = |
|
38529
4cc2ca4d6237
formally integrated typecopy layer into record package
haftmann
parents:
38401
diff
changeset
|
89 |
let |
4cc2ca4d6237
formally integrated typecopy layer into record package
haftmann
parents:
38401
diff
changeset
|
90 |
val exists_thm = |
4cc2ca4d6237
formally integrated typecopy layer into record package
haftmann
parents:
38401
diff
changeset
|
91 |
UNIV_I |
60801 | 92 |
|> Thm.instantiate' [SOME (Thm.global_ctyp_of thy (Logic.varifyT_global rep_type))] []; |
38529
4cc2ca4d6237
formally integrated typecopy layer into record package
haftmann
parents:
38401
diff
changeset
|
93 |
val proj_constr = Abs_inverse OF [exists_thm]; |
38534 | 94 |
val absT = Type (tyco, map TFree vs); |
38529
4cc2ca4d6237
formally integrated typecopy layer into record package
haftmann
parents:
38401
diff
changeset
|
95 |
in |
4cc2ca4d6237
formally integrated typecopy layer into record package
haftmann
parents:
38401
diff
changeset
|
96 |
thy |
38534 | 97 |
|> pair (tyco, ((Rep_inject, proj_constr), Const (Abs_name, rep_type --> absT), absT)) |
38529
4cc2ca4d6237
formally integrated typecopy layer into record package
haftmann
parents:
38401
diff
changeset
|
98 |
end |
4cc2ca4d6237
formally integrated typecopy layer into record package
haftmann
parents:
38401
diff
changeset
|
99 |
|
61260 | 100 |
fun do_typedef overloaded raw_tyco repT raw_vs thy = |
38529
4cc2ca4d6237
formally integrated typecopy layer into record package
haftmann
parents:
38401
diff
changeset
|
101 |
let |
42361 | 102 |
val ctxt = Proof_Context.init_global thy |> Variable.declare_typ repT; |
103 |
val vs = map (Proof_Context.check_tfree ctxt) raw_vs; |
|
38529
4cc2ca4d6237
formally integrated typecopy layer into record package
haftmann
parents:
38401
diff
changeset
|
104 |
in |
4cc2ca4d6237
formally integrated typecopy layer into record package
haftmann
parents:
38401
diff
changeset
|
105 |
thy |
69829 | 106 |
|> Named_Target.theory_map_result (apsnd o Typedef.transform_info) |
107 |
(Typedef.add_typedef overloaded (raw_tyco, vs, NoSyn) |
|
108 |
(HOLogic.mk_UNIV repT) NONE (fn ctxt' => resolve_tac ctxt' [UNIV_witness] 1)) |
|
38534 | 109 |
|-> (fn (tyco, info) => get_typedef_info tyco vs info) |
32752
f65d74a264dd
Initial response to feedback from Norbert, Makarius on record patch
tsewell@rubicon.NSW.bigpond.net.au
parents:
32749
diff
changeset
|
110 |
end; |
f65d74a264dd
Initial response to feedback from Norbert, Makarius on record patch
tsewell@rubicon.NSW.bigpond.net.au
parents:
32749
diff
changeset
|
111 |
|
74599 | 112 |
fun mk_cons_tuple (t, u) = |
113 |
let val (A, B) = apply2 fastype_of (t, u) |
|
114 |
in \<^Const>\<open>iso_tuple_cons \<^Type>\<open>prod A B\<close> A B for \<^Const>\<open>tuple_iso_tuple A B\<close> t u\<close> end; |
|
115 |
||
116 |
fun dest_cons_tuple \<^Const_>\<open>iso_tuple_cons _ _ _ for \<open>Const _\<close> t u\<close> = (t, u) |
|
32972 | 117 |
| dest_cons_tuple t = raise TERM ("dest_cons_tuple", [t]); |
32752
f65d74a264dd
Initial response to feedback from Norbert, Makarius on record patch
tsewell@rubicon.NSW.bigpond.net.au
parents:
32749
diff
changeset
|
118 |
|
61260 | 119 |
fun add_iso_tuple_type overloaded (b, alphas) (leftT, rightT) thy = |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
120 |
let |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
121 |
val repT = HOLogic.mk_prodT (leftT, rightT); |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
122 |
|
38534 | 123 |
val ((_, ((rep_inject, abs_inverse), absC, absT)), typ_thy) = |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
124 |
thy |
61260 | 125 |
|> do_typedef overloaded b repT alphas |
37470 | 126 |
||> Sign.add_path (Binding.name_of b); (*FIXME proper prefixing instead*) |
60796 | 127 |
val typ_ctxt = Proof_Context.init_global typ_thy; |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
128 |
|
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
129 |
(*construct a type and body for the isomorphism constant by |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
130 |
instantiating the theorem to which the definition will be applied*) |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
131 |
val intro_inst = |
60796 | 132 |
rep_inject RS |
133 |
infer_instantiate typ_ctxt |
|
134 |
[(("abst", 0), Thm.cterm_of typ_ctxt absC)] iso_tuple_intro; |
|
59582 | 135 |
val (_, body) = Logic.dest_equals (List.last (Thm.prems_of intro_inst)); |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
136 |
val isomT = fastype_of body; |
37470 | 137 |
val isom_binding = Binding.suffix_name isoN b; |
35239 | 138 |
val isom_name = Sign.full_name typ_thy isom_binding; |
32972 | 139 |
val isom = Const (isom_name, isomT); |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
140 |
|
79336
032a31db4c6f
clarified signature: downgrade old-style Global_Theory.add_defs to Global_Theory.add_def without attributes;
wenzelm
parents:
78812
diff
changeset
|
141 |
val (isom_def, cdef_thy) = |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
142 |
typ_thy |
42375
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42361
diff
changeset
|
143 |
|> Sign.declare_const_global ((isom_binding, isomT), NoSyn) |> snd |
79336
032a31db4c6f
clarified signature: downgrade old-style Global_Theory.add_defs to Global_Theory.add_def without attributes;
wenzelm
parents:
78812
diff
changeset
|
144 |
|> Global_Theory.add_def |
032a31db4c6f
clarified signature: downgrade old-style Global_Theory.add_defs to Global_Theory.add_def without attributes;
wenzelm
parents:
78812
diff
changeset
|
145 |
(Binding.concealed (Thm.def_binding isom_binding), Logic.mk_equals (isom, body)) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
146 |
|
34151
8d57ce46b3f7
prefer prefix "iso" over potentially misleading "is"; tuned
haftmann
parents:
33957
diff
changeset
|
147 |
val iso_tuple = isom_def RS (abs_inverse RS (rep_inject RS iso_tuple_intro)); |
74599 | 148 |
val cons = \<^Const>\<open>iso_tuple_cons absT leftT rightT\<close>; |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
149 |
|
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
150 |
val thm_thy = |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
151 |
cdef_thy |
34151
8d57ce46b3f7
prefer prefix "iso" over potentially misleading "is"; tuned
haftmann
parents:
33957
diff
changeset
|
152 |
|> Iso_Tuple_Thms.map (Symtab.insert Thm.eq_thm_prop (isom_name, iso_tuple)) |
35239 | 153 |
|> Sign.restore_naming thy |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
154 |
in |
32972 | 155 |
((isom, cons $ isom), thm_thy) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
156 |
end; |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
157 |
|
59164 | 158 |
fun iso_tuple_intros_tac ctxt = |
159 |
resolve_from_net_tac ctxt iso_tuple_intros THEN' |
|
32975 | 160 |
CSUBGOAL (fn (cgoal, i) => |
161 |
let |
|
162 |
val goal = Thm.term_of cgoal; |
|
163 |
||
60326 | 164 |
val isthms = Iso_Tuple_Thms.get (Proof_Context.theory_of ctxt); |
34151
8d57ce46b3f7
prefer prefix "iso" over potentially misleading "is"; tuned
haftmann
parents:
33957
diff
changeset
|
165 |
fun err s t = raise TERM ("iso_tuple_intros_tac: " ^ s, [t]); |
32975 | 166 |
|
167 |
val goal' = Envir.beta_eta_contract goal; |
|
168 |
val is = |
|
169 |
(case goal' of |
|
74599 | 170 |
\<^Const_>\<open>Trueprop for \<^Const>\<open>isomorphic_tuple _ _ _ for \<open>Const is\<close>\<close>\<close> => is |
32975 | 171 |
| _ => err "unexpected goal format" goal'); |
172 |
val isthm = |
|
173 |
(case Symtab.lookup isthms (#1 is) of |
|
174 |
SOME isthm => isthm |
|
175 |
| NONE => err "no thm found for constant" (Const is)); |
|
60752 | 176 |
in resolve_tac ctxt [isthm] i end); |
32752
f65d74a264dd
Initial response to feedback from Norbert, Makarius on record patch
tsewell@rubicon.NSW.bigpond.net.au
parents:
32749
diff
changeset
|
177 |
|
f65d74a264dd
Initial response to feedback from Norbert, Makarius on record patch
tsewell@rubicon.NSW.bigpond.net.au
parents:
32749
diff
changeset
|
178 |
end; |
f65d74a264dd
Initial response to feedback from Norbert, Makarius on record patch
tsewell@rubicon.NSW.bigpond.net.au
parents:
32749
diff
changeset
|
179 |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
180 |
|
31723
f5cafe803b55
discontinued ancient tradition to suffix certain ML module names with "_package"
haftmann
parents:
31136
diff
changeset
|
181 |
structure Record: RECORD = |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
182 |
struct |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
183 |
|
35133 | 184 |
val surject_assistI = @{thm iso_tuple_surjective_proof_assistI}; |
185 |
val surject_assist_idE = @{thm iso_tuple_surjective_proof_assist_idE}; |
|
186 |
||
187 |
val updacc_accessor_eqE = @{thm update_accessor_accessor_eqE}; |
|
188 |
val updacc_updator_eqE = @{thm update_accessor_updator_eqE}; |
|
189 |
val updacc_eq_idI = @{thm iso_tuple_update_accessor_eq_assist_idI}; |
|
190 |
val updacc_eq_triv = @{thm iso_tuple_update_accessor_eq_assist_triv}; |
|
191 |
||
192 |
val updacc_foldE = @{thm update_accessor_congruence_foldE}; |
|
193 |
val updacc_unfoldE = @{thm update_accessor_congruence_unfoldE}; |
|
194 |
val updacc_noopE = @{thm update_accessor_noopE}; |
|
195 |
val updacc_noop_compE = @{thm update_accessor_noop_compE}; |
|
196 |
val updacc_cong_idI = @{thm update_accessor_cong_assist_idI}; |
|
197 |
val updacc_cong_triv = @{thm update_accessor_cong_assist_triv}; |
|
198 |
val updacc_cong_from_eq = @{thm iso_tuple_update_accessor_cong_from_eq}; |
|
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
199 |
|
67149 | 200 |
val codegen = Attrib.setup_config_bool \<^binding>\<open>record_codegen\<close> (K true); |
76039
ca7737249aa4
option "sort_updates" for record update simproc. Make proper record simproc definitions.
Norbert Schirmer <nschirmer@apple.com>
parents:
74610
diff
changeset
|
201 |
val sort_updates = Attrib.setup_config_bool \<^binding>\<open>record_sort_updates\<close> (K false); |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
202 |
|
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
203 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
204 |
(** name components **) |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
205 |
|
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
206 |
val rN = "r"; |
15215 | 207 |
val wN = "w"; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
208 |
val moreN = "more"; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
209 |
val schemeN = "_scheme"; |
38531
a11a1e4e0403
authentic syntax allows simplification of type names
haftmann
parents:
38530
diff
changeset
|
210 |
val ext_typeN = "_ext"; |
a11a1e4e0403
authentic syntax allows simplification of type names
haftmann
parents:
38530
diff
changeset
|
211 |
val inner_typeN = "_inner"; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
212 |
val extN ="_ext"; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
213 |
val updateN = "_update"; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
214 |
val makeN = "make"; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
215 |
val fields_selN = "fields"; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
216 |
val extendN = "extend"; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
217 |
val truncateN = "truncate"; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
218 |
|
32335 | 219 |
|
220 |
||
4894 | 221 |
(*** utilities ***) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
222 |
|
45424
01d75cf04497
localized Record.decode_type: use standard Proof_Context.get_sort;
wenzelm
parents:
44653
diff
changeset
|
223 |
fun varifyT idx = map_type_tfree (fn (a, S) => TVar ((a, idx), S)); |
19748 | 224 |
|
32335 | 225 |
|
15012
28fa57b57209
Added reference record_definition_quick_and_dirty_sensitive, to
schirmer
parents:
14981
diff
changeset
|
226 |
(* timing *) |
28fa57b57209
Added reference record_definition_quick_and_dirty_sensitive, to
schirmer
parents:
14981
diff
changeset
|
227 |
|
67149 | 228 |
val timing = Attrib.setup_config_bool \<^binding>\<open>record_timing\<close> (K false); |
43682 | 229 |
fun timeit_msg ctxt s x = if Config.get ctxt timing then (warning s; timeit x) else x (); |
230 |
fun timing_msg ctxt s = if Config.get ctxt timing then warning s else (); |
|
17261 | 231 |
|
32335 | 232 |
|
12255 | 233 |
(* syntax *) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
234 |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
235 |
val Trueprop = HOLogic.mk_Trueprop; |
4894 | 236 |
|
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
237 |
infix 0 :== ===; |
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
238 |
infixr 0 ==>; |
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
239 |
|
37781
2fbbf0a48cef
moved misc legacy stuff from OldGoals to Misc_Legacy;
wenzelm
parents:
37470
diff
changeset
|
240 |
val op :== = Misc_Legacy.mk_defpair; |
32799
7478ea535416
eliminated dead code, redundant bindings and parameters;
wenzelm
parents:
32770
diff
changeset
|
241 |
val op === = Trueprop o HOLogic.mk_eq; |
7478ea535416
eliminated dead code, redundant bindings and parameters;
wenzelm
parents:
32770
diff
changeset
|
242 |
val op ==> = Logic.mk_implies; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
243 |
|
32335 | 244 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
245 |
(* constructor *) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
246 |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
247 |
fun mk_ext (name, T) ts = |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
248 |
let val Ts = map fastype_of ts |
35239 | 249 |
in list_comb (Const (suffix extN name, Ts ---> T), ts) end; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
250 |
|
32335 | 251 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
252 |
(* selector *) |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
253 |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
254 |
fun mk_selC sT (c, T) = (c, sT --> T); |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
255 |
|
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
256 |
fun mk_sel s (c, T) = |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
257 |
let val sT = fastype_of s |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
258 |
in Const (mk_selC sT (c, T)) $ s end; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
259 |
|
32335 | 260 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
261 |
(* updates *) |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
262 |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
263 |
fun mk_updC sfx sT (c, T) = (suffix sfx c, (T --> T) --> sT --> sT); |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
264 |
|
21226
a607ae87ee81
field-update in records is generalised to take a function on the field
schirmer
parents:
21109
diff
changeset
|
265 |
fun mk_upd' sfx c v sT = |
a607ae87ee81
field-update in records is generalised to take a function on the field
schirmer
parents:
21109
diff
changeset
|
266 |
let val vT = domain_type (fastype_of v); |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
267 |
in Const (mk_updC sfx sT (c, vT)) $ v end; |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
268 |
|
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
269 |
fun mk_upd sfx c v s = mk_upd' sfx c v (fastype_of s) $ s; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
270 |
|
32335 | 271 |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
272 |
(* types *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
273 |
|
32799
7478ea535416
eliminated dead code, redundant bindings and parameters;
wenzelm
parents:
32770
diff
changeset
|
274 |
fun dest_recT (typ as Type (c_ext_type, Ts as (_ :: _))) = |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
275 |
(case try (unsuffix ext_typeN) c_ext_type of |
31723
f5cafe803b55
discontinued ancient tradition to suffix certain ML module names with "_package"
haftmann
parents:
31136
diff
changeset
|
276 |
NONE => raise TYPE ("Record.dest_recT", [typ], []) |
15570 | 277 |
| SOME c => ((c, Ts), List.last Ts)) |
31723
f5cafe803b55
discontinued ancient tradition to suffix certain ML module names with "_package"
haftmann
parents:
31136
diff
changeset
|
278 |
| dest_recT typ = raise TYPE ("Record.dest_recT", [typ], []); |
5197 | 279 |
|
32975 | 280 |
val is_recT = can dest_recT; |
11833 | 281 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
282 |
fun dest_recTs T = |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
283 |
let val ((c, Ts), U) = dest_recT T |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
284 |
in (c, Ts) :: dest_recTs U |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
285 |
end handle TYPE _ => []; |
14255 | 286 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
287 |
fun last_extT T = |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
288 |
let val ((c, Ts), U) = dest_recT T in |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
289 |
(case last_extT U of |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
290 |
NONE => SOME (c, Ts) |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
291 |
| SOME l => SOME l) |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
292 |
end handle TYPE _ => NONE; |
14255 | 293 |
|
17261 | 294 |
fun rec_id i T = |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
295 |
let |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
296 |
val rTs = dest_recTs T; |
33957 | 297 |
val rTs' = if i < 0 then rTs else take i rTs; |
32764
690f9cccf232
replaced meta_iffD2 by existing Drule.equal_elim_rule2;
wenzelm
parents:
32763
diff
changeset
|
298 |
in implode (map #1 rTs') end; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
299 |
|
32335 | 300 |
|
301 |
||
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
302 |
(*** extend theory by record definition ***) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
303 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
304 |
(** record info **) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
305 |
|
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
306 |
(* type info and parent_info *) |
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
307 |
|
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
308 |
type info = |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
309 |
{args: (string * sort) list, |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
310 |
parent: (typ list * string) option, |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
311 |
fields: (string * typ) list, |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
312 |
extension: (string * typ list), |
35138 | 313 |
|
314 |
ext_induct: thm, |
|
315 |
ext_inject: thm, |
|
316 |
ext_surjective: thm, |
|
317 |
ext_split: thm, |
|
318 |
ext_def: thm, |
|
319 |
||
320 |
select_convs: thm list, |
|
321 |
update_convs: thm list, |
|
322 |
select_defs: thm list, |
|
323 |
update_defs: thm list, |
|
47783 | 324 |
fold_congs: thm list, (* potentially used in L4.verified *) |
325 |
unfold_congs: thm list, (* potentially used in L4.verified *) |
|
35138 | 326 |
splits: thm list, |
327 |
defs: thm list, |
|
328 |
||
329 |
surjective: thm, |
|
330 |
equality: thm, |
|
331 |
induct_scheme: thm, |
|
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
332 |
induct: thm, |
35138 | 333 |
cases_scheme: thm, |
334 |
cases: thm, |
|
335 |
||
336 |
simps: thm list, |
|
337 |
iffs: thm list}; |
|
338 |
||
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
339 |
fun make_info args parent fields extension |
35138 | 340 |
ext_induct ext_inject ext_surjective ext_split ext_def |
341 |
select_convs update_convs select_defs update_defs fold_congs unfold_congs splits defs |
|
342 |
surjective equality induct_scheme induct cases_scheme cases |
|
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
343 |
simps iffs : info = |
17261 | 344 |
{args = args, parent = parent, fields = fields, extension = extension, |
35138 | 345 |
ext_induct = ext_induct, ext_inject = ext_inject, ext_surjective = ext_surjective, |
346 |
ext_split = ext_split, ext_def = ext_def, select_convs = select_convs, |
|
347 |
update_convs = update_convs, select_defs = select_defs, update_defs = update_defs, |
|
348 |
fold_congs = fold_congs, unfold_congs = unfold_congs, splits = splits, defs = defs, |
|
349 |
surjective = surjective, equality = equality, induct_scheme = induct_scheme, |
|
350 |
induct = induct, cases_scheme = cases_scheme, cases = cases, simps = simps, iffs = iffs}; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
351 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
352 |
type parent_info = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
353 |
{name: string, |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
354 |
fields: (string * typ) list, |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
355 |
extension: (string * typ list), |
35138 | 356 |
induct_scheme: thm, |
357 |
ext_def: thm}; |
|
358 |
||
359 |
fun make_parent_info name fields extension ext_def induct_scheme : parent_info = |
|
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
360 |
{name = name, fields = fields, extension = extension, |
35138 | 361 |
ext_def = ext_def, induct_scheme = induct_scheme}; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
362 |
|
22846 | 363 |
|
364 |
(* theory data *) |
|
5001 | 365 |
|
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
366 |
type data = |
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
367 |
{records: info Symtab.table, |
7178 | 368 |
sel_upd: |
32744
50406c4951d9
Record patch imported and working.
Thomas Sewell <tsewell@nicta.com.au>
parents:
32743
diff
changeset
|
369 |
{selectors: (int * bool) Symtab.table, |
7178 | 370 |
updates: string Symtab.table, |
46047
6170af176fbb
tuned -- afford slightly larger simpset in simp_defs_tac;
wenzelm
parents:
46046
diff
changeset
|
371 |
simpset: simpset, |
46221
6dcb2cea827d
eliminated dead code, together with spurious warning about congruence rule for "Fun.comp";
wenzelm
parents:
46219
diff
changeset
|
372 |
defset: simpset}, |
14255 | 373 |
equalities: thm Symtab.table, |
15015
c5768e8c4da4
* record_upd_simproc also simplifies trivial updates:
schirmer
parents:
15012
diff
changeset
|
374 |
extinjects: thm list, |
32764
690f9cccf232
replaced meta_iffD2 by existing Drule.equal_elim_rule2;
wenzelm
parents:
32763
diff
changeset
|
375 |
extsplit: thm Symtab.table, (*maps extension name to split rule*) |
35135 | 376 |
splits: (thm * thm * thm * thm) Symtab.table, (*!!, ALL, EX - split-equalities, induct rule*) |
32764
690f9cccf232
replaced meta_iffD2 by existing Drule.equal_elim_rule2;
wenzelm
parents:
32763
diff
changeset
|
377 |
extfields: (string * typ) list Symtab.table, (*maps extension to its fields*) |
690f9cccf232
replaced meta_iffD2 by existing Drule.equal_elim_rule2;
wenzelm
parents:
32763
diff
changeset
|
378 |
fieldext: (string * typ list) Symtab.table}; (*maps field to its extension*) |
7178 | 379 |
|
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
380 |
fun make_data |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
381 |
records sel_upd equalities extinjects extsplit splits extfields fieldext = |
17261 | 382 |
{records = records, sel_upd = sel_upd, |
383 |
equalities = equalities, extinjects=extinjects, extsplit = extsplit, splits = splits, |
|
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
384 |
extfields = extfields, fieldext = fieldext }: data; |
7178 | 385 |
|
38758
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
386 |
structure Data = Theory_Data |
22846 | 387 |
( |
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
388 |
type T = data; |
7178 | 389 |
val empty = |
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
390 |
make_data Symtab.empty |
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
391 |
{selectors = Symtab.empty, updates = Symtab.empty, |
46221
6dcb2cea827d
eliminated dead code, together with spurious warning about congruence rule for "Fun.comp";
wenzelm
parents:
46219
diff
changeset
|
392 |
simpset = HOL_basic_ss, defset = HOL_basic_ss} |
15015
c5768e8c4da4
* record_upd_simproc also simplifies trivial updates:
schirmer
parents:
15012
diff
changeset
|
393 |
Symtab.empty [] Symtab.empty Symtab.empty Symtab.empty Symtab.empty; |
33522 | 394 |
fun merge |
7178 | 395 |
({records = recs1, |
46221
6dcb2cea827d
eliminated dead code, together with spurious warning about congruence rule for "Fun.comp";
wenzelm
parents:
46219
diff
changeset
|
396 |
sel_upd = {selectors = sels1, updates = upds1, simpset = ss1, defset = ds1}, |
14255 | 397 |
equalities = equalities1, |
17261 | 398 |
extinjects = extinjects1, |
15015
c5768e8c4da4
* record_upd_simproc also simplifies trivial updates:
schirmer
parents:
15012
diff
changeset
|
399 |
extsplit = extsplit1, |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
400 |
splits = splits1, |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
401 |
extfields = extfields1, |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
402 |
fieldext = fieldext1}, |
7178 | 403 |
{records = recs2, |
46221
6dcb2cea827d
eliminated dead code, together with spurious warning about congruence rule for "Fun.comp";
wenzelm
parents:
46219
diff
changeset
|
404 |
sel_upd = {selectors = sels2, updates = upds2, simpset = ss2, defset = ds2}, |
15015
c5768e8c4da4
* record_upd_simproc also simplifies trivial updates:
schirmer
parents:
15012
diff
changeset
|
405 |
equalities = equalities2, |
17261 | 406 |
extinjects = extinjects2, |
407 |
extsplit = extsplit2, |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
408 |
splits = splits2, |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
409 |
extfields = extfields2, |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
410 |
fieldext = fieldext2}) = |
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
411 |
make_data |
7178 | 412 |
(Symtab.merge (K true) (recs1, recs2)) |
413 |
{selectors = Symtab.merge (K true) (sels1, sels2), |
|
414 |
updates = Symtab.merge (K true) (upds1, upds2), |
|
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
415 |
simpset = Simplifier.merge_ss (ss1, ss2), |
46221
6dcb2cea827d
eliminated dead code, together with spurious warning about congruence rule for "Fun.comp";
wenzelm
parents:
46219
diff
changeset
|
416 |
defset = Simplifier.merge_ss (ds1, ds2)} |
22634 | 417 |
(Symtab.merge Thm.eq_thm_prop (equalities1, equalities2)) |
33522 | 418 |
(Thm.merge_thms (extinjects1, extinjects2)) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
419 |
(Symtab.merge Thm.eq_thm_prop (extsplit1, extsplit2)) |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
420 |
(Symtab.merge (fn ((a, b, c, d), (w, x, y, z)) => |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
421 |
Thm.eq_thm (a, w) andalso Thm.eq_thm (b, x) andalso |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
422 |
Thm.eq_thm (c, y) andalso Thm.eq_thm (d, z)) (splits1, splits2)) |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
423 |
(Symtab.merge (K true) (extfields1, extfields2)) |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
424 |
(Symtab.merge (K true) (fieldext1, fieldext2)); |
22846 | 425 |
); |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
426 |
|
16458 | 427 |
|
7178 | 428 |
(* access 'records' *) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
429 |
|
38758
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
430 |
val get_info = Symtab.lookup o #records o Data.get; |
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
431 |
|
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
432 |
fun the_info thy name = |
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
433 |
(case get_info thy name of |
35138 | 434 |
SOME info => info |
435 |
| NONE => error ("Unknown record type " ^ quote name)); |
|
436 |
||
38758
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
437 |
fun put_record name info = |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
438 |
Data.map (fn {records, sel_upd, equalities, extinjects, extsplit, splits, extfields, fieldext} => |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
439 |
make_data (Symtab.update (name, info) records) |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
440 |
sel_upd equalities extinjects extsplit splits extfields fieldext); |
7178 | 441 |
|
22846 | 442 |
|
7178 | 443 |
(* access 'sel_upd' *) |
444 |
||
38758
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
445 |
val get_sel_upd = #sel_upd o Data.get; |
7178 | 446 |
|
17510 | 447 |
val is_selector = Symtab.defined o #selectors o get_sel_upd; |
17412 | 448 |
val get_updates = Symtab.lookup o #updates o get_sel_upd; |
32764
690f9cccf232
replaced meta_iffD2 by existing Drule.equal_elim_rule2;
wenzelm
parents:
32763
diff
changeset
|
449 |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
450 |
val get_simpset = #simpset o get_sel_upd; |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
451 |
val get_sel_upd_defs = #defset o get_sel_upd; |
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
452 |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
453 |
fun get_update_details u thy = |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
454 |
let val sel_upd = get_sel_upd thy in |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
455 |
(case Symtab.lookup (#updates sel_upd) u of |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
456 |
SOME s => |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
457 |
let val SOME (dep, ismore) = Symtab.lookup (#selectors sel_upd) s |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
458 |
in SOME (s, dep, ismore) end |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
459 |
| NONE => NONE) |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
460 |
end; |
7178 | 461 |
|
46221
6dcb2cea827d
eliminated dead code, together with spurious warning about congruence rule for "Fun.comp";
wenzelm
parents:
46219
diff
changeset
|
462 |
fun put_sel_upd names more depth simps defs thy = |
32744
50406c4951d9
Record patch imported and working.
Thomas Sewell <tsewell@nicta.com.au>
parents:
32743
diff
changeset
|
463 |
let |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
464 |
val ctxt0 = Proof_Context.init_global thy; |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
465 |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
466 |
val all = names @ [more]; |
32744
50406c4951d9
Record patch imported and working.
Thomas Sewell <tsewell@nicta.com.au>
parents:
32743
diff
changeset
|
467 |
val sels = map (rpair (depth, false)) names @ [(more, (depth, true))]; |
50406c4951d9
Record patch imported and working.
Thomas Sewell <tsewell@nicta.com.au>
parents:
32743
diff
changeset
|
468 |
val upds = map (suffix updateN) all ~~ all; |
50406c4951d9
Record patch imported and working.
Thomas Sewell <tsewell@nicta.com.au>
parents:
32743
diff
changeset
|
469 |
|
46221
6dcb2cea827d
eliminated dead code, together with spurious warning about congruence rule for "Fun.comp";
wenzelm
parents:
46219
diff
changeset
|
470 |
val {records, sel_upd = {selectors, updates, simpset, defset}, |
38758
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
471 |
equalities, extinjects, extsplit, splits, extfields, fieldext} = Data.get thy; |
46221
6dcb2cea827d
eliminated dead code, together with spurious warning about congruence rule for "Fun.comp";
wenzelm
parents:
46219
diff
changeset
|
472 |
val data = |
6dcb2cea827d
eliminated dead code, together with spurious warning about congruence rule for "Fun.comp";
wenzelm
parents:
46219
diff
changeset
|
473 |
make_data records |
6dcb2cea827d
eliminated dead code, together with spurious warning about congruence rule for "Fun.comp";
wenzelm
parents:
46219
diff
changeset
|
474 |
{selectors = fold Symtab.update_new sels selectors, |
6dcb2cea827d
eliminated dead code, together with spurious warning about congruence rule for "Fun.comp";
wenzelm
parents:
46219
diff
changeset
|
475 |
updates = fold Symtab.update_new upds updates, |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
476 |
simpset = simpset_map ctxt0 (fn ctxt => ctxt addsimps simps) simpset, |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
477 |
defset = simpset_map ctxt0 (fn ctxt => ctxt addsimps defs) defset} |
46221
6dcb2cea827d
eliminated dead code, together with spurious warning about congruence rule for "Fun.comp";
wenzelm
parents:
46219
diff
changeset
|
478 |
equalities extinjects extsplit splits extfields fieldext; |
38758
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
479 |
in Data.put data thy end; |
22846 | 480 |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
481 |
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
482 |
(* access 'equalities' *) |
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
483 |
|
38758
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
484 |
fun add_equalities name thm = |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
485 |
Data.map (fn {records, sel_upd, equalities, extinjects, extsplit, splits, extfields, fieldext} => |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
486 |
make_data records sel_upd |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
487 |
(Symtab.update_new (name, thm) equalities) extinjects extsplit splits extfields fieldext); |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
488 |
|
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
489 |
val get_equalities = Symtab.lookup o #equalities o Data.get; |
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
490 |
|
22846 | 491 |
|
15015
c5768e8c4da4
* record_upd_simproc also simplifies trivial updates:
schirmer
parents:
15012
diff
changeset
|
492 |
(* access 'extinjects' *) |
c5768e8c4da4
* record_upd_simproc also simplifies trivial updates:
schirmer
parents:
15012
diff
changeset
|
493 |
|
38758
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
494 |
fun add_extinjects thm = |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
495 |
Data.map (fn {records, sel_upd, equalities, extinjects, extsplit, splits, extfields, fieldext} => |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
496 |
make_data records sel_upd equalities (insert Thm.eq_thm_prop thm extinjects) |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
497 |
extsplit splits extfields fieldext); |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
498 |
|
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
499 |
val get_extinjects = rev o #extinjects o Data.get; |
15015
c5768e8c4da4
* record_upd_simproc also simplifies trivial updates:
schirmer
parents:
15012
diff
changeset
|
500 |
|
22846 | 501 |
|
15015
c5768e8c4da4
* record_upd_simproc also simplifies trivial updates:
schirmer
parents:
15012
diff
changeset
|
502 |
(* access 'extsplit' *) |
c5768e8c4da4
* record_upd_simproc also simplifies trivial updates:
schirmer
parents:
15012
diff
changeset
|
503 |
|
38758
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
504 |
fun add_extsplit name thm = |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
505 |
Data.map (fn {records, sel_upd, equalities, extinjects, extsplit, splits, extfields, fieldext} => |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
506 |
make_data records sel_upd equalities extinjects |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
507 |
(Symtab.update_new (name, thm) extsplit) splits extfields fieldext); |
15015
c5768e8c4da4
* record_upd_simproc also simplifies trivial updates:
schirmer
parents:
15012
diff
changeset
|
508 |
|
26088 | 509 |
|
14255 | 510 |
(* access 'splits' *) |
511 |
||
38758
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
512 |
fun add_splits name thmP = |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
513 |
Data.map (fn {records, sel_upd, equalities, extinjects, extsplit, splits, extfields, fieldext} => |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
514 |
make_data records sel_upd equalities extinjects extsplit |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
515 |
(Symtab.update_new (name, thmP) splits) extfields fieldext); |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
516 |
|
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
517 |
val get_splits = Symtab.lookup o #splits o Data.get; |
14255 | 518 |
|
15015
c5768e8c4da4
* record_upd_simproc also simplifies trivial updates:
schirmer
parents:
15012
diff
changeset
|
519 |
|
26088 | 520 |
(* parent/extension of named record *) |
15015
c5768e8c4da4
* record_upd_simproc also simplifies trivial updates:
schirmer
parents:
15012
diff
changeset
|
521 |
|
38758
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
522 |
val get_parent = (Option.join o Option.map #parent) oo (Symtab.lookup o #records o Data.get); |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
523 |
val get_extension = Option.map #extension oo (Symtab.lookup o #records o Data.get); |
17261 | 524 |
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
525 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
526 |
(* access 'extfields' *) |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
527 |
|
38758
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
528 |
fun add_extfields name fields = |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
529 |
Data.map (fn {records, sel_upd, equalities, extinjects, extsplit, splits, extfields, fieldext} => |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
530 |
make_data records sel_upd equalities extinjects extsplit splits |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
531 |
(Symtab.update_new (name, fields) extfields) fieldext); |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
532 |
|
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
533 |
val get_extfields = Symtab.lookup o #extfields o Data.get; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
534 |
|
18858 | 535 |
fun get_extT_fields thy T = |
15059 | 536 |
let |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
537 |
val ((name, Ts), moreT) = dest_recT T; |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
538 |
val recname = |
32799
7478ea535416
eliminated dead code, redundant bindings and parameters;
wenzelm
parents:
32770
diff
changeset
|
539 |
let val (nm :: _ :: rst) = rev (Long_Name.explode name) (* FIXME !? *) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
540 |
in Long_Name.implode (rev (nm :: rst)) end; |
45424
01d75cf04497
localized Record.decode_type: use standard Proof_Context.get_sort;
wenzelm
parents:
44653
diff
changeset
|
541 |
val varifyT = varifyT (maxidx_of_typs (moreT :: Ts) + 1); |
38758
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
542 |
val {records, extfields, ...} = Data.get thy; |
35149 | 543 |
val (fields, (more, _)) = split_last (Symtab.lookup_list extfields name); |
17412 | 544 |
val args = map varifyT (snd (#extension (the (Symtab.lookup records recname)))); |
15058 | 545 |
|
41489
8e2b8649507d
standardized split_last/last_elem towards List.last;
wenzelm
parents:
40845
diff
changeset
|
546 |
val subst = fold (Sign.typ_match thy) (#1 (split_last args) ~~ #1 (split_last Ts)) Vartab.empty; |
35149 | 547 |
val fields' = map (apsnd (Envir.norm_type subst o varifyT)) fields; |
548 |
in (fields', (more, moreT)) end; |
|
15058 | 549 |
|
18858 | 550 |
fun get_recT_fields thy T = |
17261 | 551 |
let |
35149 | 552 |
val (root_fields, (root_more, root_moreT)) = get_extT_fields thy T; |
553 |
val (rest_fields, rest_more) = |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
554 |
if is_recT root_moreT then get_recT_fields thy root_moreT |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
555 |
else ([], (root_more, root_moreT)); |
35149 | 556 |
in (root_fields @ rest_fields, rest_more) end; |
15059 | 557 |
|
15058 | 558 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
559 |
(* access 'fieldext' *) |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
560 |
|
38758
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
561 |
fun add_fieldext extname_types fields = |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
562 |
Data.map (fn {records, sel_upd, equalities, extinjects, extsplit, splits, extfields, fieldext} => |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
563 |
let |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
564 |
val fieldext' = |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
565 |
fold (fn field => Symtab.update_new (field, extname_types)) fields fieldext; |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
566 |
in make_data records sel_upd equalities extinjects extsplit splits extfields fieldext' end); |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
567 |
|
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
568 |
val get_fieldext = Symtab.lookup o #fieldext o Data.get; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
569 |
|
21962 | 570 |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
571 |
(* parent records *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
572 |
|
41577
9a64c4007864
export Record.get_hierarchy -- external tools typically need this information;
wenzelm
parents:
41576
diff
changeset
|
573 |
local |
9a64c4007864
export Record.get_hierarchy -- external tools typically need this information;
wenzelm
parents:
41576
diff
changeset
|
574 |
|
9a64c4007864
export Record.get_hierarchy -- external tools typically need this information;
wenzelm
parents:
41576
diff
changeset
|
575 |
fun add_parents _ NONE = I |
9a64c4007864
export Record.get_hierarchy -- external tools typically need this information;
wenzelm
parents:
41576
diff
changeset
|
576 |
| add_parents thy (SOME (types, name)) = |
12247 | 577 |
let |
578 |
fun err msg = error (msg ^ " parent record " ^ quote name); |
|
12255 | 579 |
|
41577
9a64c4007864
export Record.get_hierarchy -- external tools typically need this information;
wenzelm
parents:
41576
diff
changeset
|
580 |
val {args, parent, ...} = |
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
581 |
(case get_info thy name of SOME info => info | NONE => err "Unknown"); |
12247 | 582 |
val _ = if length types <> length args then err "Bad number of arguments for" else (); |
12255 | 583 |
|
12247 | 584 |
fun bad_inst ((x, S), T) = |
22578 | 585 |
if Sign.of_sort thy (T, S) then NONE else SOME x |
32952 | 586 |
val bads = map_filter bad_inst (args ~~ types); |
21962 | 587 |
val _ = null bads orelse err ("Ill-sorted instantiation of " ^ commas bads ^ " in"); |
12255 | 588 |
|
41591 | 589 |
val inst = args ~~ types; |
590 |
val subst = Term.map_type_tfree (the o AList.lookup (op =) inst); |
|
15570 | 591 |
val parent' = Option.map (apfst (map subst)) parent; |
41577
9a64c4007864
export Record.get_hierarchy -- external tools typically need this information;
wenzelm
parents:
41576
diff
changeset
|
592 |
in cons (name, inst) #> add_parents thy parent' end; |
9a64c4007864
export Record.get_hierarchy -- external tools typically need this information;
wenzelm
parents:
41576
diff
changeset
|
593 |
|
9a64c4007864
export Record.get_hierarchy -- external tools typically need this information;
wenzelm
parents:
41576
diff
changeset
|
594 |
in |
9a64c4007864
export Record.get_hierarchy -- external tools typically need this information;
wenzelm
parents:
41576
diff
changeset
|
595 |
|
9a64c4007864
export Record.get_hierarchy -- external tools typically need this information;
wenzelm
parents:
41576
diff
changeset
|
596 |
fun get_hierarchy thy (name, types) = add_parents thy (SOME (types, name)) []; |
9a64c4007864
export Record.get_hierarchy -- external tools typically need this information;
wenzelm
parents:
41576
diff
changeset
|
597 |
|
9a64c4007864
export Record.get_hierarchy -- external tools typically need this information;
wenzelm
parents:
41576
diff
changeset
|
598 |
fun get_parent_info thy parent = |
9a64c4007864
export Record.get_hierarchy -- external tools typically need this information;
wenzelm
parents:
41576
diff
changeset
|
599 |
add_parents thy parent [] |> map (fn (name, inst) => |
9a64c4007864
export Record.get_hierarchy -- external tools typically need this information;
wenzelm
parents:
41576
diff
changeset
|
600 |
let |
41591 | 601 |
val subst = Term.map_type_tfree (the o AList.lookup (op =) inst); |
41577
9a64c4007864
export Record.get_hierarchy -- external tools typically need this information;
wenzelm
parents:
41576
diff
changeset
|
602 |
val {fields, extension, induct_scheme, ext_def, ...} = the_info thy name; |
9a64c4007864
export Record.get_hierarchy -- external tools typically need this information;
wenzelm
parents:
41576
diff
changeset
|
603 |
val fields' = map (apsnd subst) fields; |
9a64c4007864
export Record.get_hierarchy -- external tools typically need this information;
wenzelm
parents:
41576
diff
changeset
|
604 |
val extension' = apsnd (map subst) extension; |
9a64c4007864
export Record.get_hierarchy -- external tools typically need this information;
wenzelm
parents:
41576
diff
changeset
|
605 |
in make_parent_info name fields' extension' ext_def induct_scheme end); |
9a64c4007864
export Record.get_hierarchy -- external tools typically need this information;
wenzelm
parents:
41576
diff
changeset
|
606 |
|
9a64c4007864
export Record.get_hierarchy -- external tools typically need this information;
wenzelm
parents:
41576
diff
changeset
|
607 |
end; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
608 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
609 |
|
21962 | 610 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
611 |
(** concrete syntax for records **) |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
612 |
|
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
613 |
(* parse translations *) |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
614 |
|
35144 | 615 |
local |
616 |
||
43681 | 617 |
fun split_args (field :: fields) ((name, arg) :: fargs) = |
618 |
if can (unsuffix name) field then |
|
619 |
let val (args, rest) = split_args fields fargs |
|
620 |
in (arg :: args, rest) end |
|
621 |
else raise Fail ("expecting field " ^ quote field ^ " but got " ^ quote name) |
|
622 |
| split_args [] (fargs as (_ :: _)) = ([], fargs) |
|
623 |
| split_args (_ :: _) [] = raise Fail "expecting more fields" |
|
624 |
| split_args _ _ = ([], []); |
|
625 |
||
67149 | 626 |
fun field_type_tr ((Const (\<^syntax_const>\<open>_field_type\<close>, _) $ Const (name, _) $ arg)) = |
35146 | 627 |
(name, arg) |
628 |
| field_type_tr t = raise TERM ("field_type_tr", [t]); |
|
629 |
||
67149 | 630 |
fun field_types_tr (Const (\<^syntax_const>\<open>_field_types\<close>, _) $ t $ u) = |
35146 | 631 |
field_type_tr t :: field_types_tr u |
632 |
| field_types_tr t = [field_type_tr t]; |
|
633 |
||
634 |
fun record_field_types_tr more ctxt t = |
|
17261 | 635 |
let |
42361 | 636 |
val thy = Proof_Context.theory_of ctxt; |
35146 | 637 |
fun err msg = raise TERM ("Error in record-type input: " ^ msg, [t]); |
638 |
||
32799
7478ea535416
eliminated dead code, redundant bindings and parameters;
wenzelm
parents:
32770
diff
changeset
|
639 |
fun mk_ext (fargs as (name, _) :: _) = |
42361 | 640 |
(case get_fieldext thy (Proof_Context.intern_const ctxt name) of |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
641 |
SOME (ext, alphas) => |
18858 | 642 |
(case get_extfields thy ext of |
35146 | 643 |
SOME fields => |
644 |
let |
|
41489
8e2b8649507d
standardized split_last/last_elem towards List.last;
wenzelm
parents:
40845
diff
changeset
|
645 |
val (fields', _) = split_last fields; |
35146 | 646 |
val types = map snd fields'; |
43681 | 647 |
val (args, rest) = split_args (map fst fields') fargs |
648 |
handle Fail msg => err msg; |
|
45434 | 649 |
val argtypes = Syntax.check_typs ctxt (map Syntax_Phases.decode_typ args); |
650 |
val varifyT = varifyT (fold Term.maxidx_typ argtypes ~1 + 1); |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
651 |
val vartypes = map varifyT types; |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
652 |
|
36159
bffb04bf4e83
more robust record syntax: use Type.raw_match to ignore sort constraints as in regular abbreviations (also note that constraints only affect operations, not types);
wenzelm
parents:
36153
diff
changeset
|
653 |
val subst = Type.raw_matches (vartypes, argtypes) Vartab.empty |
35146 | 654 |
handle Type.TYPE_MATCH => err "type is no proper record (extension)"; |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
655 |
val alphas' = |
42247
12fe41a92cd5
typed_print_translation: discontinued show_sorts argument;
wenzelm
parents:
42245
diff
changeset
|
656 |
map (Syntax_Phases.term_of_typ ctxt o Envir.norm_type subst o varifyT) |
12fe41a92cd5
typed_print_translation: discontinued show_sorts argument;
wenzelm
parents:
42245
diff
changeset
|
657 |
(#1 (split_last alphas)); |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
658 |
|
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
659 |
val more' = mk_ext rest; |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
660 |
in |
35430
df2862dc23a8
adapted to authentic syntax -- actual types are verbatim;
wenzelm
parents:
35410
diff
changeset
|
661 |
list_comb |
42290
b1f544c84040
discontinued special treatment of structure Lexicon;
wenzelm
parents:
42284
diff
changeset
|
662 |
(Syntax.const (Lexicon.mark_type (suffix ext_typeN ext)), alphas' @ [more']) |
35146 | 663 |
end |
43683 | 664 |
| NONE => err ("no fields defined for " ^ quote ext)) |
665 |
| NONE => err (quote name ^ " is no proper field")) |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
666 |
| mk_ext [] = more; |
35146 | 667 |
in |
668 |
mk_ext (field_types_tr t) |
|
669 |
end; |
|
670 |
||
67149 | 671 |
fun record_type_tr ctxt [t] = record_field_types_tr (Syntax.const \<^type_syntax>\<open>unit\<close>) ctxt t |
35146 | 672 |
| record_type_tr _ ts = raise TERM ("record_type_tr", ts); |
673 |
||
674 |
fun record_type_scheme_tr ctxt [t, more] = record_field_types_tr more ctxt t |
|
675 |
| record_type_scheme_tr _ ts = raise TERM ("record_type_scheme_tr", ts); |
|
676 |
||
35147 | 677 |
|
67149 | 678 |
fun field_tr ((Const (\<^syntax_const>\<open>_field\<close>, _) $ Const (name, _) $ arg)) = (name, arg) |
35147 | 679 |
| field_tr t = raise TERM ("field_tr", [t]); |
680 |
||
67149 | 681 |
fun fields_tr (Const (\<^syntax_const>\<open>_fields\<close>, _) $ t $ u) = field_tr t :: fields_tr u |
35147 | 682 |
| fields_tr t = [field_tr t]; |
683 |
||
684 |
fun record_fields_tr more ctxt t = |
|
685 |
let |
|
42361 | 686 |
val thy = Proof_Context.theory_of ctxt; |
35147 | 687 |
fun err msg = raise TERM ("Error in record input: " ^ msg, [t]); |
688 |
||
689 |
fun mk_ext (fargs as (name, _) :: _) = |
|
42361 | 690 |
(case get_fieldext thy (Proof_Context.intern_const ctxt name) of |
35147 | 691 |
SOME (ext, _) => |
692 |
(case get_extfields thy ext of |
|
693 |
SOME fields => |
|
694 |
let |
|
43681 | 695 |
val (args, rest) = split_args (map fst (fst (split_last fields))) fargs |
696 |
handle Fail msg => err msg; |
|
35147 | 697 |
val more' = mk_ext rest; |
42290
b1f544c84040
discontinued special treatment of structure Lexicon;
wenzelm
parents:
42284
diff
changeset
|
698 |
in list_comb (Syntax.const (Lexicon.mark_const (ext ^ extN)), args @ [more']) end |
43683 | 699 |
| NONE => err ("no fields defined for " ^ quote ext)) |
700 |
| NONE => err (quote name ^ " is no proper field")) |
|
35147 | 701 |
| mk_ext [] = more; |
702 |
in mk_ext (fields_tr t) end; |
|
703 |
||
67149 | 704 |
fun record_tr ctxt [t] = record_fields_tr (Syntax.const \<^const_syntax>\<open>Unity\<close>) ctxt t |
35147 | 705 |
| record_tr _ ts = raise TERM ("record_tr", ts); |
706 |
||
707 |
fun record_scheme_tr ctxt [t, more] = record_fields_tr more ctxt t |
|
708 |
| record_scheme_tr _ ts = raise TERM ("record_scheme_tr", ts); |
|
709 |
||
710 |
||
67149 | 711 |
fun field_update_tr (Const (\<^syntax_const>\<open>_field_update\<close>, _) $ Const (name, _) $ arg) = |
43683 | 712 |
Syntax.const (suffix updateN name) $ Abs (Name.uu_, dummyT, arg) |
35147 | 713 |
| field_update_tr t = raise TERM ("field_update_tr", [t]); |
714 |
||
67149 | 715 |
fun field_updates_tr (Const (\<^syntax_const>\<open>_field_updates\<close>, _) $ t $ u) = |
35147 | 716 |
field_update_tr t :: field_updates_tr u |
717 |
| field_updates_tr t = [field_update_tr t]; |
|
718 |
||
719 |
fun record_update_tr [t, u] = fold (curry op $) (field_updates_tr u) t |
|
720 |
| record_update_tr ts = raise TERM ("record_update_tr", ts); |
|
721 |
||
35146 | 722 |
in |
15215 | 723 |
|
56732 | 724 |
val _ = |
725 |
Theory.setup |
|
726 |
(Sign.parse_translation |
|
67149 | 727 |
[(\<^syntax_const>\<open>_record_update\<close>, K record_update_tr), |
728 |
(\<^syntax_const>\<open>_record\<close>, record_tr), |
|
729 |
(\<^syntax_const>\<open>_record_scheme\<close>, record_scheme_tr), |
|
730 |
(\<^syntax_const>\<open>_record_type\<close>, record_type_tr), |
|
731 |
(\<^syntax_const>\<open>_record_type_scheme\<close>, record_type_scheme_tr)]); |
|
35146 | 732 |
|
733 |
end; |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
734 |
|
21226
a607ae87ee81
field-update in records is generalised to take a function on the field
schirmer
parents:
21109
diff
changeset
|
735 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
736 |
(* print translations *) |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
737 |
|
67149 | 738 |
val type_abbr = Attrib.setup_config_bool \<^binding>\<open>record_type_abbr\<close> (K true); |
739 |
val type_as_fields = Attrib.setup_config_bool \<^binding>\<open>record_type_as_fields\<close> (K true); |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
740 |
|
35149 | 741 |
|
742 |
local |
|
743 |
||
744 |
(* FIXME early extern (!??) *) |
|
745 |
(* FIXME Syntax.free (??) *) |
|
67149 | 746 |
fun field_type_tr' (c, t) = Syntax.const \<^syntax_const>\<open>_field_type\<close> $ Syntax.const c $ t; |
747 |
||
748 |
fun field_types_tr' (t, u) = Syntax.const \<^syntax_const>\<open>_field_types\<close> $ t $ u; |
|
35149 | 749 |
|
750 |
fun record_type_tr' ctxt t = |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
751 |
let |
42361 | 752 |
val thy = Proof_Context.theory_of ctxt; |
35149 | 753 |
|
45427
fca432074fb2
sort assignment before simultaneous term_check, not isolated parse_term;
wenzelm
parents:
45424
diff
changeset
|
754 |
val T = Syntax_Phases.decode_typ t; |
45424
01d75cf04497
localized Record.decode_type: use standard Proof_Context.get_sort;
wenzelm
parents:
44653
diff
changeset
|
755 |
val varifyT = varifyT (Term.maxidx_of_typ T + 1); |
35149 | 756 |
|
757 |
fun strip_fields T = |
|
758 |
(case T of |
|
35615
61bb9f8af129
record_type_tr': more robust strip_fields (printed types are not necessarily well-formed, e.g. in Syntax.pretty_arity);
wenzelm
parents:
35614
diff
changeset
|
759 |
Type (ext, args as _ :: _) => |
35149 | 760 |
(case try (unsuffix ext_typeN) ext of |
761 |
SOME ext' => |
|
762 |
(case get_extfields thy ext' of |
|
35615
61bb9f8af129
record_type_tr': more robust strip_fields (printed types are not necessarily well-formed, e.g. in Syntax.pretty_arity);
wenzelm
parents:
35614
diff
changeset
|
763 |
SOME (fields as (x, _) :: _) => |
61bb9f8af129
record_type_tr': more robust strip_fields (printed types are not necessarily well-formed, e.g. in Syntax.pretty_arity);
wenzelm
parents:
35614
diff
changeset
|
764 |
(case get_fieldext thy x of |
35149 | 765 |
SOME (_, alphas) => |
766 |
(let |
|
41489
8e2b8649507d
standardized split_last/last_elem towards List.last;
wenzelm
parents:
40845
diff
changeset
|
767 |
val (f :: fs, _) = split_last fields; |
35149 | 768 |
val fields' = |
42361 | 769 |
apfst (Proof_Context.extern_const ctxt) f :: |
42359 | 770 |
map (apfst Long_Name.base_name) fs; |
35149 | 771 |
val (args', more) = split_last args; |
41489
8e2b8649507d
standardized split_last/last_elem towards List.last;
wenzelm
parents:
40845
diff
changeset
|
772 |
val alphavars = map varifyT (#1 (split_last alphas)); |
36159
bffb04bf4e83
more robust record syntax: use Type.raw_match to ignore sort constraints as in regular abbreviations (also note that constraints only affect operations, not types);
wenzelm
parents:
36153
diff
changeset
|
773 |
val subst = Type.raw_matches (alphavars, args') Vartab.empty; |
35149 | 774 |
val fields'' = (map o apsnd) (Envir.norm_type subst o varifyT) fields'; |
775 |
in fields'' @ strip_fields more end |
|
36159
bffb04bf4e83
more robust record syntax: use Type.raw_match to ignore sort constraints as in regular abbreviations (also note that constraints only affect operations, not types);
wenzelm
parents:
36153
diff
changeset
|
776 |
handle Type.TYPE_MATCH => [("", T)]) |
35615
61bb9f8af129
record_type_tr': more robust strip_fields (printed types are not necessarily well-formed, e.g. in Syntax.pretty_arity);
wenzelm
parents:
35614
diff
changeset
|
777 |
| _ => [("", T)]) |
61bb9f8af129
record_type_tr': more robust strip_fields (printed types are not necessarily well-formed, e.g. in Syntax.pretty_arity);
wenzelm
parents:
35614
diff
changeset
|
778 |
| _ => [("", T)]) |
61bb9f8af129
record_type_tr': more robust strip_fields (printed types are not necessarily well-formed, e.g. in Syntax.pretty_arity);
wenzelm
parents:
35614
diff
changeset
|
779 |
| _ => [("", T)]) |
35149 | 780 |
| _ => [("", T)]); |
781 |
||
782 |
val (fields, (_, moreT)) = split_last (strip_fields T); |
|
783 |
val _ = null fields andalso raise Match; |
|
42247
12fe41a92cd5
typed_print_translation: discontinued show_sorts argument;
wenzelm
parents:
42245
diff
changeset
|
784 |
val u = |
12fe41a92cd5
typed_print_translation: discontinued show_sorts argument;
wenzelm
parents:
42245
diff
changeset
|
785 |
foldr1 field_types_tr' |
12fe41a92cd5
typed_print_translation: discontinued show_sorts argument;
wenzelm
parents:
42245
diff
changeset
|
786 |
(map (field_type_tr' o apsnd (Syntax_Phases.term_of_typ ctxt)) fields); |
35149 | 787 |
in |
43682 | 788 |
if not (Config.get ctxt type_as_fields) orelse null fields then raise Match |
67149 | 789 |
else if moreT = HOLogic.unitT then Syntax.const \<^syntax_const>\<open>_record_type\<close> $ u |
42247
12fe41a92cd5
typed_print_translation: discontinued show_sorts argument;
wenzelm
parents:
42245
diff
changeset
|
790 |
else |
67149 | 791 |
Syntax.const \<^syntax_const>\<open>_record_type_scheme\<close> $ u $ |
42247
12fe41a92cd5
typed_print_translation: discontinued show_sorts argument;
wenzelm
parents:
42245
diff
changeset
|
792 |
Syntax_Phases.term_of_typ ctxt moreT |
35149 | 793 |
end; |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
794 |
|
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
795 |
(*try to reconstruct the record name type abbreviation from |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
796 |
the (nested) extension types*) |
35149 | 797 |
fun record_type_abbr_tr' abbr alphas zeta last_ext schemeT ctxt tm = |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
798 |
let |
45427
fca432074fb2
sort assignment before simultaneous term_check, not isolated parse_term;
wenzelm
parents:
45424
diff
changeset
|
799 |
val T = Syntax_Phases.decode_typ tm; |
45424
01d75cf04497
localized Record.decode_type: use standard Proof_Context.get_sort;
wenzelm
parents:
44653
diff
changeset
|
800 |
val varifyT = varifyT (maxidx_of_typ T + 1); |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
801 |
|
36151
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
802 |
fun mk_type_abbr subst name args = |
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
803 |
let val abbrT = Type (name, map (varifyT o TFree) args) |
42247
12fe41a92cd5
typed_print_translation: discontinued show_sorts argument;
wenzelm
parents:
42245
diff
changeset
|
804 |
in Syntax_Phases.term_of_typ ctxt (Envir.norm_type subst abbrT) end; |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
805 |
|
36159
bffb04bf4e83
more robust record syntax: use Type.raw_match to ignore sort constraints as in regular abbreviations (also note that constraints only affect operations, not types);
wenzelm
parents:
36153
diff
changeset
|
806 |
fun match rT T = Type.raw_match (varifyT rT, T) Vartab.empty; |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
807 |
in |
43682 | 808 |
if Config.get ctxt type_abbr then |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
809 |
(case last_extT T of |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
810 |
SOME (name, _) => |
35148 | 811 |
if name = last_ext then |
35149 | 812 |
let val subst = match schemeT T in |
36151
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
813 |
if HOLogic.is_unitT (Envir.norm_type subst (varifyT (TFree zeta))) |
32335 | 814 |
then mk_type_abbr subst abbr alphas |
815 |
else mk_type_abbr subst (suffix schemeN abbr) (alphas @ [zeta]) |
|
35149 | 816 |
end handle Type.TYPE_MATCH => record_type_tr' ctxt tm |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
817 |
else raise Match (*give print translation of specialised record a chance*) |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
818 |
| _ => raise Match) |
35149 | 819 |
else record_type_tr' ctxt tm |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
820 |
end; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
821 |
|
35149 | 822 |
in |
823 |
||
824 |
fun record_ext_type_tr' name = |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
825 |
let |
42290
b1f544c84040
discontinued special treatment of structure Lexicon;
wenzelm
parents:
42284
diff
changeset
|
826 |
val ext_type_name = Lexicon.mark_type (suffix ext_typeN name); |
35149 | 827 |
fun tr' ctxt ts = |
828 |
record_type_tr' ctxt (list_comb (Syntax.const ext_type_name, ts)); |
|
829 |
in (ext_type_name, tr') end; |
|
830 |
||
831 |
fun record_ext_type_abbr_tr' abbr alphas zeta last_ext schemeT name = |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
832 |
let |
42290
b1f544c84040
discontinued special treatment of structure Lexicon;
wenzelm
parents:
42284
diff
changeset
|
833 |
val ext_type_name = Lexicon.mark_type (suffix ext_typeN name); |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
834 |
fun tr' ctxt ts = |
35149 | 835 |
record_type_abbr_tr' abbr alphas zeta last_ext schemeT ctxt |
836 |
(list_comb (Syntax.const ext_type_name, ts)); |
|
837 |
in (ext_type_name, tr') end; |
|
838 |
||
839 |
end; |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
840 |
|
32335 | 841 |
|
35240 | 842 |
local |
843 |
||
844 |
(* FIXME Syntax.free (??) *) |
|
67149 | 845 |
fun field_tr' (c, t) = Syntax.const \<^syntax_const>\<open>_field\<close> $ Syntax.const c $ t; |
846 |
fun fields_tr' (t, u) = Syntax.const \<^syntax_const>\<open>_fields\<close> $ t $ u; |
|
35240 | 847 |
|
848 |
fun record_tr' ctxt t = |
|
849 |
let |
|
42361 | 850 |
val thy = Proof_Context.theory_of ctxt; |
35240 | 851 |
|
852 |
fun strip_fields t = |
|
853 |
(case strip_comb t of |
|
854 |
(Const (ext, _), args as (_ :: _)) => |
|
42290
b1f544c84040
discontinued special treatment of structure Lexicon;
wenzelm
parents:
42284
diff
changeset
|
855 |
(case try (Lexicon.unmark_const o unsuffix extN) ext of |
35240 | 856 |
SOME ext' => |
857 |
(case get_extfields thy ext' of |
|
858 |
SOME fields => |
|
859 |
(let |
|
41489
8e2b8649507d
standardized split_last/last_elem towards List.last;
wenzelm
parents:
40845
diff
changeset
|
860 |
val (f :: fs, _) = split_last (map fst fields); |
42361 | 861 |
val fields' = Proof_Context.extern_const ctxt f :: map Long_Name.base_name fs; |
35240 | 862 |
val (args', more) = split_last args; |
863 |
in (fields' ~~ args') @ strip_fields more end |
|
40722
441260986b63
make two copies (!) of Library.UnequalLengths coincide with ListPair.UnequalLengths;
wenzelm
parents:
40315
diff
changeset
|
864 |
handle ListPair.UnequalLengths => [("", t)]) |
35240 | 865 |
| NONE => [("", t)]) |
866 |
| NONE => [("", t)]) |
|
867 |
| _ => [("", t)]); |
|
868 |
||
869 |
val (fields, (_, more)) = split_last (strip_fields t); |
|
870 |
val _ = null fields andalso raise Match; |
|
871 |
val u = foldr1 fields_tr' (map field_tr' fields); |
|
872 |
in |
|
46046 | 873 |
(case more of |
67149 | 874 |
Const (\<^const_syntax>\<open>Unity\<close>, _) => Syntax.const \<^syntax_const>\<open>_record\<close> $ u |
875 |
| _ => Syntax.const \<^syntax_const>\<open>_record_scheme\<close> $ u $ more) |
|
35240 | 876 |
end; |
877 |
||
878 |
in |
|
879 |
||
880 |
fun record_ext_tr' name = |
|
881 |
let |
|
42290
b1f544c84040
discontinued special treatment of structure Lexicon;
wenzelm
parents:
42284
diff
changeset
|
882 |
val ext_name = Lexicon.mark_const (name ^ extN); |
35240 | 883 |
fun tr' ctxt ts = record_tr' ctxt (list_comb (Syntax.const ext_name, ts)); |
884 |
in (ext_name, tr') end; |
|
885 |
||
886 |
end; |
|
887 |
||
888 |
||
889 |
local |
|
890 |
||
41578
f5e7f6712815
recovered printing of record updates over compound terms, e.g. "(|x = a|)(|x := b|)", which was apparently broken in 45a2ffc5911e;
wenzelm
parents:
41577
diff
changeset
|
891 |
fun dest_update ctxt c = |
42290
b1f544c84040
discontinued special treatment of structure Lexicon;
wenzelm
parents:
42284
diff
changeset
|
892 |
(case try Lexicon.unmark_const c of |
42361 | 893 |
SOME d => try (unsuffix updateN) (Proof_Context.extern_const ctxt d) |
41578
f5e7f6712815
recovered printing of record updates over compound terms, e.g. "(|x = a|)(|x := b|)", which was apparently broken in 45a2ffc5911e;
wenzelm
parents:
41577
diff
changeset
|
894 |
| NONE => NONE); |
f5e7f6712815
recovered printing of record updates over compound terms, e.g. "(|x = a|)(|x := b|)", which was apparently broken in 45a2ffc5911e;
wenzelm
parents:
41577
diff
changeset
|
895 |
|
35240 | 896 |
fun field_updates_tr' ctxt (tm as Const (c, _) $ k $ u) = |
41578
f5e7f6712815
recovered printing of record updates over compound terms, e.g. "(|x = a|)(|x := b|)", which was apparently broken in 45a2ffc5911e;
wenzelm
parents:
41577
diff
changeset
|
897 |
(case dest_update ctxt c of |
f5e7f6712815
recovered printing of record updates over compound terms, e.g. "(|x = a|)(|x := b|)", which was apparently broken in 45a2ffc5911e;
wenzelm
parents:
41577
diff
changeset
|
898 |
SOME name => |
42284 | 899 |
(case try Syntax_Trans.const_abs_tr' k of |
42086
74bf78db0d87
added Syntax.const_abs_tr' with proper eta_abs and Term.is_dependent;
wenzelm
parents:
41928
diff
changeset
|
900 |
SOME t => |
67149 | 901 |
apfst (cons (Syntax.const \<^syntax_const>\<open>_field_update\<close> $ Syntax.free name $ t)) |
42086
74bf78db0d87
added Syntax.const_abs_tr' with proper eta_abs and Term.is_dependent;
wenzelm
parents:
41928
diff
changeset
|
902 |
(field_updates_tr' ctxt u) |
74bf78db0d87
added Syntax.const_abs_tr' with proper eta_abs and Term.is_dependent;
wenzelm
parents:
41928
diff
changeset
|
903 |
| NONE => ([], tm)) |
41578
f5e7f6712815
recovered printing of record updates over compound terms, e.g. "(|x = a|)(|x := b|)", which was apparently broken in 45a2ffc5911e;
wenzelm
parents:
41577
diff
changeset
|
904 |
| NONE => ([], tm)) |
35240 | 905 |
| field_updates_tr' _ tm = ([], tm); |
906 |
||
907 |
fun record_update_tr' ctxt tm = |
|
908 |
(case field_updates_tr' ctxt tm of |
|
909 |
([], _) => raise Match |
|
910 |
| (ts, u) => |
|
67149 | 911 |
Syntax.const \<^syntax_const>\<open>_record_update\<close> $ u $ |
912 |
foldr1 (fn (v, w) => Syntax.const \<^syntax_const>\<open>_field_updates\<close> $ v $ w) (rev ts)); |
|
35240 | 913 |
|
914 |
in |
|
915 |
||
916 |
fun field_update_tr' name = |
|
917 |
let |
|
42290
b1f544c84040
discontinued special treatment of structure Lexicon;
wenzelm
parents:
42284
diff
changeset
|
918 |
val update_name = Lexicon.mark_const (name ^ updateN); |
35240 | 919 |
fun tr' ctxt [t, u] = record_update_tr' ctxt (Syntax.const update_name $ t $ u) |
920 |
| tr' _ _ = raise Match; |
|
921 |
in (update_name, tr') end; |
|
922 |
||
923 |
end; |
|
924 |
||
925 |
||
32335 | 926 |
|
15015
c5768e8c4da4
* record_upd_simproc also simplifies trivial updates:
schirmer
parents:
15012
diff
changeset
|
927 |
(** record simprocs **) |
14358 | 928 |
|
32799
7478ea535416
eliminated dead code, redundant bindings and parameters;
wenzelm
parents:
32770
diff
changeset
|
929 |
fun is_sel_upd_pair thy (Const (s, _)) (Const (u, t')) = |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
930 |
(case get_updates thy u of |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
931 |
SOME u_name => u_name = s |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
932 |
| NONE => raise TERM ("is_sel_upd_pair: not update", [Const (u, t')])); |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
933 |
|
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
934 |
fun mk_comp_id f = |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
935 |
let val T = range_type (fastype_of f) |
74599 | 936 |
in HOLogic.mk_comp (\<^Const>\<open>id T\<close>, f) end; |
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
937 |
|
32752
f65d74a264dd
Initial response to feedback from Norbert, Makarius on record patch
tsewell@rubicon.NSW.bigpond.net.au
parents:
32749
diff
changeset
|
938 |
fun get_upd_funs (upd $ _ $ t) = upd :: get_upd_funs t |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
939 |
| get_upd_funs _ = []; |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
940 |
|
60796 | 941 |
fun get_accupd_simps ctxt term defset = |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
942 |
let |
60796 | 943 |
val thy = Proof_Context.theory_of ctxt; |
944 |
||
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
945 |
val (acc, [body]) = strip_comb term; |
35408 | 946 |
val upd_funs = sort_distinct Term_Ord.fast_term_ord (get_upd_funs body); |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
947 |
fun get_simp upd = |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
948 |
let |
35133 | 949 |
(* FIXME fresh "f" (!?) *) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
950 |
val T = domain_type (fastype_of upd); |
40845 | 951 |
val lhs = HOLogic.mk_comp (acc, upd $ Free ("f", T)); |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
952 |
val rhs = |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
953 |
if is_sel_upd_pair thy acc upd |
40845 | 954 |
then HOLogic.mk_comp (Free ("f", T), acc) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
955 |
else mk_comp_id acc; |
32799
7478ea535416
eliminated dead code, redundant bindings and parameters;
wenzelm
parents:
32770
diff
changeset
|
956 |
val prop = lhs === rhs; |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
957 |
val othm = |
60796 | 958 |
Goal.prove ctxt [] [] prop |
959 |
(fn {context = ctxt', ...} => |
|
960 |
simp_tac (put_simpset defset ctxt') 1 THEN |
|
961 |
REPEAT_DETERM (Iso_Tuple_Support.iso_tuple_intros_tac ctxt' 1) THEN |
|
962 |
TRY (simp_tac (put_simpset HOL_ss ctxt' addsimps @{thms id_apply id_o o_id}) 1)); |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
963 |
val dest = |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
964 |
if is_sel_upd_pair thy acc upd |
46043 | 965 |
then @{thm o_eq_dest} |
966 |
else @{thm o_eq_id_dest}; |
|
35021
c839a4c670c6
renamed old-style Drule.standard to Drule.export_without_context, to emphasize that this is in no way a standard operation;
wenzelm
parents:
34151
diff
changeset
|
967 |
in Drule.export_without_context (othm RS dest) end; |
32752
f65d74a264dd
Initial response to feedback from Norbert, Makarius on record patch
tsewell@rubicon.NSW.bigpond.net.au
parents:
32749
diff
changeset
|
968 |
in map get_simp upd_funs end; |
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
969 |
|
60796 | 970 |
fun get_updupd_simp ctxt defset u u' comp = |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
971 |
let |
35133 | 972 |
(* FIXME fresh "f" (!?) *) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
973 |
val f = Free ("f", domain_type (fastype_of u)); |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
974 |
val f' = Free ("f'", domain_type (fastype_of u')); |
40845 | 975 |
val lhs = HOLogic.mk_comp (u $ f, u' $ f'); |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
976 |
val rhs = |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
977 |
if comp |
40845 | 978 |
then u $ HOLogic.mk_comp (f, f') |
979 |
else HOLogic.mk_comp (u' $ f', u $ f); |
|
32799
7478ea535416
eliminated dead code, redundant bindings and parameters;
wenzelm
parents:
32770
diff
changeset
|
980 |
val prop = lhs === rhs; |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
981 |
val othm = |
60796 | 982 |
Goal.prove ctxt [] [] prop |
983 |
(fn {context = ctxt', ...} => |
|
984 |
simp_tac (put_simpset defset ctxt') 1 THEN |
|
985 |
REPEAT_DETERM (Iso_Tuple_Support.iso_tuple_intros_tac ctxt' 1) THEN |
|
986 |
TRY (simp_tac (put_simpset HOL_ss ctxt' addsimps @{thms id_apply}) 1)); |
|
46043 | 987 |
val dest = if comp then @{thm o_eq_dest_lhs} else @{thm o_eq_dest}; |
35021
c839a4c670c6
renamed old-style Drule.standard to Drule.export_without_context, to emphasize that this is in no way a standard operation;
wenzelm
parents:
34151
diff
changeset
|
988 |
in Drule.export_without_context (othm RS dest) end; |
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
989 |
|
76039
ca7737249aa4
option "sort_updates" for record update simproc. Make proper record simproc definitions.
Norbert Schirmer <nschirmer@apple.com>
parents:
74610
diff
changeset
|
990 |
fun gen_get_updupd_simps ctxt upd_funs defset = |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
991 |
let |
80636
4041e7c8059d
tuned: more explicit dest_Const_name and dest_Const_type;
wenzelm
parents:
79336
diff
changeset
|
992 |
fun getswap u u' = get_updupd_simp ctxt defset u u' (dest_Const_name u = dest_Const_name u'); |
32799
7478ea535416
eliminated dead code, redundant bindings and parameters;
wenzelm
parents:
32770
diff
changeset
|
993 |
fun build_swaps_to_eq _ [] swaps = swaps |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
994 |
| build_swaps_to_eq upd (u :: us) swaps = |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
995 |
let |
80636
4041e7c8059d
tuned: more explicit dest_Const_name and dest_Const_type;
wenzelm
parents:
79336
diff
changeset
|
996 |
val key = (dest_Const_name u, dest_Const_name upd); |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
997 |
val newswaps = |
32764
690f9cccf232
replaced meta_iffD2 by existing Drule.equal_elim_rule2;
wenzelm
parents:
32763
diff
changeset
|
998 |
if Symreltab.defined swaps key then swaps |
690f9cccf232
replaced meta_iffD2 by existing Drule.equal_elim_rule2;
wenzelm
parents:
32763
diff
changeset
|
999 |
else Symreltab.insert (K true) (key, getswap u upd) swaps; |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1000 |
in |
80636
4041e7c8059d
tuned: more explicit dest_Const_name and dest_Const_type;
wenzelm
parents:
79336
diff
changeset
|
1001 |
if dest_Const_name u = dest_Const_name upd then newswaps |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1002 |
else build_swaps_to_eq upd us newswaps |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1003 |
end; |
32799
7478ea535416
eliminated dead code, redundant bindings and parameters;
wenzelm
parents:
32770
diff
changeset
|
1004 |
fun swaps_needed [] _ _ swaps = map snd (Symreltab.dest swaps) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1005 |
| swaps_needed (u :: us) prev seen swaps = |
80636
4041e7c8059d
tuned: more explicit dest_Const_name and dest_Const_type;
wenzelm
parents:
79336
diff
changeset
|
1006 |
if Symtab.defined seen (dest_Const_name u) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1007 |
then swaps_needed us prev seen (build_swaps_to_eq u prev swaps) |
80636
4041e7c8059d
tuned: more explicit dest_Const_name and dest_Const_type;
wenzelm
parents:
79336
diff
changeset
|
1008 |
else swaps_needed us (u :: prev) (Symtab.insert (K true) (dest_Const_name u, ()) seen) swaps; |
32764
690f9cccf232
replaced meta_iffD2 by existing Drule.equal_elim_rule2;
wenzelm
parents:
32763
diff
changeset
|
1009 |
in swaps_needed upd_funs [] Symtab.empty Symreltab.empty end; |
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
1010 |
|
76039
ca7737249aa4
option "sort_updates" for record update simproc. Make proper record simproc definitions.
Norbert Schirmer <nschirmer@apple.com>
parents:
74610
diff
changeset
|
1011 |
fun get_updupd_simps ctxt term defset = gen_get_updupd_simps ctxt (get_upd_funs term) defset; |
ca7737249aa4
option "sort_updates" for record update simproc. Make proper record simproc definitions.
Norbert Schirmer <nschirmer@apple.com>
parents:
74610
diff
changeset
|
1012 |
|
ca7737249aa4
option "sort_updates" for record update simproc. Make proper record simproc definitions.
Norbert Schirmer <nschirmer@apple.com>
parents:
74610
diff
changeset
|
1013 |
fun prove_unfold_defs thy upd_funs ex_simps ex_simprs prop = |
21226
a607ae87ee81
field-update in records is generalised to take a function on the field
schirmer
parents:
21109
diff
changeset
|
1014 |
let |
60796 | 1015 |
val ctxt = Proof_Context.init_global thy; |
1016 |
||
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
1017 |
val defset = get_sel_upd_defs thy; |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1018 |
val prop' = Envir.beta_eta_contract prop; |
32799
7478ea535416
eliminated dead code, redundant bindings and parameters;
wenzelm
parents:
32770
diff
changeset
|
1019 |
val (lhs, _) = Logic.dest_equals (Logic.strip_assums_concl prop'); |
7478ea535416
eliminated dead code, redundant bindings and parameters;
wenzelm
parents:
32770
diff
changeset
|
1020 |
val (_, args) = strip_comb lhs; |
76040 | 1021 |
val simps = |
1022 |
if null upd_funs then |
|
1023 |
(if length args = 1 then get_accupd_simps else get_updupd_simps) ctxt lhs defset |
|
1024 |
else gen_get_updupd_simps ctxt upd_funs defset |
|
16973 | 1025 |
in |
60796 | 1026 |
Goal.prove ctxt [] [] prop' |
1027 |
(fn {context = ctxt', ...} => |
|
1028 |
simp_tac (put_simpset HOL_basic_ss ctxt' addsimps (simps @ @{thms K_record_comp})) 1 THEN |
|
1029 |
TRY (simp_tac (put_simpset HOL_basic_ss ctxt' addsimps ex_simps addsimprocs ex_simprs) 1)) |
|
15203 | 1030 |
end; |
15015
c5768e8c4da4
* record_upd_simproc also simplifies trivial updates:
schirmer
parents:
15012
diff
changeset
|
1031 |
|
15215 | 1032 |
|
15059 | 1033 |
local |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1034 |
|
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1035 |
fun eq (s1: string) (s2: string) = (s1 = s2); |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1036 |
|
16822 | 1037 |
fun has_field extfields f T = |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1038 |
exists (fn (eN, _) => exists (eq f o fst) (Symtab.lookup_list extfields eN)) (dest_recTs T); |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1039 |
|
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1040 |
fun K_skeleton n (T as Type (_, [_, kT])) (b as Bound i) (Abs (x, xT, t)) = |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1041 |
if null (loose_bnos t) then ((n, kT), (Abs (x, xT, Bound (i + 1)))) else ((n, T), b) |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1042 |
| K_skeleton n T b _ = ((n, T), b); |
25705 | 1043 |
|
15059 | 1044 |
in |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1045 |
|
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
1046 |
(* simproc *) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1047 |
|
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1048 |
(* |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1049 |
Simplify selections of an record update: |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1050 |
(1) S (S_update k r) = k (S r) |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1051 |
(2) S (X_update k r) = S r |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1052 |
|
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1053 |
The simproc skips multiple updates at once, eg: |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1054 |
S (X_update x (Y_update y (S_update k r))) = k (S r) |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1055 |
|
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1056 |
But be careful in (2) because of the extensibility of records. |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1057 |
- If S is a more-selector we have to make sure that the update on component |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1058 |
X does not affect the selected subrecord. |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1059 |
- If X is a more-selector we have to make sure that S is not in the updated |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1060 |
subrecord. |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1061 |
*) |
78796
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1062 |
|
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1063 |
fun select_update_proc ctxt ct = |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1064 |
let |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1065 |
val thy = Proof_Context.theory_of ctxt; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1066 |
val t = Thm.term_of ct; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1067 |
in |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1068 |
(case t of |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1069 |
(sel as Const (s, Type (_, [_, rangeS]))) $ |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1070 |
((upd as Const (u, Type (_, [_, Type (_, [rT, _])]))) $ k $ r) => |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1071 |
if is_selector thy s andalso is_some (get_updates thy u) then |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1072 |
let |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1073 |
val {sel_upd = {updates, ...}, extfields, ...} = Data.get thy; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1074 |
|
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1075 |
fun mk_eq_terms ((upd as Const (u, Type(_, [kT, _]))) $ k $ r) = |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1076 |
(case Symtab.lookup updates u of |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1077 |
NONE => NONE |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1078 |
| SOME u_name => |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1079 |
if u_name = s then |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1080 |
(case mk_eq_terms r of |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1081 |
NONE => |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1082 |
let |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1083 |
val rv = ("r", rT); |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1084 |
val rb = Bound 0; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1085 |
val (kv, kb) = K_skeleton "k" kT (Bound 1) k; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1086 |
in SOME (upd $ kb $ rb, kb $ (sel $ rb), [kv, rv]) end |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1087 |
| SOME (trm, trm', vars) => |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1088 |
let |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1089 |
val (kv, kb) = K_skeleton "k" kT (Bound (length vars)) k; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1090 |
in SOME (upd $ kb $ trm, kb $ trm', kv :: vars) end) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1091 |
else if has_field extfields u_name rangeS orelse |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1092 |
has_field extfields s (domain_type kT) then NONE |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1093 |
else |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1094 |
(case mk_eq_terms r of |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1095 |
SOME (trm, trm', vars) => |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1096 |
let val (kv, kb) = K_skeleton "k" kT (Bound (length vars)) k |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1097 |
in SOME (upd $ kb $ trm, trm', kv :: vars) end |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1098 |
| NONE => |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1099 |
let |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1100 |
val rv = ("r", rT); |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1101 |
val rb = Bound 0; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1102 |
val (kv, kb) = K_skeleton "k" kT (Bound 1) k; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1103 |
in SOME (upd $ kb $ rb, sel $ rb, [kv, rv]) end)) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1104 |
| mk_eq_terms _ = NONE; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1105 |
in |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1106 |
(case mk_eq_terms (upd $ k $ r) of |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1107 |
SOME (trm, trm', vars) => |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1108 |
SOME |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1109 |
(prove_unfold_defs thy [] [] [] |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1110 |
(Logic.list_all (vars, Logic.mk_equals (sel $ trm, trm')))) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1111 |
| NONE => NONE) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1112 |
end |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1113 |
else NONE |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1114 |
| _ => NONE) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1115 |
end; |
76040 | 1116 |
|
78805 | 1117 |
val simproc = \<^simproc_setup>\<open>select_update ("x::'a::{}") = \<open>K select_update_proc\<close>\<close> |
7178 | 1118 |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
1119 |
fun get_upd_acc_cong_thm upd acc thy ss = |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1120 |
let |
60796 | 1121 |
val ctxt = Proof_Context.init_global thy; |
1122 |
val prop = |
|
1123 |
infer_instantiate ctxt |
|
1124 |
[(("upd", 0), Thm.cterm_of ctxt upd), (("ac", 0), Thm.cterm_of ctxt acc)] |
|
1125 |
updacc_cong_triv |
|
1126 |
|> Thm.concl_of; |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1127 |
in |
60796 | 1128 |
Goal.prove ctxt [] [] prop |
1129 |
(fn {context = ctxt', ...} => |
|
1130 |
simp_tac (put_simpset ss ctxt') 1 THEN |
|
1131 |
REPEAT_DETERM (Iso_Tuple_Support.iso_tuple_intros_tac ctxt' 1) THEN |
|
1132 |
TRY (resolve_tac ctxt' [updacc_cong_idI] 1)) |
|
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
1133 |
end; |
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
1134 |
|
76039
ca7737249aa4
option "sort_updates" for record update simproc. Make proper record simproc definitions.
Norbert Schirmer <nschirmer@apple.com>
parents:
74610
diff
changeset
|
1135 |
fun sorted ord [] = true |
ca7737249aa4
option "sort_updates" for record update simproc. Make proper record simproc definitions.
Norbert Schirmer <nschirmer@apple.com>
parents:
74610
diff
changeset
|
1136 |
| sorted ord [x] = true |
76040 | 1137 |
| sorted ord (x::y::xs) = |
1138 |
(case ord (x, y) of |
|
76039
ca7737249aa4
option "sort_updates" for record update simproc. Make proper record simproc definitions.
Norbert Schirmer <nschirmer@apple.com>
parents:
74610
diff
changeset
|
1139 |
LESS => sorted ord (y::xs) |
ca7737249aa4
option "sort_updates" for record update simproc. Make proper record simproc definitions.
Norbert Schirmer <nschirmer@apple.com>
parents:
74610
diff
changeset
|
1140 |
| EQUAL => sorted ord (y::xs) |
ca7737249aa4
option "sort_updates" for record update simproc. Make proper record simproc definitions.
Norbert Schirmer <nschirmer@apple.com>
parents:
74610
diff
changeset
|
1141 |
| GREATER => false) |
ca7737249aa4
option "sort_updates" for record update simproc. Make proper record simproc definitions.
Norbert Schirmer <nschirmer@apple.com>
parents:
74610
diff
changeset
|
1142 |
|
ca7737249aa4
option "sort_updates" for record update simproc. Make proper record simproc definitions.
Norbert Schirmer <nschirmer@apple.com>
parents:
74610
diff
changeset
|
1143 |
fun insert_unique ord x [] = [x] |
76040 | 1144 |
| insert_unique ord x (y::ys) = |
1145 |
(case ord (x, y) of |
|
76039
ca7737249aa4
option "sort_updates" for record update simproc. Make proper record simproc definitions.
Norbert Schirmer <nschirmer@apple.com>
parents:
74610
diff
changeset
|
1146 |
LESS => (x::y::ys) |
ca7737249aa4
option "sort_updates" for record update simproc. Make proper record simproc definitions.
Norbert Schirmer <nschirmer@apple.com>
parents:
74610
diff
changeset
|
1147 |
| EQUAL => (x::ys) |
ca7737249aa4
option "sort_updates" for record update simproc. Make proper record simproc definitions.
Norbert Schirmer <nschirmer@apple.com>
parents:
74610
diff
changeset
|
1148 |
| GREATER => y :: insert_unique ord x ys) |
ca7737249aa4
option "sort_updates" for record update simproc. Make proper record simproc definitions.
Norbert Schirmer <nschirmer@apple.com>
parents:
74610
diff
changeset
|
1149 |
|
ca7737249aa4
option "sort_updates" for record update simproc. Make proper record simproc definitions.
Norbert Schirmer <nschirmer@apple.com>
parents:
74610
diff
changeset
|
1150 |
fun insert_unique_hd ord (x::xs) = x :: insert_unique ord x xs |
ca7737249aa4
option "sort_updates" for record update simproc. Make proper record simproc definitions.
Norbert Schirmer <nschirmer@apple.com>
parents:
74610
diff
changeset
|
1151 |
| insert_unique_hd ord xs = xs |
ca7737249aa4
option "sort_updates" for record update simproc. Make proper record simproc definitions.
Norbert Schirmer <nschirmer@apple.com>
parents:
74610
diff
changeset
|
1152 |
|
76040 | 1153 |
|
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
1154 |
(* upd_simproc *) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1155 |
|
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1156 |
(*Simplify multiple updates: |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1157 |
(1) "N_update y (M_update g (N_update x (M_update f r))) = |
21226
a607ae87ee81
field-update in records is generalised to take a function on the field
schirmer
parents:
21109
diff
changeset
|
1158 |
(N_update (y o x) (M_update (g o f) r))" |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1159 |
(2) "r(|M:= M r|) = r" |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1160 |
|
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1161 |
In both cases "more" updates complicate matters: for this reason |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1162 |
we omit considering further updates if doing so would introduce |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1163 |
both a more update and an update to a field within it.*) |
78796
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1164 |
|
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1165 |
fun upd_proc ctxt ct = |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1166 |
let |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1167 |
val thy = Proof_Context.theory_of ctxt; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1168 |
val t = Thm.term_of ct; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1169 |
(*We can use more-updators with other updators as long |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1170 |
as none of the other updators go deeper than any more |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1171 |
updator. min here is the depth of the deepest other |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1172 |
updator, max the depth of the shallowest more updator.*) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1173 |
fun include_depth (dep, true) (min, max) = |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1174 |
if min <= dep |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1175 |
then SOME (min, if dep <= max orelse max = ~1 then dep else max) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1176 |
else NONE |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1177 |
| include_depth (dep, false) (min, max) = |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1178 |
if dep <= max orelse max = ~1 |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1179 |
then SOME (if min <= dep then dep else min, max) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1180 |
else NONE; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1181 |
|
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1182 |
fun getupdseq (term as (upd as Const (u, _)) $ f $ tm) min max = |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1183 |
(case get_update_details u thy of |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1184 |
SOME (s, dep, ismore) => |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1185 |
(case include_depth (dep, ismore) (min, max) of |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1186 |
SOME (min', max') => |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1187 |
let val (us, bs, _) = getupdseq tm min' max' |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1188 |
in ((upd, s, f) :: us, bs, fastype_of term) end |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1189 |
| NONE => ([], term, HOLogic.unitT)) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1190 |
| NONE => ([], term, HOLogic.unitT)) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1191 |
| getupdseq term _ _ = ([], term, HOLogic.unitT); |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1192 |
|
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1193 |
val (upds, base, baseT) = getupdseq t 0 ~1; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1194 |
val orig_upds = map_index (fn (i, (x, y, z)) => (x, y, z, i)) upds |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1195 |
val upd_ord = rev_order o fast_string_ord o apply2 #2 |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1196 |
val (upds, commuted) = |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1197 |
if not (null orig_upds) andalso Config.get ctxt sort_updates andalso not (sorted upd_ord orig_upds) then |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1198 |
(sort upd_ord orig_upds, true) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1199 |
else |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1200 |
(orig_upds, false) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1201 |
|
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1202 |
fun is_upd_noop s (Abs (n, T, Const (s', T') $ tm')) tm = |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1203 |
if s = s' andalso null (loose_bnos tm') |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1204 |
andalso subst_bound (HOLogic.unit, tm') = tm |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1205 |
then (true, Abs (n, T, Const (s', T') $ Bound 1)) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1206 |
else (false, HOLogic.unit) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1207 |
| is_upd_noop _ _ _ = (false, HOLogic.unit); |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1208 |
|
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1209 |
fun get_noop_simps (upd as Const _) (Abs (_, _, (acc as Const _) $ _)) = |
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
1210 |
let |
78796
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1211 |
val ss = get_sel_upd_defs thy; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1212 |
val uathm = get_upd_acc_cong_thm upd acc thy ss; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1213 |
in |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1214 |
[Drule.export_without_context (uathm RS updacc_noopE), |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1215 |
Drule.export_without_context (uathm RS updacc_noop_compE)] |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1216 |
end; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1217 |
|
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1218 |
(*If f is constant then (f o g) = f. We know that K_skeleton |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1219 |
only returns constant abstractions thus when we see an |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1220 |
abstraction we can discard inner updates.*) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1221 |
fun add_upd (f as Abs _) _ = [f] |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1222 |
| add_upd f fs = (f :: fs); |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1223 |
|
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1224 |
(*mk_updterm returns |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1225 |
(orig-term-skeleton-update list , simplified-skeleton, |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1226 |
variables, duplicate-updates, simp-flag, noop-simps) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1227 |
|
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1228 |
where duplicate-updates is a table used to pass upward |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1229 |
the list of update functions which can be composed |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1230 |
into an update above them, simp-flag indicates whether |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1231 |
any simplification was achieved, and noop-simps are |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1232 |
used for eliminating case (2) defined above*) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1233 |
fun mk_updterm ((upd as Const (u, T), s, f, i) :: upds) above term = |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1234 |
let |
78796
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1235 |
val (lhs_upds, rhs, vars, dups, simp, noops) = |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1236 |
mk_updterm upds (Symtab.update (u, ()) above) term; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1237 |
val (fvar, skelf) = |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1238 |
K_skeleton (Long_Name.base_name s) (domain_type T) (Bound (length vars)) f; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1239 |
val (isnoop, skelf') = is_upd_noop s f term; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1240 |
val funT = domain_type T; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1241 |
fun mk_comp_local (f, f') = |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1242 |
Const (\<^const_name>\<open>Fun.comp\<close>, funT --> funT --> funT) $ f $ f'; |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1243 |
in |
78796
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1244 |
if isnoop then |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1245 |
((upd $ skelf', i)::lhs_upds, rhs, vars, |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1246 |
Symtab.update (u, []) dups, true, |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1247 |
if Symtab.defined noops u then noops |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1248 |
else Symtab.update (u, get_noop_simps upd skelf') noops) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1249 |
else if Symtab.defined above u then |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1250 |
((upd $ skelf, i)::lhs_upds, rhs, fvar :: vars, |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1251 |
Symtab.map_default (u, []) (add_upd skelf) dups, |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1252 |
true, noops) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1253 |
else |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1254 |
(case Symtab.lookup dups u of |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1255 |
SOME fs => |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1256 |
((upd $ skelf, i)::lhs_upds, |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1257 |
upd $ foldr1 mk_comp_local (add_upd skelf fs) $ rhs, |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1258 |
fvar :: vars, dups, true, noops) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1259 |
| NONE => ((upd $ skelf, i)::lhs_upds, upd $ skelf $ rhs, fvar :: vars, dups, simp, noops)) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1260 |
end |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1261 |
| mk_updterm [] _ _ = |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1262 |
([], Bound 0, [("r", baseT)], Symtab.empty, false, Symtab.empty) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1263 |
| mk_updterm us _ _ = raise TERM ("mk_updterm match", map (fn (x, _, _, _) => x) us); |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1264 |
|
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1265 |
val (lhs_upds, rhs, vars, _, simp, noops) = mk_updterm upds Symtab.empty base; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1266 |
val orig_order_lhs_upds = lhs_upds |> sort (rev_order o int_ord o apply2 snd) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1267 |
val lhs = Bound 0 |> fold (fn (upd, _) => fn s => upd $ s) orig_order_lhs_upds |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1268 |
(* Note that the simplifier works bottom up. So all nested updates are already |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1269 |
normalised, e.g. sorted. 'commuted' thus means that the outermost update has to be |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1270 |
inserted at its place inside the sorted nested updates. The necessary swaps can be |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1271 |
expressed via 'upd_funs' by replicating the outer update at the designated position: *) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1272 |
val upd_funs = (if commuted then insert_unique_hd upd_ord orig_upds else orig_upds) |> map #1 |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1273 |
val noops' = maps snd (Symtab.dest noops); |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1274 |
in |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1275 |
if simp orelse commuted then |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1276 |
SOME |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1277 |
(prove_unfold_defs thy upd_funs noops' [simproc] |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1278 |
(Logic.list_all (vars, Logic.mk_equals (lhs, rhs)))) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1279 |
else NONE |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1280 |
end; |
76040 | 1281 |
|
78805 | 1282 |
val upd_simproc = \<^simproc_setup>\<open>update ("x::'a::{}") = \<open>K upd_proc\<close>\<close> |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1283 |
|
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1284 |
end; |
15015
c5768e8c4da4
* record_upd_simproc also simplifies trivial updates:
schirmer
parents:
15012
diff
changeset
|
1285 |
|
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
1286 |
|
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
1287 |
(* eq_simproc *) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1288 |
|
32974
2a1aaa2d9e64
eliminated old List.foldr and OldTerm operations;
wenzelm
parents:
32973
diff
changeset
|
1289 |
(*Look up the most specific record-equality. |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1290 |
|
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1291 |
Note on efficiency: |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1292 |
Testing equality of records boils down to the test of equality of all components. |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1293 |
Therefore the complexity is: #components * complexity for single component. |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1294 |
Especially if a record has a lot of components it may be better to split up |
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
1295 |
the record first and do simplification on that (split_simp_tac). |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1296 |
e.g. r(|lots of updates|) = x |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1297 |
|
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
1298 |
eq_simproc split_simp_tac |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1299 |
Complexity: #components * #updates #updates |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1300 |
*) |
76039
ca7737249aa4
option "sort_updates" for record update simproc. Make proper record simproc definitions.
Norbert Schirmer <nschirmer@apple.com>
parents:
74610
diff
changeset
|
1301 |
|
78796
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1302 |
fun eq_proc ctxt ct = |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1303 |
(case Thm.term_of ct of |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1304 |
\<^Const_>\<open>HOL.eq T for _ _\<close> => |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1305 |
(case rec_id ~1 T of |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1306 |
"" => NONE |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1307 |
| name => |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1308 |
(case get_equalities (Proof_Context.theory_of ctxt) name of |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1309 |
NONE => NONE |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1310 |
| SOME thm => SOME (thm RS @{thm Eq_TrueI}))) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1311 |
| _ => NONE); |
76040 | 1312 |
|
78805 | 1313 |
val eq_simproc = \<^simproc_setup>\<open>eq ("r = s") = \<open>K eq_proc\<close>\<close>; |
78115 | 1314 |
|
14079
1c22e5499eeb
- record_split_tac now also works for object-level universal quantifier
berghofe
parents:
13904
diff
changeset
|
1315 |
|
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
1316 |
(* split_simproc *) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1317 |
|
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1318 |
(*Split quantified occurrences of records, for which P holds. P can peek on the |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1319 |
subterm starting at the quantified occurrence of the record (including the quantifier): |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1320 |
P t = 0: do not split |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1321 |
P t = ~1: completely split |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1322 |
P t > 0: split up to given bound of record extensions.*) |
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
1323 |
fun split_simproc P = |
78812
d769a183d51d
simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents:
78805
diff
changeset
|
1324 |
Simplifier.make_simproc \<^context> |
d769a183d51d
simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents:
78805
diff
changeset
|
1325 |
{name = "record_split", |
d769a183d51d
simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents:
78805
diff
changeset
|
1326 |
lhss = [\<^term>\<open>x::'a::{}\<close>], |
61144 | 1327 |
proc = fn _ => fn ctxt => fn ct => |
1328 |
(case Thm.term_of ct of |
|
32799
7478ea535416
eliminated dead code, redundant bindings and parameters;
wenzelm
parents:
32770
diff
changeset
|
1329 |
Const (quantifier, Type (_, [Type (_, [T, _]), _])) $ _ => |
67149 | 1330 |
if quantifier = \<^const_name>\<open>Pure.all\<close> orelse |
1331 |
quantifier = \<^const_name>\<open>All\<close> orelse |
|
1332 |
quantifier = \<^const_name>\<open>Ex\<close> |
|
35133 | 1333 |
then |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1334 |
(case rec_id ~1 T of |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1335 |
"" => NONE |
32799
7478ea535416
eliminated dead code, redundant bindings and parameters;
wenzelm
parents:
32770
diff
changeset
|
1336 |
| _ => |
61144 | 1337 |
let val split = P (Thm.term_of ct) in |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1338 |
if split <> 0 then |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
1339 |
(case get_splits (Proof_Context.theory_of ctxt) (rec_id split T) of |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1340 |
NONE => NONE |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1341 |
| SOME (all_thm, All_thm, Ex_thm, _) => |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1342 |
SOME |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1343 |
(case quantifier of |
67149 | 1344 |
\<^const_name>\<open>Pure.all\<close> => all_thm |
1345 |
| \<^const_name>\<open>All\<close> => All_thm RS @{thm eq_reflection} |
|
1346 |
| \<^const_name>\<open>Ex\<close> => Ex_thm RS @{thm eq_reflection} |
|
43683 | 1347 |
| _ => raise Fail "split_simproc")) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1348 |
else NONE |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1349 |
end) |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1350 |
else NONE |
78812
d769a183d51d
simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents:
78805
diff
changeset
|
1351 |
| _ => NONE), |
d769a183d51d
simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents:
78805
diff
changeset
|
1352 |
identifier = []}; |
7178 | 1353 |
|
78796
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1354 |
fun ex_sel_eq_proc ctxt ct = |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1355 |
let |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1356 |
val thy = Proof_Context.theory_of ctxt; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1357 |
val t = Thm.term_of ct; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1358 |
fun mkeq (lr, T, (sel, Tsel), x) i = |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1359 |
if is_selector thy sel then |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1360 |
let |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1361 |
val x' = |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1362 |
if not (Term.is_dependent x) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1363 |
then Free ("x" ^ string_of_int i, range_type Tsel) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1364 |
else raise TERM ("", [x]); |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1365 |
val sel' = Const (sel, Tsel) $ Bound 0; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1366 |
val (l, r) = if lr then (sel', x') else (x', sel'); |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1367 |
in \<^Const>\<open>HOL.eq T for l r\<close> end |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1368 |
else raise TERM ("", [Const (sel, Tsel)]); |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1369 |
|
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1370 |
fun dest_sel_eq (\<^Const_>\<open>HOL.eq T\<close> $ (Const (sel, Tsel) $ Bound 0) $ X) = |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1371 |
(true, T, (sel, Tsel), X) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1372 |
| dest_sel_eq (\<^Const_>\<open>HOL.eq T\<close> $ X $ (Const (sel, Tsel) $ Bound 0)) = |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1373 |
(false, T, (sel, Tsel), X) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1374 |
| dest_sel_eq _ = raise TERM ("", []); |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1375 |
in |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1376 |
(case t of |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1377 |
\<^Const_>\<open>Ex T for \<open>Abs (s, _, t)\<close>\<close> => |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1378 |
(let |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1379 |
val eq = mkeq (dest_sel_eq t) 0; |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1380 |
val prop = |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1381 |
Logic.list_all ([("r", T)], |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1382 |
Logic.mk_equals (\<^Const>\<open>Ex T for \<open>Abs (s, T, eq)\<close>\<close>, \<^Const>\<open>True\<close>)); |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1383 |
in |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1384 |
SOME (Goal.prove_sorry_global thy [] [] prop |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1385 |
(fn {context = ctxt', ...} => |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1386 |
simp_tac (put_simpset (get_simpset thy) ctxt' |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1387 |
addsimps @{thms simp_thms} addsimprocs [split_simproc (K ~1)]) 1)) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1388 |
end handle TERM _ => NONE) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1389 |
| _ => NONE) |
f34926a91fea
clarified signature: more concise simproc setup in ML;
wenzelm
parents:
78795
diff
changeset
|
1390 |
end; |
76040 | 1391 |
|
78805 | 1392 |
val ex_sel_eq_simproc = \<^simproc_setup>\<open>passive ex_sel_eq ("Ex t") = \<open>K ex_sel_eq_proc\<close>\<close>; |
14427 | 1393 |
|
5698 | 1394 |
|
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
1395 |
(* split_simp_tac *) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1396 |
|
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1397 |
(*Split (and simplify) all records in the goal for which P holds. |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1398 |
For quantified occurrences of a record |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1399 |
P can peek on the whole subterm (including the quantifier); for free variables P |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1400 |
can only peek on the variable itself. |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1401 |
P t = 0: do not split |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1402 |
P t = ~1: completely split |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1403 |
P t > 0: split up to given bound of record extensions.*) |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
1404 |
fun split_simp_tac ctxt thms P = CSUBGOAL (fn (cgoal, i) => |
14255 | 1405 |
let |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
1406 |
val thy = Proof_Context.theory_of ctxt; |
32975 | 1407 |
|
59582 | 1408 |
val goal = Thm.term_of cgoal; |
32975 | 1409 |
val frees = filter (is_recT o #2) (Term.add_frees goal []); |
14255 | 1410 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1411 |
val has_rec = exists_Const |
14255 | 1412 |
(fn (s, Type (_, [Type (_, [T, _]), _])) => |
67149 | 1413 |
(s = \<^const_name>\<open>Pure.all\<close> orelse s = \<^const_name>\<open>All\<close> orelse s = \<^const_name>\<open>Ex\<close>) |
56245 | 1414 |
andalso is_recT T |
14255 | 1415 |
| _ => false); |
1416 |
||
17261 | 1417 |
fun mk_split_free_tac free induct_thm i = |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1418 |
let |
60796 | 1419 |
val _ $ (_ $ Var (r, _)) = Thm.concl_of induct_thm; |
1420 |
val thm = infer_instantiate ctxt [(r, Thm.cterm_of ctxt free)] induct_thm; |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1421 |
in |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
1422 |
simp_tac (put_simpset HOL_basic_ss ctxt addsimps @{thms induct_atomize}) i THEN |
60752 | 1423 |
resolve_tac ctxt [thm] i THEN |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
1424 |
simp_tac (put_simpset HOL_basic_ss ctxt addsimps @{thms induct_rulify}) i |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1425 |
end; |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1426 |
|
32975 | 1427 |
val split_frees_tacs = |
1428 |
frees |> map_filter (fn (x, T) => |
|
1429 |
(case rec_id ~1 T of |
|
1430 |
"" => NONE |
|
1431 |
| _ => |
|
1432 |
let |
|
1433 |
val free = Free (x, T); |
|
1434 |
val split = P free; |
|
1435 |
in |
|
1436 |
if split <> 0 then |
|
1437 |
(case get_splits thy (rec_id split T) of |
|
1438 |
NONE => NONE |
|
1439 |
| SOME (_, _, _, induct_thm) => |
|
1440 |
SOME (mk_split_free_tac free induct_thm i)) |
|
1441 |
else NONE |
|
1442 |
end)); |
|
17261 | 1443 |
|
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
1444 |
val simprocs = if has_rec goal then [split_simproc P] else []; |
46043 | 1445 |
val thms' = @{thms o_apply K_record_comp} @ thms; |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1446 |
in |
32975 | 1447 |
EVERY split_frees_tacs THEN |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
1448 |
full_simp_tac (put_simpset (get_simpset thy) ctxt addsimps thms' addsimprocs simprocs) i |
32975 | 1449 |
end); |
14255 | 1450 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1451 |
|
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
1452 |
(* split_tac *) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1453 |
|
35147 | 1454 |
(*Split all records in the goal, which are quantified by !! or ALL.*) |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
1455 |
fun split_tac ctxt = CSUBGOAL (fn (cgoal, i) => |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1456 |
let |
59582 | 1457 |
val goal = Thm.term_of cgoal; |
32975 | 1458 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1459 |
val has_rec = exists_Const |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1460 |
(fn (s, Type (_, [Type (_, [T, _]), _])) => |
67149 | 1461 |
(s = \<^const_name>\<open>Pure.all\<close> orelse s = \<^const_name>\<open>All\<close>) andalso is_recT T |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1462 |
| _ => false); |
17261 | 1463 |
|
67149 | 1464 |
fun is_all (Const (\<^const_name>\<open>Pure.all\<close>, _) $ _) = ~1 |
1465 |
| is_all (Const (\<^const_name>\<open>All\<close>, _) $ _) = ~1 |
|
35240 | 1466 |
| is_all _ = 0; |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1467 |
in |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1468 |
if has_rec goal then |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
1469 |
full_simp_tac (put_simpset HOL_basic_ss ctxt addsimprocs [split_simproc is_all]) i |
32975 | 1470 |
else no_tac |
1471 |
end); |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1472 |
|
6358 | 1473 |
(* wrapper *) |
1474 |
||
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
1475 |
val split_name = "record_split_tac"; |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
1476 |
val split_wrapper = (split_name, fn ctxt => fn tac => split_tac ctxt ORELSE' tac); |
5698 | 1477 |
|
16330 | 1478 |
|
1479 |
||
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1480 |
(** theory extender interface **) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1481 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1482 |
(* attributes *) |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1483 |
|
77885 | 1484 |
val case_names_fields = Rule_Cases.case_names ["fields"]; |
24830
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
wenzelm
parents:
24712
diff
changeset
|
1485 |
fun induct_type_global name = [case_names_fields, Induct.induct_type name]; |
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
wenzelm
parents:
24712
diff
changeset
|
1486 |
fun cases_type_global name = [case_names_fields, Induct.cases_type name]; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1487 |
|
32335 | 1488 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1489 |
(* tactics *) |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1490 |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1491 |
(*Do case analysis / induction according to rule on last parameter of ith subgoal |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1492 |
(or on s if there are no parameters). |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1493 |
Instatiation of record variable (and predicate) in rule is calculated to |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1494 |
avoid problems with higher order unification.*) |
58956
a816aa3ff391
proper context for compose_tac, Splitter.split_tac (relevant for unify trace options);
wenzelm
parents:
58936
diff
changeset
|
1495 |
fun try_param_tac ctxt s rule = CSUBGOAL (fn (cgoal, i) => |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1496 |
let |
32975 | 1497 |
val g = Thm.term_of cgoal; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1498 |
val params = Logic.strip_params g; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1499 |
val concl = HOLogic.dest_Trueprop (Logic.strip_assums_concl g); |
32975 | 1500 |
val rule' = Thm.lift_rule cgoal rule; |
59582 | 1501 |
val (P, ys) = strip_comb (HOLogic.dest_Trueprop (Logic.strip_assums_concl (Thm.prop_of rule'))); |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1502 |
(*ca indicates if rule is a case analysis or induction rule*) |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1503 |
val (x, ca) = |
33957 | 1504 |
(case rev (drop (length params) ys) of |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1505 |
[] => (head_of (fst (HOLogic.dest_eq (HOLogic.dest_Trueprop |
59582 | 1506 |
(hd (rev (Logic.strip_assums_hyp (hd (Thm.prems_of rule')))))))), true) |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1507 |
| [x] => (head_of x, false)); |
38758
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
1508 |
val rule'' = |
60796 | 1509 |
infer_instantiate ctxt |
1510 |
(map (apsnd (Thm.cterm_of ctxt)) |
|
38758
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
1511 |
(case rev params of |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
1512 |
[] => |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
1513 |
(case AList.lookup (op =) (Term.add_frees g []) s of |
40315
11846d9800de
try_param_tac: plain user error appears more appropriate;
wenzelm
parents:
39557
diff
changeset
|
1514 |
NONE => error "try_param_tac: no such variable" |
60796 | 1515 |
| SOME T => |
1516 |
[(#1 (dest_Var P), if ca then concl else lambda (Free (s, T)) concl), |
|
1517 |
(#1 (dest_Var x), Free (s, T))]) |
|
38758
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
1518 |
| (_, T) :: _ => |
60796 | 1519 |
[(#1 (dest_Var P), |
1520 |
fold_rev Term.abs params |
|
1521 |
(if ca then concl else incr_boundvars 1 (Abs (s, T, concl)))), |
|
1522 |
(#1 (dest_Var x), fold_rev Term.abs params (Bound 0))])) rule'; |
|
59582 | 1523 |
in compose_tac ctxt (false, rule'', Thm.nprems_of rule) i end); |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1524 |
|
15215 | 1525 |
|
61260 | 1526 |
fun extension_definition overloaded name fields alphas zeta moreT more vars thy = |
17261 | 1527 |
let |
43682 | 1528 |
val ctxt = Proof_Context.init_global thy; |
1529 |
||
35239 | 1530 |
val base_name = Long_Name.base_name name; |
1531 |
||
32977 | 1532 |
val fieldTs = map snd fields; |
35239 | 1533 |
val fields_moreTs = fieldTs @ [moreT]; |
1534 |
||
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1535 |
val alphas_zeta = alphas @ [zeta]; |
35239 | 1536 |
|
1537 |
val ext_binding = Binding.name (suffix extN base_name); |
|
1538 |
val ext_name = suffix extN name; |
|
57225
ff69e42ccf92
register record extensions as freely generated types
blanchet
parents:
56732
diff
changeset
|
1539 |
val ext_tyco = suffix ext_typeN name; |
38533
8d23c7403699
use extension constant as formal constructor of logical record type
haftmann
parents:
38531
diff
changeset
|
1540 |
val extT = Type (ext_tyco, map TFree alphas_zeta); |
35239 | 1541 |
val ext_type = fields_moreTs ---> extT; |
1542 |
||
1543 |
||
1544 |
(* the tree of new types that will back the record extension *) |
|
32767 | 1545 |
|
34151
8d57ce46b3f7
prefer prefix "iso" over potentially misleading "is"; tuned
haftmann
parents:
33957
diff
changeset
|
1546 |
val mktreeV = Balanced_Tree.make Iso_Tuple_Support.mk_cons_tuple; |
8d57ce46b3f7
prefer prefix "iso" over potentially misleading "is"; tuned
haftmann
parents:
33957
diff
changeset
|
1547 |
|
8d57ce46b3f7
prefer prefix "iso" over potentially misleading "is"; tuned
haftmann
parents:
33957
diff
changeset
|
1548 |
fun mk_iso_tuple (left, right) (thy, i) = |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1549 |
let |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1550 |
val suff = if i = 0 then ext_typeN else inner_typeN ^ string_of_int i; |
35239 | 1551 |
val ((_, cons), thy') = thy |
61260 | 1552 |
|> Iso_Tuple_Support.add_iso_tuple_type overloaded |
38758
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
1553 |
(Binding.suffix_name suff (Binding.name base_name), alphas_zeta) |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
1554 |
(fastype_of left, fastype_of right); |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1555 |
in |
32764
690f9cccf232
replaced meta_iffD2 by existing Drule.equal_elim_rule2;
wenzelm
parents:
32763
diff
changeset
|
1556 |
(cons $ left $ right, (thy', i + 1)) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1557 |
end; |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1558 |
|
34151
8d57ce46b3f7
prefer prefix "iso" over potentially misleading "is"; tuned
haftmann
parents:
33957
diff
changeset
|
1559 |
(*trying to create a 1-element iso_tuple will fail, and is pointless anyway*) |
8d57ce46b3f7
prefer prefix "iso" over potentially misleading "is"; tuned
haftmann
parents:
33957
diff
changeset
|
1560 |
fun mk_even_iso_tuple [arg] = pair arg |
8d57ce46b3f7
prefer prefix "iso" over potentially misleading "is"; tuned
haftmann
parents:
33957
diff
changeset
|
1561 |
| mk_even_iso_tuple args = mk_iso_tuple (Iso_Tuple_Support.dest_cons_tuple (mktreeV args)); |
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
1562 |
|
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
1563 |
fun build_meta_tree_type i thy vars more = |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1564 |
let val len = length vars in |
32764
690f9cccf232
replaced meta_iffD2 by existing Drule.equal_elim_rule2;
wenzelm
parents:
32763
diff
changeset
|
1565 |
if len < 1 then raise TYPE ("meta_tree_type args too short", [], vars) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1566 |
else if len > 16 then |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1567 |
let |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1568 |
fun group16 [] = [] |
33957 | 1569 |
| group16 xs = take 16 xs :: group16 (drop 16 xs); |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1570 |
val vars' = group16 vars; |
34151
8d57ce46b3f7
prefer prefix "iso" over potentially misleading "is"; tuned
haftmann
parents:
33957
diff
changeset
|
1571 |
val (composites, (thy', i')) = fold_map mk_even_iso_tuple vars' (thy, i); |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1572 |
in |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1573 |
build_meta_tree_type i' thy' composites more |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1574 |
end |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1575 |
else |
34151
8d57ce46b3f7
prefer prefix "iso" over potentially misleading "is"; tuned
haftmann
parents:
33957
diff
changeset
|
1576 |
let val (term, (thy', _)) = mk_iso_tuple (mktreeV vars, more) (thy, 0) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1577 |
in (term, thy') end |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1578 |
end; |
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
1579 |
|
43682 | 1580 |
val _ = timing_msg ctxt "record extension preparing definitions"; |
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
1581 |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1582 |
|
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
1583 |
(* 1st stage part 1: introduce the tree of new types *) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1584 |
|
46044 | 1585 |
val (ext_body, typ_thy) = timeit_msg ctxt "record extension nested type def:" (fn () => |
1586 |
build_meta_tree_type 1 thy vars more); |
|
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
1587 |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1588 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1589 |
(* prepare declarations and definitions *) |
17261 | 1590 |
|
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
1591 |
(* 1st stage part 2: define the ext constant *) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1592 |
|
35239 | 1593 |
fun mk_ext args = list_comb (Const (ext_name, ext_type), args); |
1594 |
val ext_spec = Logic.mk_equals (mk_ext (vars @ [more]), ext_body); |
|
1595 |
||
79336
032a31db4c6f
clarified signature: downgrade old-style Global_Theory.add_defs to Global_Theory.add_def without attributes;
wenzelm
parents:
78812
diff
changeset
|
1596 |
val (ext_def, defs_thy) = timeit_msg ctxt "record extension constructor def:" (fn () => |
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
1597 |
typ_thy |
42375
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42361
diff
changeset
|
1598 |
|> Sign.declare_const_global ((ext_binding, ext_type), NoSyn) |> snd |
79336
032a31db4c6f
clarified signature: downgrade old-style Global_Theory.add_defs to Global_Theory.add_def without attributes;
wenzelm
parents:
78812
diff
changeset
|
1599 |
|> Global_Theory.add_def (Thm.def_binding ext_binding, ext_spec)); |
54895 | 1600 |
val defs_ctxt = Proof_Context.init_global defs_thy; |
17261 | 1601 |
|
32799
7478ea535416
eliminated dead code, redundant bindings and parameters;
wenzelm
parents:
32770
diff
changeset
|
1602 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1603 |
(* prepare propositions *) |
32799
7478ea535416
eliminated dead code, redundant bindings and parameters;
wenzelm
parents:
32770
diff
changeset
|
1604 |
|
43682 | 1605 |
val _ = timing_msg ctxt "record extension preparing propositions"; |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1606 |
val vars_more = vars @ [more]; |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1607 |
val variants = map (fn Free (x, _) => x) vars_more; |
15215 | 1608 |
val ext = mk_ext vars_more; |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1609 |
val s = Free (rN, extT); |
43324
2b47822868e4
discontinued Name.variant to emphasize that this is old-style / indirect;
wenzelm
parents:
42795
diff
changeset
|
1610 |
val P = Free (singleton (Name.variant_list variants) "P", extT --> HOLogic.boolT); |
17261 | 1611 |
|
43683 | 1612 |
val inject_prop = (* FIXME local x x' *) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1613 |
let val vars_more' = map (fn (Free (x, T)) => Free (x ^ "'", T)) vars_more in |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1614 |
HOLogic.mk_conj (HOLogic.eq_const extT $ |
67149 | 1615 |
mk_ext vars_more $ mk_ext vars_more', \<^term>\<open>True\<close>) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1616 |
=== |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1617 |
foldr1 HOLogic.mk_conj |
67149 | 1618 |
(map HOLogic.mk_eq (vars_more ~~ vars_more') @ [\<^term>\<open>True\<close>]) |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1619 |
end; |
17261 | 1620 |
|
46215
0da9433f959e
discontinued old-style Term.list_all_free in favour of plain Logic.all;
wenzelm
parents:
46186
diff
changeset
|
1621 |
val induct_prop = (fold_rev Logic.all vars_more (Trueprop (P $ ext)), Trueprop (P $ s)); |
15012
28fa57b57209
Added reference record_definition_quick_and_dirty_sensitive, to
schirmer
parents:
14981
diff
changeset
|
1622 |
|
43683 | 1623 |
val split_meta_prop = (* FIXME local P *) |
46215
0da9433f959e
discontinued old-style Term.list_all_free in favour of plain Logic.all;
wenzelm
parents:
46186
diff
changeset
|
1624 |
let val P = Free (singleton (Name.variant_list variants) "P", extT --> propT) |
0da9433f959e
discontinued old-style Term.list_all_free in favour of plain Logic.all;
wenzelm
parents:
46186
diff
changeset
|
1625 |
in Logic.mk_equals (Logic.all s (P $ s), fold_rev Logic.all vars_more (P $ ext)) end; |
15015
c5768e8c4da4
* record_upd_simproc also simplifies trivial updates:
schirmer
parents:
15012
diff
changeset
|
1626 |
|
46044 | 1627 |
val inject = timeit_msg ctxt "record extension inject proof:" (fn () => |
54895 | 1628 |
simplify (put_simpset HOL_ss defs_ctxt) |
51551 | 1629 |
(Goal.prove_sorry_global defs_thy [] [] inject_prop |
74537 | 1630 |
(fn {context = ctxt', ...} => |
1631 |
simp_tac (put_simpset HOL_basic_ss ctxt' addsimps [ext_def]) 1 THEN |
|
32975 | 1632 |
REPEAT_DETERM |
74537 | 1633 |
(resolve_tac ctxt' @{thms refl_conj_eq} 1 ORELSE |
1634 |
Iso_Tuple_Support.iso_tuple_intros_tac ctxt' 1 ORELSE |
|
1635 |
resolve_tac ctxt' [refl] 1)))); |
|
46044 | 1636 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1637 |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1638 |
(*We need a surjection property r = (| f = f r, g = g r ... |) |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1639 |
to prove other theorems. We haven't given names to the accessors |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1640 |
f, g etc yet however, so we generate an ext structure with |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1641 |
free variables as all arguments and allow the introduction tactic to |
35021
c839a4c670c6
renamed old-style Drule.standard to Drule.export_without_context, to emphasize that this is in no way a standard operation;
wenzelm
parents:
34151
diff
changeset
|
1642 |
operate on it as far as it can. We then use Drule.export_without_context |
c839a4c670c6
renamed old-style Drule.standard to Drule.export_without_context, to emphasize that this is in no way a standard operation;
wenzelm
parents:
34151
diff
changeset
|
1643 |
to convert the free variables into unifiable variables and unify them with |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1644 |
(roughly) the definition of the accessor.*) |
46044 | 1645 |
val surject = timeit_msg ctxt "record extension surjective proof:" (fn () => |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1646 |
let |
60796 | 1647 |
val start = |
1648 |
infer_instantiate defs_ctxt [(("y", 0), Thm.cterm_of defs_ctxt ext)] surject_assist_idE; |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1649 |
val tactic1 = |
54895 | 1650 |
simp_tac (put_simpset HOL_basic_ss defs_ctxt addsimps [ext_def]) 1 THEN |
59164 | 1651 |
REPEAT_ALL_NEW (Iso_Tuple_Support.iso_tuple_intros_tac defs_ctxt) 1; |
60752 | 1652 |
val tactic2 = |
1653 |
REPEAT (resolve_tac defs_ctxt [surject_assistI] 1 THEN resolve_tac defs_ctxt [refl] 1); |
|
32972 | 1654 |
val [halfway] = Seq.list_of (tactic1 start); |
35021
c839a4c670c6
renamed old-style Drule.standard to Drule.export_without_context, to emphasize that this is in no way a standard operation;
wenzelm
parents:
34151
diff
changeset
|
1655 |
val [surject] = Seq.list_of (tactic2 (Drule.export_without_context halfway)); |
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
1656 |
in |
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
1657 |
surject |
46044 | 1658 |
end); |
1659 |
||
1660 |
val split_meta = timeit_msg ctxt "record extension split_meta proof:" (fn () => |
|
51551 | 1661 |
Goal.prove_sorry_global defs_thy [] [] split_meta_prop |
74537 | 1662 |
(fn {context = ctxt', ...} => |
32975 | 1663 |
EVERY1 |
74537 | 1664 |
[resolve_tac ctxt' @{thms equal_intr_rule}, |
1665 |
Goal.norm_hhf_tac ctxt', |
|
1666 |
eresolve_tac ctxt' @{thms meta_allE}, assume_tac ctxt', |
|
1667 |
resolve_tac ctxt' [@{thm prop_subst} OF [surject]], |
|
1668 |
REPEAT o eresolve_tac ctxt' @{thms meta_allE}, assume_tac ctxt'])); |
|
46044 | 1669 |
|
1670 |
val induct = timeit_msg ctxt "record extension induct proof:" (fn () => |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1671 |
let val (assm, concl) = induct_prop in |
51551 | 1672 |
Goal.prove_sorry_global defs_thy [] [assm] concl |
74537 | 1673 |
(fn {context = ctxt', prems, ...} => |
46708
b138dee7bed3
prefer cut_tac, where it is clear that the special variants cut_rules_tac or cut_facts_tac are not required;
wenzelm
parents:
46223
diff
changeset
|
1674 |
cut_tac (split_meta RS Drule.equal_elim_rule2) 1 THEN |
74537 | 1675 |
resolve_tac ctxt' prems 2 THEN |
1676 |
asm_simp_tac (put_simpset HOL_ss ctxt') 1) |
|
46044 | 1677 |
end); |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1678 |
|
46055 | 1679 |
val ([(_, [induct']), (_, [inject']), (_, [surjective']), (_, [split_meta'])], thm_thy) = |
17261 | 1680 |
defs_thy |
46055 | 1681 |
|> Global_Theory.note_thmss "" |
1682 |
[((Binding.name "ext_induct", []), [([induct], [])]), |
|
1683 |
((Binding.name "ext_inject", []), [([inject], [])]), |
|
1684 |
((Binding.name "ext_surjective", []), [([surject], [])]), |
|
1685 |
((Binding.name "ext_split", []), [([split_meta], [])])]; |
|
38758
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
1686 |
in |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
1687 |
(((ext_name, ext_type), (ext_tyco, alphas_zeta), |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
1688 |
extT, induct', inject', surjective', split_meta', ext_def), thm_thy) |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
1689 |
end; |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1690 |
|
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1691 |
fun chunks [] [] = [] |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1692 |
| chunks [] xs = [xs] |
33957 | 1693 |
| chunks (l :: ls) xs = take l xs :: chunks ls (drop l xs); |
17261 | 1694 |
|
32764
690f9cccf232
replaced meta_iffD2 by existing Drule.equal_elim_rule2;
wenzelm
parents:
32763
diff
changeset
|
1695 |
fun chop_last [] = error "chop_last: list should not be empty" |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1696 |
| chop_last [x] = ([], x) |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1697 |
| chop_last (x :: xs) = let val (tl, l) = chop_last xs in (x :: tl, l) end; |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1698 |
|
32799
7478ea535416
eliminated dead code, redundant bindings and parameters;
wenzelm
parents:
32770
diff
changeset
|
1699 |
fun subst_last _ [] = error "subst_last: list should not be empty" |
7478ea535416
eliminated dead code, redundant bindings and parameters;
wenzelm
parents:
32770
diff
changeset
|
1700 |
| subst_last s [_] = [s] |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1701 |
| subst_last s (x :: xs) = x :: subst_last s xs; |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1702 |
|
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1703 |
|
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1704 |
(* mk_recordT *) |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1705 |
|
38758
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
1706 |
(*build up the record type from the current extension tpye extT and a list |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1707 |
of parent extensions, starting with the root of the record hierarchy*) |
21078 | 1708 |
fun mk_recordT extT = |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1709 |
fold_rev (fn (parent, Ts) => fn T => Type (parent, subst_last T Ts)) extT; |
15215 | 1710 |
|
1711 |
||
38533
8d23c7403699
use extension constant as formal constructor of logical record type
haftmann
parents:
38531
diff
changeset
|
1712 |
(* code generation *) |
8d23c7403699
use extension constant as formal constructor of logical record type
haftmann
parents:
38531
diff
changeset
|
1713 |
|
42695
a94ad372b2f5
adding creation of exhaustive generators for records; simplifying dependencies in Main theory
bulwahn
parents:
42381
diff
changeset
|
1714 |
fun mk_random_eq tyco vs extN Ts = |
38544
ac554311b1b9
re-added instantiation of type class random for records
haftmann
parents:
38534
diff
changeset
|
1715 |
let |
43683 | 1716 |
(* FIXME local i etc. *) |
67149 | 1717 |
val size = \<^term>\<open>i::natural\<close>; |
1718 |
fun termifyT T = HOLogic.mk_prodT (T, \<^typ>\<open>unit \<Rightarrow> term\<close>); |
|
38544
ac554311b1b9
re-added instantiation of type class random for records
haftmann
parents:
38534
diff
changeset
|
1719 |
val T = Type (tyco, map TFree vs); |
ac554311b1b9
re-added instantiation of type class random for records
haftmann
parents:
38534
diff
changeset
|
1720 |
val Tm = termifyT T; |
43329
84472e198515
tuned signature: Name.invent and Name.invent_names;
wenzelm
parents:
43324
diff
changeset
|
1721 |
val params = Name.invent_names Name.context "x" Ts; |
38544
ac554311b1b9
re-added instantiation of type class random for records
haftmann
parents:
38534
diff
changeset
|
1722 |
val lhs = HOLogic.mk_random T size; |
67149 | 1723 |
val tc = HOLogic.mk_return Tm \<^typ>\<open>Random.seed\<close> |
38544
ac554311b1b9
re-added instantiation of type class random for records
haftmann
parents:
38534
diff
changeset
|
1724 |
(HOLogic.mk_valtermify_app extN params T); |
38758
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
1725 |
val rhs = |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
1726 |
HOLogic.mk_ST |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
1727 |
(map (fn (v, T') => |
67149 | 1728 |
((HOLogic.mk_random T' size, \<^typ>\<open>Random.seed\<close>), SOME (v, termifyT T'))) params) |
1729 |
tc \<^typ>\<open>Random.seed\<close> (SOME Tm, \<^typ>\<open>Random.seed\<close>); |
|
42695
a94ad372b2f5
adding creation of exhaustive generators for records; simplifying dependencies in Main theory
bulwahn
parents:
42381
diff
changeset
|
1730 |
in |
a94ad372b2f5
adding creation of exhaustive generators for records; simplifying dependencies in Main theory
bulwahn
parents:
42381
diff
changeset
|
1731 |
(lhs, rhs) |
a94ad372b2f5
adding creation of exhaustive generators for records; simplifying dependencies in Main theory
bulwahn
parents:
42381
diff
changeset
|
1732 |
end |
a94ad372b2f5
adding creation of exhaustive generators for records; simplifying dependencies in Main theory
bulwahn
parents:
42381
diff
changeset
|
1733 |
|
a94ad372b2f5
adding creation of exhaustive generators for records; simplifying dependencies in Main theory
bulwahn
parents:
42381
diff
changeset
|
1734 |
fun mk_full_exhaustive_eq tyco vs extN Ts = |
a94ad372b2f5
adding creation of exhaustive generators for records; simplifying dependencies in Main theory
bulwahn
parents:
42381
diff
changeset
|
1735 |
let |
43683 | 1736 |
(* FIXME local i etc. *) |
67149 | 1737 |
val size = \<^term>\<open>i::natural\<close>; |
1738 |
fun termifyT T = HOLogic.mk_prodT (T, \<^typ>\<open>unit \<Rightarrow> term\<close>); |
|
42695
a94ad372b2f5
adding creation of exhaustive generators for records; simplifying dependencies in Main theory
bulwahn
parents:
42381
diff
changeset
|
1739 |
val T = Type (tyco, map TFree vs); |
67149 | 1740 |
val test_function = Free ("f", termifyT T --> \<^typ>\<open>(bool \<times> term list) option\<close>); |
43329
84472e198515
tuned signature: Name.invent and Name.invent_names;
wenzelm
parents:
43324
diff
changeset
|
1741 |
val params = Name.invent_names Name.context "x" Ts; |
74599 | 1742 |
fun mk_full_exhaustive U = \<^Const>\<open>full_exhaustive_class.full_exhaustive U\<close>; |
42695
a94ad372b2f5
adding creation of exhaustive generators for records; simplifying dependencies in Main theory
bulwahn
parents:
42381
diff
changeset
|
1743 |
val lhs = mk_full_exhaustive T $ test_function $ size; |
a94ad372b2f5
adding creation of exhaustive generators for records; simplifying dependencies in Main theory
bulwahn
parents:
42381
diff
changeset
|
1744 |
val tc = test_function $ (HOLogic.mk_valtermify_app extN params T); |
74599 | 1745 |
val rhs = fold_rev (fn (v, U) => fn cont => |
1746 |
mk_full_exhaustive U $ (lambda (Free (v, termifyT U)) cont) $ size) params tc; |
|
42695
a94ad372b2f5
adding creation of exhaustive generators for records; simplifying dependencies in Main theory
bulwahn
parents:
42381
diff
changeset
|
1747 |
in |
a94ad372b2f5
adding creation of exhaustive generators for records; simplifying dependencies in Main theory
bulwahn
parents:
42381
diff
changeset
|
1748 |
(lhs, rhs) |
43683 | 1749 |
end; |
42695
a94ad372b2f5
adding creation of exhaustive generators for records; simplifying dependencies in Main theory
bulwahn
parents:
42381
diff
changeset
|
1750 |
|
a94ad372b2f5
adding creation of exhaustive generators for records; simplifying dependencies in Main theory
bulwahn
parents:
42381
diff
changeset
|
1751 |
fun instantiate_sort_record (sort, mk_eq) tyco vs extN Ts thy = |
a94ad372b2f5
adding creation of exhaustive generators for records; simplifying dependencies in Main theory
bulwahn
parents:
42381
diff
changeset
|
1752 |
let |
a94ad372b2f5
adding creation of exhaustive generators for records; simplifying dependencies in Main theory
bulwahn
parents:
42381
diff
changeset
|
1753 |
val eq = HOLogic.mk_Trueprop (HOLogic.mk_eq (mk_eq tyco vs extN Ts)); |
41576 | 1754 |
in |
38544
ac554311b1b9
re-added instantiation of type class random for records
haftmann
parents:
38534
diff
changeset
|
1755 |
thy |
42695
a94ad372b2f5
adding creation of exhaustive generators for records; simplifying dependencies in Main theory
bulwahn
parents:
42381
diff
changeset
|
1756 |
|> Class.instantiation ([tyco], vs, sort) |
38544
ac554311b1b9
re-added instantiation of type class random for records
haftmann
parents:
38534
diff
changeset
|
1757 |
|> `(fn lthy => Syntax.check_term lthy eq) |
63180 | 1758 |
|-> (fn eq => Specification.definition NONE [] [] ((Binding.concealed Binding.empty, []), eq)) |
38544
ac554311b1b9
re-added instantiation of type class random for records
haftmann
parents:
38534
diff
changeset
|
1759 |
|> snd |
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59271
diff
changeset
|
1760 |
|> Class.prove_instantiation_exit (fn ctxt => Class.intro_classes_tac ctxt []) |
43683 | 1761 |
end; |
42695
a94ad372b2f5
adding creation of exhaustive generators for records; simplifying dependencies in Main theory
bulwahn
parents:
42381
diff
changeset
|
1762 |
|
a94ad372b2f5
adding creation of exhaustive generators for records; simplifying dependencies in Main theory
bulwahn
parents:
42381
diff
changeset
|
1763 |
fun ensure_sort_record (sort, mk_eq) ext_tyco vs extN Ts thy = |
38544
ac554311b1b9
re-added instantiation of type class random for records
haftmann
parents:
38534
diff
changeset
|
1764 |
let |
ac554311b1b9
re-added instantiation of type class random for records
haftmann
parents:
38534
diff
changeset
|
1765 |
val algebra = Sign.classes_of thy; |
48272 | 1766 |
val has_inst = Sorts.has_instance algebra ext_tyco sort; |
41576 | 1767 |
in |
1768 |
if has_inst then thy |
|
1769 |
else |
|
42695
a94ad372b2f5
adding creation of exhaustive generators for records; simplifying dependencies in Main theory
bulwahn
parents:
42381
diff
changeset
|
1770 |
(case Quickcheck_Common.perhaps_constrain thy (map (rpair sort) Ts) vs of |
41576 | 1771 |
SOME constrain => |
42695
a94ad372b2f5
adding creation of exhaustive generators for records; simplifying dependencies in Main theory
bulwahn
parents:
42381
diff
changeset
|
1772 |
instantiate_sort_record (sort, mk_eq) ext_tyco (map constrain vs) extN |
41576 | 1773 |
((map o map_atyps) (fn TFree v => TFree (constrain v)) Ts) thy |
1774 |
| NONE => thy) |
|
38544
ac554311b1b9
re-added instantiation of type class random for records
haftmann
parents:
38534
diff
changeset
|
1775 |
end; |
ac554311b1b9
re-added instantiation of type class random for records
haftmann
parents:
38534
diff
changeset
|
1776 |
|
38533
8d23c7403699
use extension constant as formal constructor of logical record type
haftmann
parents:
38531
diff
changeset
|
1777 |
fun add_code ext_tyco vs extT ext simps inject thy = |
47842
bfc08ce7b7b9
provide [[record_codegen]] option for skipping codegen setup for records
Gerwin Klein <gerwin.klein@nicta.com.au>
parents:
47783
diff
changeset
|
1778 |
if Config.get_global thy codegen then |
bfc08ce7b7b9
provide [[record_codegen]] option for skipping codegen setup for records
Gerwin Klein <gerwin.klein@nicta.com.au>
parents:
47783
diff
changeset
|
1779 |
let |
74599 | 1780 |
val eq = HOLogic.mk_Trueprop (HOLogic.mk_eq (\<^Const>\<open>HOL.equal extT\<close>, \<^Const>\<open>HOL.eq extT\<close>)); |
54742
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
54707
diff
changeset
|
1781 |
fun tac ctxt eq_def = |
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59271
diff
changeset
|
1782 |
Class.intro_classes_tac ctxt [] |
54742
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
54707
diff
changeset
|
1783 |
THEN rewrite_goals_tac ctxt [Simpdata.mk_eq eq_def] |
60752 | 1784 |
THEN ALLGOALS (resolve_tac ctxt @{thms refl}); |
63073
413184c7a2a2
clarified context, notably for internal use of Simplifier;
wenzelm
parents:
63064
diff
changeset
|
1785 |
fun mk_eq ctxt eq_def = |
413184c7a2a2
clarified context, notably for internal use of Simplifier;
wenzelm
parents:
63064
diff
changeset
|
1786 |
rewrite_rule ctxt |
413184c7a2a2
clarified context, notably for internal use of Simplifier;
wenzelm
parents:
63064
diff
changeset
|
1787 |
[Axclass.unoverload ctxt (Thm.symmetric (Simpdata.mk_eq eq_def))] inject; |
413184c7a2a2
clarified context, notably for internal use of Simplifier;
wenzelm
parents:
63064
diff
changeset
|
1788 |
fun mk_eq_refl ctxt = |
74610 | 1789 |
\<^instantiate>\<open>'a = \<open>Thm.ctyp_of ctxt (Logic.varifyT_global extT)\<close> in |
1790 |
lemma (schematic) \<open>equal_class.equal x x \<longleftrightarrow> True\<close> by (rule equal_refl)\<close> |
|
63073
413184c7a2a2
clarified context, notably for internal use of Simplifier;
wenzelm
parents:
63064
diff
changeset
|
1791 |
|> Axclass.unoverload ctxt; |
67149 | 1792 |
val ensure_random_record = ensure_sort_record (\<^sort>\<open>random\<close>, mk_random_eq); |
47842
bfc08ce7b7b9
provide [[record_codegen]] option for skipping codegen setup for records
Gerwin Klein <gerwin.klein@nicta.com.au>
parents:
47783
diff
changeset
|
1793 |
val ensure_exhaustive_record = |
67149 | 1794 |
ensure_sort_record (\<^sort>\<open>full_exhaustive\<close>, mk_full_exhaustive_eq); |
66251
cd935b7cb3fb
proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents:
63352
diff
changeset
|
1795 |
fun add_code eq_def thy = |
cd935b7cb3fb
proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents:
63352
diff
changeset
|
1796 |
let |
cd935b7cb3fb
proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents:
63352
diff
changeset
|
1797 |
val ctxt = Proof_Context.init_global thy; |
cd935b7cb3fb
proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents:
63352
diff
changeset
|
1798 |
in |
cd935b7cb3fb
proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents:
63352
diff
changeset
|
1799 |
thy |
74292 | 1800 |
|> Code.declare_default_eqns_global [(mk_eq ctxt eq_def, true), (mk_eq_refl ctxt, false)] |
66251
cd935b7cb3fb
proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents:
63352
diff
changeset
|
1801 |
end; |
47842
bfc08ce7b7b9
provide [[record_codegen]] option for skipping codegen setup for records
Gerwin Klein <gerwin.klein@nicta.com.au>
parents:
47783
diff
changeset
|
1802 |
in |
bfc08ce7b7b9
provide [[record_codegen]] option for skipping codegen setup for records
Gerwin Klein <gerwin.klein@nicta.com.au>
parents:
47783
diff
changeset
|
1803 |
thy |
66251
cd935b7cb3fb
proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents:
63352
diff
changeset
|
1804 |
|> Code.declare_datatype_global [ext] |
cd935b7cb3fb
proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents:
63352
diff
changeset
|
1805 |
|> Code.declare_default_eqns_global (map (rpair true) simps) |
47842
bfc08ce7b7b9
provide [[record_codegen]] option for skipping codegen setup for records
Gerwin Klein <gerwin.klein@nicta.com.au>
parents:
47783
diff
changeset
|
1806 |
|> Class.instantiation ([ext_tyco], vs, [HOLogic.class_equal]) |
bfc08ce7b7b9
provide [[record_codegen]] option for skipping codegen setup for records
Gerwin Klein <gerwin.klein@nicta.com.au>
parents:
47783
diff
changeset
|
1807 |
|> `(fn lthy => Syntax.check_term lthy eq) |
63352 | 1808 |
|-> (fn eq => Specification.definition NONE [] [] (Binding.empty_atts, eq)) |
47842
bfc08ce7b7b9
provide [[record_codegen]] option for skipping codegen setup for records
Gerwin Klein <gerwin.klein@nicta.com.au>
parents:
47783
diff
changeset
|
1809 |
|-> (fn (_, (_, eq_def)) => |
54742
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
54707
diff
changeset
|
1810 |
Class.prove_instantiation_exit_result Morphism.thm tac eq_def) |
66251
cd935b7cb3fb
proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents:
63352
diff
changeset
|
1811 |
|-> add_code |
47842
bfc08ce7b7b9
provide [[record_codegen]] option for skipping codegen setup for records
Gerwin Klein <gerwin.klein@nicta.com.au>
parents:
47783
diff
changeset
|
1812 |
|> ensure_random_record ext_tyco vs (fst ext) (binder_types (snd ext)) |
bfc08ce7b7b9
provide [[record_codegen]] option for skipping codegen setup for records
Gerwin Klein <gerwin.klein@nicta.com.au>
parents:
47783
diff
changeset
|
1813 |
|> ensure_exhaustive_record ext_tyco vs (fst ext) (binder_types (snd ext)) |
bfc08ce7b7b9
provide [[record_codegen]] option for skipping codegen setup for records
Gerwin Klein <gerwin.klein@nicta.com.au>
parents:
47783
diff
changeset
|
1814 |
end |
bfc08ce7b7b9
provide [[record_codegen]] option for skipping codegen setup for records
Gerwin Klein <gerwin.klein@nicta.com.au>
parents:
47783
diff
changeset
|
1815 |
else thy; |
38533
8d23c7403699
use extension constant as formal constructor of logical record type
haftmann
parents:
38531
diff
changeset
|
1816 |
|
58363
a5c08cd60a3f
take out selectors for records -- for derived records, these don't quite have the right type
blanchet
parents:
58239
diff
changeset
|
1817 |
fun add_ctr_sugar ctr exhaust inject sel_thms = |
58188 | 1818 |
Ctr_Sugar.default_register_ctr_sugar_global (K true) |
58675 | 1819 |
{kind = Ctr_Sugar.Record, T = body_type (fastype_of ctr), ctrs = [ctr], casex = Term.dummy, |
1820 |
discs = [], selss = [], exhaust = exhaust, nchotomy = Drule.dummy_thm, injects = [inject], |
|
1821 |
distincts = [], case_thms = [], case_cong = Drule.dummy_thm, case_cong_weak = Drule.dummy_thm, |
|
59266 | 1822 |
case_distribs = [], split = Drule.dummy_thm, split_asm = Drule.dummy_thm, disc_defs = [], |
59271 | 1823 |
disc_thmss = [], discIs = [], disc_eq_cases = [], sel_defs = [], sel_thmss = [sel_thms], |
1824 |
distinct_discsss = [], exhaust_discs = [], exhaust_sels = [], collapses = [], expands = [], |
|
1825 |
split_sels = [], split_sel_asms = [], case_eq_ifs = []}; |
|
57225
ff69e42ccf92
register record extensions as freely generated types
blanchet
parents:
56732
diff
changeset
|
1826 |
|
74383 | 1827 |
fun lhs_of_equation \<^Const_>\<open>Pure.eq _ for t _\<close> = t |
1828 |
| lhs_of_equation \<^Const_>\<open>Trueprop for \<^Const_>\<open>HOL.eq _ for t _\<close>\<close> = t; |
|
61861 | 1829 |
|
1830 |
fun add_spec_rule rule = |
|
71179 | 1831 |
let val head = head_of (lhs_of_equation (Thm.prop_of rule)) |
71214
5727bcc3c47c
proper spec_rule name via naming/binding/Morphism.binding;
wenzelm
parents:
71179
diff
changeset
|
1832 |
in Spec_Rules.add_global Binding.empty Spec_Rules.equational [head] [rule] end; |
38533
8d23c7403699
use extension constant as formal constructor of logical record type
haftmann
parents:
38531
diff
changeset
|
1833 |
|
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
1834 |
(* definition *) |
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
1835 |
|
61260 | 1836 |
fun definition overloaded (alphas, binding) parent (parents: parent_info list) raw_fields thy0 = |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1837 |
let |
60796 | 1838 |
val ctxt0 = Proof_Context.init_global thy0; |
43682 | 1839 |
|
37470 | 1840 |
val prefix = Binding.name_of binding; |
60796 | 1841 |
val name = Sign.full_name thy0 binding; |
1842 |
val full = Sign.full_name_path thy0 prefix; |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1843 |
|
35136 | 1844 |
val bfields = map (fn (x, T, _) => (x, T)) raw_fields; |
1845 |
val field_syntax = map #3 raw_fields; |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1846 |
|
32952 | 1847 |
val parent_fields = maps #fields parents; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1848 |
val parent_chunks = map (length o #fields) parents; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1849 |
val parent_names = map fst parent_fields; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1850 |
val parent_types = map snd parent_fields; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1851 |
val parent_fields_len = length parent_fields; |
35239 | 1852 |
val parent_variants = |
1853 |
Name.variant_list [moreN, rN, rN ^ "'", wN] (map Long_Name.base_name parent_names); |
|
37470 | 1854 |
val parent_vars = map2 (curry Free) parent_variants parent_types; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1855 |
val parent_len = length parents; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1856 |
|
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1857 |
val fields = map (apfst full) bfields; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1858 |
val names = map fst fields; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1859 |
val types = map snd fields; |
36151
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
1860 |
val alphas_fields = fold Term.add_tfreesT types []; |
33049
c38f02fdf35d
curried inter as canonical list operation (beware of argument order)
haftmann
parents:
33039
diff
changeset
|
1861 |
val alphas_ext = inter (op =) alphas_fields alphas; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1862 |
val len = length fields; |
30715
e23e15f52d42
avoid mixing of left/right associative infixes, to make it work with experimental Poly/ML 5.3 branch;
wenzelm
parents:
30364
diff
changeset
|
1863 |
val variants = |
32764
690f9cccf232
replaced meta_iffD2 by existing Drule.equal_elim_rule2;
wenzelm
parents:
32763
diff
changeset
|
1864 |
Name.variant_list (moreN :: rN :: (rN ^ "'") :: wN :: parent_variants) |
35136 | 1865 |
(map (Binding.name_of o fst) bfields); |
37470 | 1866 |
val vars = map2 (curry Free) variants types; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1867 |
val named_vars = names ~~ vars; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1868 |
val idxms = 0 upto len; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1869 |
|
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1870 |
val all_fields = parent_fields @ fields; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1871 |
val all_types = parent_types @ types; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1872 |
val all_variants = parent_variants @ variants; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1873 |
val all_vars = parent_vars @ vars; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1874 |
val all_named_vars = (parent_names ~~ parent_vars) @ named_vars; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1875 |
|
67149 | 1876 |
val zeta = (singleton (Name.variant_list (map #1 alphas)) "'z", \<^sort>\<open>type\<close>); |
36151
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
1877 |
val moreT = TFree zeta; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1878 |
val more = Free (moreN, moreT); |
35136 | 1879 |
val full_moreN = full (Binding.name moreN); |
1880 |
val bfields_more = bfields @ [(Binding.name moreN, moreT)]; |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1881 |
val fields_more = fields @ [(full_moreN, moreT)]; |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1882 |
val named_vars_more = named_vars @ [(full_moreN, more)]; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1883 |
val all_vars_more = all_vars @ [more]; |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1884 |
val all_named_vars_more = all_named_vars @ [(full_moreN, more)]; |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1885 |
|
17261 | 1886 |
|
35239 | 1887 |
(* 1st stage: ext_thy *) |
1888 |
||
1889 |
val extension_name = full binding; |
|
1890 |
||
38758
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
1891 |
val ((ext, (ext_tyco, vs), |
f2cfb2cc03e8
misc tuning and simplification, notably theory data;
wenzelm
parents:
38715
diff
changeset
|
1892 |
extT, ext_induct, ext_inject, ext_surjective, ext_split, ext_def), ext_thy) = |
60796 | 1893 |
thy0 |
35239 | 1894 |
|> Sign.qualified_path false binding |
61260 | 1895 |
|> extension_definition overloaded extension_name fields alphas_ext zeta moreT more vars; |
54895 | 1896 |
val ext_ctxt = Proof_Context.init_global ext_thy; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1897 |
|
60796 | 1898 |
val _ = timing_msg ext_ctxt "record preparing definitions"; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1899 |
val Type extension_scheme = extT; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1900 |
val extension_name = unsuffix ext_typeN (fst extension_scheme); |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1901 |
val extension = let val (n, Ts) = extension_scheme in (n, subst_last HOLogic.unitT Ts) end; |
35239 | 1902 |
val extension_names = map (unsuffix ext_typeN o fst o #extension) parents @ [extension_name]; |
32764
690f9cccf232
replaced meta_iffD2 by existing Drule.equal_elim_rule2;
wenzelm
parents:
32763
diff
changeset
|
1903 |
val extension_id = implode extension_names; |
17261 | 1904 |
|
33957 | 1905 |
fun rec_schemeT n = mk_recordT (map #extension (drop n parents)) extT; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1906 |
val rec_schemeT0 = rec_schemeT 0; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1907 |
|
17261 | 1908 |
fun recT n = |
32972 | 1909 |
let val (c, Ts) = extension in |
33957 | 1910 |
mk_recordT (map #extension (drop n parents)) |
32972 | 1911 |
(Type (c, subst_last HOLogic.unitT Ts)) |
1912 |
end; |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1913 |
val recT0 = recT 0; |
17261 | 1914 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1915 |
fun mk_rec args n = |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1916 |
let |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1917 |
val (args', more) = chop_last args; |
32974
2a1aaa2d9e64
eliminated old List.foldr and OldTerm operations;
wenzelm
parents:
32973
diff
changeset
|
1918 |
fun mk_ext' ((name, T), args) more = mk_ext (name, T) (args @ [more]); |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1919 |
fun build Ts = |
35430
df2862dc23a8
adapted to authentic syntax -- actual types are verbatim;
wenzelm
parents:
35410
diff
changeset
|
1920 |
fold_rev mk_ext' (drop n ((extension_names ~~ Ts) ~~ chunks parent_chunks args')) more; |
17261 | 1921 |
in |
1922 |
if more = HOLogic.unit |
|
33063 | 1923 |
then build (map_range recT (parent_len + 1)) |
1924 |
else build (map_range rec_schemeT (parent_len + 1)) |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1925 |
end; |
17261 | 1926 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1927 |
val r_rec0 = mk_rec all_vars_more 0; |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1928 |
val r_rec_unit0 = mk_rec (all_vars @ [HOLogic.unit]) 0; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1929 |
|
35430
df2862dc23a8
adapted to authentic syntax -- actual types are verbatim;
wenzelm
parents:
35410
diff
changeset
|
1930 |
fun r n = Free (rN, rec_schemeT n); |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1931 |
val r0 = r 0; |
35430
df2862dc23a8
adapted to authentic syntax -- actual types are verbatim;
wenzelm
parents:
35410
diff
changeset
|
1932 |
fun r_unit n = Free (rN, recT n); |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1933 |
val r_unit0 = r_unit 0; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1934 |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1935 |
|
35239 | 1936 |
(* print translations *) |
1937 |
||
35149 | 1938 |
val record_ext_type_abbr_tr's = |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1939 |
let |
35430
df2862dc23a8
adapted to authentic syntax -- actual types are verbatim;
wenzelm
parents:
35410
diff
changeset
|
1940 |
val trname = hd extension_names; |
35148 | 1941 |
val last_ext = unsuffix ext_typeN (fst extension); |
35430
df2862dc23a8
adapted to authentic syntax -- actual types are verbatim;
wenzelm
parents:
35410
diff
changeset
|
1942 |
in [record_ext_type_abbr_tr' name alphas zeta last_ext rec_schemeT0 trname] end; |
35149 | 1943 |
|
1944 |
val record_ext_type_tr's = |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1945 |
let |
35149 | 1946 |
(*avoid conflict with record_type_abbr_tr's*) |
35430
df2862dc23a8
adapted to authentic syntax -- actual types are verbatim;
wenzelm
parents:
35410
diff
changeset
|
1947 |
val trnames = if parent_len > 0 then [extension_name] else []; |
35149 | 1948 |
in map record_ext_type_tr' trnames end; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1949 |
|
52143 | 1950 |
val print_translation = |
35239 | 1951 |
map field_update_tr' (full_moreN :: names) @ [record_ext_tr' extension_name] @ |
1952 |
record_ext_type_tr's @ record_ext_type_abbr_tr's; |
|
1953 |
||
17261 | 1954 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1955 |
(* prepare declarations *) |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1956 |
|
35136 | 1957 |
val sel_decls = map (mk_selC rec_schemeT0 o apfst Binding.name_of) bfields_more; |
1958 |
val upd_decls = map (mk_updC updateN rec_schemeT0 o apfst Binding.name_of) bfields_more; |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1959 |
val make_decl = (makeN, all_types ---> recT0); |
17261 | 1960 |
val fields_decl = (fields_selN, types ---> Type extension); |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1961 |
val extend_decl = (extendN, recT0 --> moreT --> rec_schemeT0); |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1962 |
val truncate_decl = (truncateN, rec_schemeT0 --> recT0); |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1963 |
|
35133 | 1964 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
1965 |
(* prepare definitions *) |
17261 | 1966 |
|
35138 | 1967 |
val ext_defs = ext_def :: map #ext_def parents; |
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
1968 |
|
34151
8d57ce46b3f7
prefer prefix "iso" over potentially misleading "is"; tuned
haftmann
parents:
33957
diff
changeset
|
1969 |
(*Theorems from the iso_tuple intros. |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1970 |
By unfolding ext_defs from r_rec0 we create a tree of constructor |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1971 |
calls (many of them Pair, but others as well). The introduction |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1972 |
rules for update_accessor_eq_assist can unify two different ways |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1973 |
on these constructors. If we take the complete result sequence of |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1974 |
running a the introduction tactic, we get one theorem for each upd/acc |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1975 |
pair, from which we can derive the bodies of our selector and |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
1976 |
updator and their convs.*) |
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
1977 |
val (accessor_thms, updator_thms, upd_acc_cong_assists) = |
60796 | 1978 |
timeit_msg ext_ctxt "record getting tree access/updates:" (fn () => |
46044 | 1979 |
let |
1980 |
val r_rec0_Vars = |
|
1981 |
let |
|
1982 |
(*pick variable indices of 1 to avoid possible variable |
|
1983 |
collisions with existing variables in updacc_eq_triv*) |
|
1984 |
fun to_Var (Free (c, T)) = Var ((c, 1), T); |
|
1985 |
in mk_rec (map to_Var all_vars_more) 0 end; |
|
1986 |
||
60796 | 1987 |
val init_thm = |
1988 |
infer_instantiate ext_ctxt |
|
1989 |
[(("v", 0), Thm.cterm_of ext_ctxt r_rec0), |
|
1990 |
(("v'", 0), Thm.cterm_of ext_ctxt r_rec0_Vars)] |
|
1991 |
updacc_eq_triv; |
|
60752 | 1992 |
val terminal = |
1993 |
resolve_tac ext_ctxt [updacc_eq_idI] 1 THEN resolve_tac ext_ctxt [refl] 1; |
|
46044 | 1994 |
val tactic = |
54895 | 1995 |
simp_tac (put_simpset HOL_basic_ss ext_ctxt addsimps ext_defs) 1 THEN |
59164 | 1996 |
REPEAT (Iso_Tuple_Support.iso_tuple_intros_tac ext_ctxt 1 ORELSE terminal); |
46044 | 1997 |
val updaccs = Seq.list_of (tactic init_thm); |
1998 |
in |
|
1999 |
(updaccs RL [updacc_accessor_eqE], |
|
2000 |
updaccs RL [updacc_updator_eqE], |
|
2001 |
updaccs RL [updacc_cong_from_eq]) |
|
2002 |
end); |
|
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
2003 |
|
33957 | 2004 |
fun lastN xs = drop parent_fields_len xs; |
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
2005 |
|
17261 | 2006 |
(*selectors*) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
2007 |
fun mk_sel_spec ((c, T), thm) = |
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
2008 |
let |
35239 | 2009 |
val (acc $ arg, _) = |
2010 |
HOLogic.dest_eq (HOLogic.dest_Trueprop (Envir.beta_eta_contract (Thm.concl_of thm))); |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
2011 |
val _ = |
35239 | 2012 |
if arg aconv r_rec0 then () |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
2013 |
else raise TERM ("mk_sel_spec: different arg", [arg]); |
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
2014 |
in |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
2015 |
Const (mk_selC rec_schemeT0 (c, T)) :== acc |
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
2016 |
end; |
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
2017 |
val sel_specs = map mk_sel_spec (fields_more ~~ lastN accessor_thms); |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2018 |
|
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2019 |
(*updates*) |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
2020 |
fun mk_upd_spec ((c, T), thm) = |
17261 | 2021 |
let |
35239 | 2022 |
val (upd $ _ $ arg, _) = |
2023 |
HOLogic.dest_eq (HOLogic.dest_Trueprop (Envir.beta_eta_contract (Thm.concl_of thm))); |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
2024 |
val _ = |
35135 | 2025 |
if arg aconv r_rec0 then () |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
2026 |
else raise TERM ("mk_sel_spec: different arg", [arg]); |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
2027 |
in Const (mk_updC updateN rec_schemeT0 (c, T)) :== upd end; |
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
2028 |
val upd_specs = map mk_upd_spec (fields_more ~~ lastN updator_thms); |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2029 |
|
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2030 |
(*derived operations*) |
35144 | 2031 |
val make_spec = |
2032 |
list_comb (Const (full (Binding.name makeN), all_types ---> recT0), all_vars) :== |
|
2033 |
mk_rec (all_vars @ [HOLogic.unit]) 0; |
|
2034 |
val fields_spec = |
|
2035 |
list_comb (Const (full (Binding.name fields_selN), types ---> Type extension), vars) :== |
|
2036 |
mk_rec (all_vars @ [HOLogic.unit]) parent_len; |
|
17261 | 2037 |
val extend_spec = |
35136 | 2038 |
Const (full (Binding.name extendN), recT0 --> moreT --> rec_schemeT0) $ r_unit0 $ more :== |
35144 | 2039 |
mk_rec ((map (mk_sel r_unit0) all_fields) @ [more]) 0; |
2040 |
val truncate_spec = |
|
2041 |
Const (full (Binding.name truncateN), rec_schemeT0 --> recT0) $ r0 :== |
|
2042 |
mk_rec ((map (mk_sel r0) all_fields) @ [HOLogic.unit]) 0; |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2043 |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
2044 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2045 |
(* 2st stage: defs_thy *) |
17261 | 2046 |
|
22747
0c9c413b4678
add definitions explicitly to code generator table
haftmann
parents:
22693
diff
changeset
|
2047 |
val (((sel_defs, upd_defs), derived_defs), defs_thy) = |
60796 | 2048 |
timeit_msg ext_ctxt "record trfuns/tyabbrs/selectors/updates/make/fields/extend/truncate defs:" |
46044 | 2049 |
(fn () => |
2050 |
ext_thy |
|
52143 | 2051 |
|> Sign.print_translation print_translation |
60796 | 2052 |
|> Sign.restore_naming thy0 |
46044 | 2053 |
|> Typedecl.abbrev_global (binding, map #1 alphas, NoSyn) recT0 |> snd |
2054 |
|> Typedecl.abbrev_global |
|
46056 | 2055 |
(Binding.suffix_name schemeN binding, map #1 (alphas @ [zeta]), NoSyn) rec_schemeT0 |
2056 |
|> snd |
|
46044 | 2057 |
|> Sign.qualified_path false binding |
2058 |
|> fold (fn ((x, T), mx) => snd o Sign.declare_const_global ((Binding.name x, T), mx)) |
|
2059 |
(sel_decls ~~ (field_syntax @ [NoSyn])) |
|
2060 |
|> fold (fn (x, T) => snd o Sign.declare_const_global ((Binding.name x, T), NoSyn)) |
|
2061 |
(upd_decls @ [make_decl, fields_decl, extend_decl, truncate_decl]) |
|
79336
032a31db4c6f
clarified signature: downgrade old-style Global_Theory.add_defs to Global_Theory.add_def without attributes;
wenzelm
parents:
78812
diff
changeset
|
2062 |
|> fold_map (Global_Theory.add_def o apfst (Binding.concealed o Binding.name)) sel_specs |
032a31db4c6f
clarified signature: downgrade old-style Global_Theory.add_defs to Global_Theory.add_def without attributes;
wenzelm
parents:
78812
diff
changeset
|
2063 |
||>> fold_map (Global_Theory.add_def o apfst (Binding.concealed o Binding.name)) upd_specs |
032a31db4c6f
clarified signature: downgrade old-style Global_Theory.add_defs to Global_Theory.add_def without attributes;
wenzelm
parents:
78812
diff
changeset
|
2064 |
||>> fold_map (Global_Theory.add_def o apfst (Binding.concealed o Binding.name)) |
52788 | 2065 |
[make_spec, fields_spec, extend_spec, truncate_spec]); |
54895 | 2066 |
val defs_ctxt = Proof_Context.init_global defs_thy; |
17261 | 2067 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2068 |
(* prepare propositions *) |
60796 | 2069 |
val _ = timing_msg defs_ctxt "record preparing propositions"; |
43324
2b47822868e4
discontinued Name.variant to emphasize that this is old-style / indirect;
wenzelm
parents:
42795
diff
changeset
|
2070 |
val P = Free (singleton (Name.variant_list all_variants) "P", rec_schemeT0 --> HOLogic.boolT); |
2b47822868e4
discontinued Name.variant to emphasize that this is old-style / indirect;
wenzelm
parents:
42795
diff
changeset
|
2071 |
val C = Free (singleton (Name.variant_list all_variants) "C", HOLogic.boolT); |
2b47822868e4
discontinued Name.variant to emphasize that this is old-style / indirect;
wenzelm
parents:
42795
diff
changeset
|
2072 |
val P_unit = Free (singleton (Name.variant_list all_variants) "P", recT0 --> HOLogic.boolT); |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2073 |
|
17261 | 2074 |
(*selectors*) |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2075 |
val sel_conv_props = |
61861 | 2076 |
map (fn (c, x as Free (_, T)) => mk_sel r_rec0 (c, T) === x) named_vars_more; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2077 |
|
17261 | 2078 |
(*updates*) |
37470 | 2079 |
fun mk_upd_prop i (c, T) = |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
2080 |
let |
43324
2b47822868e4
discontinued Name.variant to emphasize that this is old-style / indirect;
wenzelm
parents:
42795
diff
changeset
|
2081 |
val x' = |
2b47822868e4
discontinued Name.variant to emphasize that this is old-style / indirect;
wenzelm
parents:
42795
diff
changeset
|
2082 |
Free (singleton (Name.variant_list all_variants) (Long_Name.base_name c ^ "'"), T --> T); |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
2083 |
val n = parent_fields_len + i; |
35239 | 2084 |
val args' = nth_map n (K (x' $ nth all_vars_more n)) all_vars_more; |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
2085 |
in mk_upd updateN c x' r_rec0 === mk_rec args' 0 end; |
37470 | 2086 |
val upd_conv_props = map2 mk_upd_prop idxms fields_more; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2087 |
|
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2088 |
(*induct*) |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2089 |
val induct_scheme_prop = |
46215
0da9433f959e
discontinued old-style Term.list_all_free in favour of plain Logic.all;
wenzelm
parents:
46186
diff
changeset
|
2090 |
fold_rev Logic.all all_vars_more (Trueprop (P $ r_rec0)) ==> Trueprop (P $ r0); |
17261 | 2091 |
val induct_prop = |
46215
0da9433f959e
discontinued old-style Term.list_all_free in favour of plain Logic.all;
wenzelm
parents:
46186
diff
changeset
|
2092 |
(fold_rev Logic.all all_vars (Trueprop (P_unit $ r_rec_unit0)), Trueprop (P_unit $ r_unit0)); |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2093 |
|
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2094 |
(*surjective*) |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2095 |
val surjective_prop = |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
2096 |
let val args = map (fn (c, Free (_, T)) => mk_sel r0 (c, T)) all_named_vars_more |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2097 |
in r0 === mk_rec args 0 end; |
17261 | 2098 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2099 |
(*cases*) |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2100 |
val cases_scheme_prop = |
46215
0da9433f959e
discontinued old-style Term.list_all_free in favour of plain Logic.all;
wenzelm
parents:
46186
diff
changeset
|
2101 |
(fold_rev Logic.all all_vars_more ((r0 === r_rec0) ==> Trueprop C), Trueprop C); |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2102 |
|
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2103 |
val cases_prop = |
46215
0da9433f959e
discontinued old-style Term.list_all_free in favour of plain Logic.all;
wenzelm
parents:
46186
diff
changeset
|
2104 |
fold_rev Logic.all all_vars ((r_unit0 === r_rec_unit0) ==> Trueprop C) ==> Trueprop C; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2105 |
|
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2106 |
(*split*) |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2107 |
val split_meta_prop = |
43324
2b47822868e4
discontinued Name.variant to emphasize that this is old-style / indirect;
wenzelm
parents:
42795
diff
changeset
|
2108 |
let |
46056 | 2109 |
val P = Free (singleton (Name.variant_list all_variants) "P", rec_schemeT0 --> propT); |
43324
2b47822868e4
discontinued Name.variant to emphasize that this is old-style / indirect;
wenzelm
parents:
42795
diff
changeset
|
2110 |
in |
46215
0da9433f959e
discontinued old-style Term.list_all_free in favour of plain Logic.all;
wenzelm
parents:
46186
diff
changeset
|
2111 |
Logic.mk_equals (Logic.all r0 (P $ r0), fold_rev Logic.all all_vars_more (P $ r_rec0)) |
17261 | 2112 |
end; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2113 |
|
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2114 |
val split_object_prop = |
32974
2a1aaa2d9e64
eliminated old List.foldr and OldTerm operations;
wenzelm
parents:
32973
diff
changeset
|
2115 |
let val ALL = fold_rev (fn (v, T) => fn t => HOLogic.mk_all (v, T, t)) |
2a1aaa2d9e64
eliminated old List.foldr and OldTerm operations;
wenzelm
parents:
32973
diff
changeset
|
2116 |
in ALL [dest_Free r0] (P $ r0) === ALL (map dest_Free all_vars_more) (P $ r_rec0) end; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2117 |
|
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2118 |
val split_ex_prop = |
32974
2a1aaa2d9e64
eliminated old List.foldr and OldTerm operations;
wenzelm
parents:
32973
diff
changeset
|
2119 |
let val EX = fold_rev (fn (v, T) => fn t => HOLogic.mk_exists (v, T, t)) |
2a1aaa2d9e64
eliminated old List.foldr and OldTerm operations;
wenzelm
parents:
32973
diff
changeset
|
2120 |
in EX [dest_Free r0] (P $ r0) === EX (map dest_Free all_vars_more) (P $ r_rec0) end; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2121 |
|
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2122 |
(*equality*) |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2123 |
val equality_prop = |
17261 | 2124 |
let |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
2125 |
val s' = Free (rN ^ "'", rec_schemeT0); |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
2126 |
fun mk_sel_eq (c, Free (_, T)) = mk_sel r0 (c, T) === mk_sel s' (c, T); |
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
2127 |
val seleqs = map mk_sel_eq all_named_vars_more; |
46215
0da9433f959e
discontinued old-style Term.list_all_free in favour of plain Logic.all;
wenzelm
parents:
46186
diff
changeset
|
2128 |
in Logic.all r0 (Logic.all s' (Logic.list_implies (seleqs, r0 === s'))) end; |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
2129 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2130 |
|
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2131 |
(* 3rd stage: thms_thy *) |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2132 |
|
46054
3458b0e955ac
simplified proof -- avoid res_inst_tac, afford plain asm_full_simp_tac;
wenzelm
parents:
46053
diff
changeset
|
2133 |
val record_ss = get_simpset defs_thy; |
74595
71bafd70acbb
avoid waste of resources due to dynamic simpset (amending 45c09620f726);
wenzelm
parents:
74561
diff
changeset
|
2134 |
val sel_upd_ss = |
71bafd70acbb
avoid waste of resources due to dynamic simpset (amending 45c09620f726);
wenzelm
parents:
74561
diff
changeset
|
2135 |
simpset_of |
71bafd70acbb
avoid waste of resources due to dynamic simpset (amending 45c09620f726);
wenzelm
parents:
74561
diff
changeset
|
2136 |
(put_simpset record_ss defs_ctxt |
71bafd70acbb
avoid waste of resources due to dynamic simpset (amending 45c09620f726);
wenzelm
parents:
74561
diff
changeset
|
2137 |
addsimps (sel_defs @ accessor_thms @ upd_defs @ updator_thms)); |
46050 | 2138 |
|
2139 |
val (sel_convs, upd_convs) = |
|
60796 | 2140 |
timeit_msg defs_ctxt "record sel_convs/upd_convs proof:" (fn () => |
46893
d5bb4c212df1
some grouping of Par_List operations, to adjust granularity;
wenzelm
parents:
46708
diff
changeset
|
2141 |
grouped 10 Par_List.map (fn prop => |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
2142 |
Goal.prove_sorry_global defs_thy [] [] prop |
74538 | 2143 |
(fn {context = ctxt', ...} => |
74595
71bafd70acbb
avoid waste of resources due to dynamic simpset (amending 45c09620f726);
wenzelm
parents:
74561
diff
changeset
|
2144 |
ALLGOALS (asm_full_simp_tac (put_simpset sel_upd_ss ctxt')))) |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
2145 |
(sel_conv_props @ upd_conv_props)) |
46050 | 2146 |
|> chop (length sel_conv_props); |
46044 | 2147 |
|
60796 | 2148 |
val (fold_congs, unfold_congs) = timeit_msg defs_ctxt "record upd fold/unfold congs:" (fn () => |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
2149 |
let |
36945 | 2150 |
val symdefs = map Thm.symmetric (sel_defs @ upd_defs); |
54895 | 2151 |
val fold_ctxt = put_simpset HOL_basic_ss defs_ctxt addsimps symdefs; |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
2152 |
val ua_congs = map (Drule.export_without_context o simplify fold_ctxt) upd_acc_cong_assists; |
46044 | 2153 |
in (ua_congs RL [updacc_foldE], ua_congs RL [updacc_unfoldE]) end); |
15012
28fa57b57209
Added reference record_definition_quick_and_dirty_sensitive, to
schirmer
parents:
14981
diff
changeset
|
2154 |
|
35138 | 2155 |
val parent_induct = Option.map #induct_scheme (try List.last parents); |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2156 |
|
60796 | 2157 |
val induct_scheme = timeit_msg defs_ctxt "record induct_scheme proof:" (fn () => |
51551 | 2158 |
Goal.prove_sorry_global defs_thy [] [] induct_scheme_prop |
74537 | 2159 |
(fn {context = ctxt', ...} => |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
2160 |
EVERY |
74537 | 2161 |
[case parent_induct of NONE => all_tac | SOME ind => try_param_tac ctxt' rN ind 1, |
2162 |
try_param_tac ctxt' rN ext_induct 1, |
|
2163 |
asm_simp_tac (put_simpset HOL_basic_ss ctxt') 1])); |
|
46044 | 2164 |
|
60796 | 2165 |
val induct = timeit_msg defs_ctxt "record induct proof:" (fn () => |
58956
a816aa3ff391
proper context for compose_tac, Splitter.split_tac (relevant for unify trace options);
wenzelm
parents:
58936
diff
changeset
|
2166 |
Goal.prove_sorry_global defs_thy [] [#1 induct_prop] (#2 induct_prop) |
74537 | 2167 |
(fn {context = ctxt', prems, ...} => |
2168 |
try_param_tac ctxt' rN induct_scheme 1 |
|
2169 |
THEN try_param_tac ctxt' "more" @{thm unit.induct} 1 |
|
2170 |
THEN resolve_tac ctxt' prems 1)); |
|
46044 | 2171 |
|
60796 | 2172 |
val surjective = timeit_msg defs_ctxt "record surjective proof:" (fn () => |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
2173 |
Goal.prove_sorry_global defs_thy [] [] surjective_prop |
74537 | 2174 |
(fn {context = ctxt', ...} => |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
2175 |
EVERY |
74537 | 2176 |
[resolve_tac ctxt' [surject_assist_idE] 1, |
2177 |
simp_tac (put_simpset HOL_basic_ss ctxt' addsimps ext_defs) 1, |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
2178 |
REPEAT |
74537 | 2179 |
(Iso_Tuple_Support.iso_tuple_intros_tac ctxt' 1 ORELSE |
2180 |
(resolve_tac ctxt' [surject_assistI] 1 THEN |
|
2181 |
simp_tac (put_simpset (get_sel_upd_defs defs_thy) ctxt' |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
2182 |
addsimps (sel_defs @ @{thms o_assoc id_apply id_o o_id})) 1))])); |
46044 | 2183 |
|
60796 | 2184 |
val cases_scheme = timeit_msg defs_ctxt "record cases_scheme proof:" (fn () => |
51551 | 2185 |
Goal.prove_sorry_global defs_thy [] [#1 cases_scheme_prop] (#2 cases_scheme_prop) |
74537 | 2186 |
(fn {context = ctxt', prems, ...} => |
2187 |
resolve_tac ctxt' prems 1 THEN |
|
2188 |
resolve_tac ctxt' [surjective] 1)); |
|
46053 | 2189 |
|
60796 | 2190 |
val cases = timeit_msg defs_ctxt "record cases proof:" (fn () => |
51551 | 2191 |
Goal.prove_sorry_global defs_thy [] [] cases_prop |
74537 | 2192 |
(fn {context = ctxt', ...} => |
2193 |
try_param_tac ctxt' rN cases_scheme 1 THEN |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51685
diff
changeset
|
2194 |
ALLGOALS (asm_full_simp_tac |
74537 | 2195 |
(put_simpset HOL_basic_ss ctxt' addsimps @{thms unit_all_eq1})))); |
46053 | 2196 |
|
60796 | 2197 |
val split_meta = timeit_msg defs_ctxt "record split_meta proof:" (fn () => |
51551 | 2198 |
Goal.prove_sorry_global defs_thy [] [] split_meta_prop |
54742
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
54707
diff
changeset
|
2199 |
(fn {context = ctxt', ...} => |
32975 | 2200 |
EVERY1 |
60752 | 2201 |
[resolve_tac ctxt' @{thms equal_intr_rule}, Goal.norm_hhf_tac ctxt', |
2202 |
eresolve_tac ctxt' @{thms meta_allE}, assume_tac ctxt', |
|
2203 |
resolve_tac ctxt' [@{thm prop_subst} OF [surjective]], |
|
2204 |
REPEAT o eresolve_tac ctxt' @{thms meta_allE}, assume_tac ctxt'])); |
|
46044 | 2205 |
|
60796 | 2206 |
val split_object = timeit_msg defs_ctxt "record split_object proof:" (fn () => |
51551 | 2207 |
Goal.prove_sorry_global defs_thy [] [] split_object_prop |
74537 | 2208 |
(fn {context = ctxt', ...} => |
2209 |
resolve_tac ctxt' [@{lemma "Trueprop A \<equiv> Trueprop B \<Longrightarrow> A = B" by (rule iffI) unfold}] 1 THEN |
|
2210 |
rewrite_goals_tac ctxt' @{thms atomize_all [symmetric]} THEN |
|
2211 |
resolve_tac ctxt' [split_meta] 1)); |
|
46044 | 2212 |
|
60796 | 2213 |
val split_ex = timeit_msg defs_ctxt "record split_ex proof:" (fn () => |
51551 | 2214 |
Goal.prove_sorry_global defs_thy [] [] split_ex_prop |
74537 | 2215 |
(fn {context = ctxt', ...} => |
46052 | 2216 |
simp_tac |
74537 | 2217 |
(put_simpset HOL_basic_ss ctxt' addsimps |
60752 | 2218 |
(@{lemma "\<exists>x. P x \<equiv> \<not> (\<forall>x. \<not> P x)" by simp} :: |
46052 | 2219 |
@{thms not_not Not_eq_iff})) 1 THEN |
74537 | 2220 |
resolve_tac ctxt' [split_object] 1)); |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2221 |
|
60796 | 2222 |
val equality = timeit_msg defs_ctxt "record equality proof:" (fn () => |
51551 | 2223 |
Goal.prove_sorry_global defs_thy [] [] equality_prop |
74537 | 2224 |
(fn {context = ctxt', ...} => |
2225 |
asm_full_simp_tac (put_simpset record_ss ctxt' addsimps (split_meta :: sel_convs)) 1)); |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2226 |
|
46055 | 2227 |
val ([(_, sel_convs'), (_, upd_convs'), (_, sel_defs'), (_, upd_defs'), |
2228 |
(_, fold_congs'), (_, unfold_congs'), |
|
2229 |
(_, splits' as [split_meta', split_object', split_ex']), (_, derived_defs'), |
|
2230 |
(_, [surjective']), (_, [equality']), (_, [induct_scheme']), (_, [induct']), |
|
2231 |
(_, [cases_scheme']), (_, [cases'])], thms_thy) = defs_thy |
|
66251
cd935b7cb3fb
proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents:
63352
diff
changeset
|
2232 |
|> Code.declare_default_eqns_global (map (rpair true) derived_defs) |
46055 | 2233 |
|> Global_Theory.note_thmss "" |
2234 |
[((Binding.name "select_convs", []), [(sel_convs, [])]), |
|
2235 |
((Binding.name "update_convs", []), [(upd_convs, [])]), |
|
2236 |
((Binding.name "select_defs", []), [(sel_defs, [])]), |
|
2237 |
((Binding.name "update_defs", []), [(upd_defs, [])]), |
|
2238 |
((Binding.name "fold_congs", []), [(fold_congs, [])]), |
|
2239 |
((Binding.name "unfold_congs", []), [(unfold_congs, [])]), |
|
2240 |
((Binding.name "splits", []), [([split_meta, split_object, split_ex], [])]), |
|
2241 |
((Binding.name "defs", []), [(derived_defs, [])]), |
|
2242 |
((Binding.name "surjective", []), [([surjective], [])]), |
|
2243 |
((Binding.name "equality", []), [([equality], [])]), |
|
2244 |
((Binding.name "induct_scheme", induct_type_global (suffix schemeN name)), |
|
2245 |
[([induct_scheme], [])]), |
|
2246 |
((Binding.name "induct", induct_type_global name), [([induct], [])]), |
|
2247 |
((Binding.name "cases_scheme", cases_type_global (suffix schemeN name)), |
|
2248 |
[([cases_scheme], [])]), |
|
2249 |
((Binding.name "cases", cases_type_global name), [([cases], [])])]; |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2250 |
|
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2251 |
val sel_upd_simps = sel_convs' @ upd_convs'; |
32743
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
2252 |
val sel_upd_defs = sel_defs' @ upd_defs'; |
c4e9a48bc50e
Initial attempt at porting record update to repository Isabelle.
tsewell@rubicon.NSW.bigpond.net.au
parents:
32335
diff
changeset
|
2253 |
val depth = parent_len + 1; |
35138 | 2254 |
|
46055 | 2255 |
val ([(_, simps'), (_, iffs')], thms_thy') = thms_thy |
2256 |
|> Global_Theory.note_thmss "" |
|
2257 |
[((Binding.name "simps", [Simplifier.simp_add]), [(sel_upd_simps, [])]), |
|
2258 |
((Binding.name "iffs", [iff_add]), [([ext_inject], [])])]; |
|
35138 | 2259 |
|
2260 |
val info = |
|
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
2261 |
make_info alphas parent fields extension |
35138 | 2262 |
ext_induct ext_inject ext_surjective ext_split ext_def |
2263 |
sel_convs' upd_convs' sel_defs' upd_defs' fold_congs' unfold_congs' splits' derived_defs' |
|
2264 |
surjective' equality' induct_scheme' induct' cases_scheme' cases' simps' iffs'; |
|
2265 |
||
2266 |
val final_thy = |
|
2267 |
thms_thy' |
|
2268 |
|> put_record name info |
|
46221
6dcb2cea827d
eliminated dead code, together with spurious warning about congruence rule for "Fun.comp";
wenzelm
parents:
46219
diff
changeset
|
2269 |
|> put_sel_upd names full_moreN depth sel_upd_simps sel_upd_defs |
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
2270 |
|> add_equalities extension_id equality' |
15015
c5768e8c4da4
* record_upd_simproc also simplifies trivial updates:
schirmer
parents:
15012
diff
changeset
|
2271 |
|> add_extinjects ext_inject |
c5768e8c4da4
* record_upd_simproc also simplifies trivial updates:
schirmer
parents:
15012
diff
changeset
|
2272 |
|> add_extsplit extension_name ext_split |
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
2273 |
|> add_splits extension_id (split_meta', split_object', split_ex', induct_scheme') |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
2274 |
|> add_extfields extension_name (fields @ [(full_moreN, moreT)]) |
43685
5c9160f420d5
clarified record syntax: fieldext excludes the "more" pseudo-field (unlike 2f885b7e5ba7), so that errors like (| x = a, more = b |) are reported less confusingly;
wenzelm
parents:
43683
diff
changeset
|
2275 |
|> add_fieldext (extension_name, snd extension) names |
38533
8d23c7403699
use extension constant as formal constructor of logical record type
haftmann
parents:
38531
diff
changeset
|
2276 |
|> add_code ext_tyco vs extT ext simps' ext_inject |
58363
a5c08cd60a3f
take out selectors for records -- for derived records, these don't quite have the right type
blanchet
parents:
58239
diff
changeset
|
2277 |
|> add_ctr_sugar (Const ext) cases_scheme' ext_inject sel_convs' |
61861 | 2278 |
|> fold add_spec_rule (sel_convs' @ upd_convs' @ derived_defs') |
60796 | 2279 |
|> Sign.restore_naming thy0; |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14643
diff
changeset
|
2280 |
|
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
2281 |
in final_thy end; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
2282 |
|
27278
129574589734
export read_typ/cert_typ -- version with regular context operations;
wenzelm
parents:
27239
diff
changeset
|
2283 |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
2284 |
(* add_record *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
2285 |
|
36151
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2286 |
local |
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2287 |
|
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2288 |
fun read_parent NONE ctxt = (NONE, ctxt) |
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2289 |
| read_parent (SOME raw_T) ctxt = |
42361 | 2290 |
(case Proof_Context.read_typ_abbrev ctxt raw_T of |
36151
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2291 |
Type (name, Ts) => (SOME (Ts, name), fold Variable.declare_typ Ts ctxt) |
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2292 |
| T => error ("Bad parent record specification: " ^ Syntax.string_of_typ ctxt T)); |
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2293 |
|
46990
63fae4a2cc65
simultaneous read_fields -- e.g. relevant for sort assignment;
wenzelm
parents:
46961
diff
changeset
|
2294 |
fun read_fields raw_fields ctxt = |
63fae4a2cc65
simultaneous read_fields -- e.g. relevant for sort assignment;
wenzelm
parents:
46961
diff
changeset
|
2295 |
let |
63fae4a2cc65
simultaneous read_fields -- e.g. relevant for sort assignment;
wenzelm
parents:
46961
diff
changeset
|
2296 |
val Ts = Syntax.read_typs ctxt (map (fn (_, raw_T, _) => raw_T) raw_fields); |
63fae4a2cc65
simultaneous read_fields -- e.g. relevant for sort assignment;
wenzelm
parents:
46961
diff
changeset
|
2297 |
val fields = map2 (fn (x, _, mx) => fn T => (x, T, mx)) raw_fields Ts; |
63fae4a2cc65
simultaneous read_fields -- e.g. relevant for sort assignment;
wenzelm
parents:
46961
diff
changeset
|
2298 |
val ctxt' = fold Variable.declare_typ Ts ctxt; |
63fae4a2cc65
simultaneous read_fields -- e.g. relevant for sort assignment;
wenzelm
parents:
46961
diff
changeset
|
2299 |
in (fields, ctxt') end; |
36151
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2300 |
|
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2301 |
in |
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2302 |
|
61260 | 2303 |
fun add_record overloaded (params, binding) raw_parent raw_fields thy = |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
2304 |
let |
42361 | 2305 |
val ctxt = Proof_Context.init_global thy; |
2306 |
fun cert_typ T = Type.no_tvars (Proof_Context.cert_typ ctxt T) |
|
36151
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2307 |
handle TYPE (msg, _, _) => error msg; |
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2308 |
|
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2309 |
|
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2310 |
(* specification *) |
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2311 |
|
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2312 |
val parent = Option.map (apfst (map cert_typ)) raw_parent |
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2313 |
handle ERROR msg => |
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2314 |
cat_error msg ("The error(s) above occurred in parent record specification"); |
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2315 |
val parent_args = (case parent of SOME (Ts, _) => Ts | NONE => []); |
41577
9a64c4007864
export Record.get_hierarchy -- external tools typically need this information;
wenzelm
parents:
41576
diff
changeset
|
2316 |
val parents = get_parent_info thy parent; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
2317 |
|
46990
63fae4a2cc65
simultaneous read_fields -- e.g. relevant for sort assignment;
wenzelm
parents:
46961
diff
changeset
|
2318 |
val bfields = |
63fae4a2cc65
simultaneous read_fields -- e.g. relevant for sort assignment;
wenzelm
parents:
46961
diff
changeset
|
2319 |
raw_fields |> map (fn (x, raw_T, mx) => (x, cert_typ raw_T, mx) |
63fae4a2cc65
simultaneous read_fields -- e.g. relevant for sort assignment;
wenzelm
parents:
46961
diff
changeset
|
2320 |
handle ERROR msg => |
63fae4a2cc65
simultaneous read_fields -- e.g. relevant for sort assignment;
wenzelm
parents:
46961
diff
changeset
|
2321 |
cat_error msg ("The error(s) above occurred in record field " ^ Binding.print x)); |
63fae4a2cc65
simultaneous read_fields -- e.g. relevant for sort assignment;
wenzelm
parents:
46961
diff
changeset
|
2322 |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
2323 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
2324 |
(* errors *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
2325 |
|
35239 | 2326 |
val name = Sign.full_name thy binding; |
17261 | 2327 |
val err_dup_record = |
38012
3ca193a6ae5a
delete structure Basic_Record; avoid `record` in names in structure Record
haftmann
parents:
37781
diff
changeset
|
2328 |
if is_none (get_info thy name) then [] |
4890 | 2329 |
else ["Duplicate definition of record " ^ quote name]; |
2330 |
||
36151
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2331 |
val spec_frees = fold Term.add_tfreesT (parent_args @ map #2 bfields) []; |
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2332 |
val err_extra_frees = |
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2333 |
(case subtract (op =) params spec_frees of |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
2334 |
[] => [] |
36151
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2335 |
| extras => ["Extra free type variable(s) " ^ |
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2336 |
commas (map (Syntax.string_of_typ ctxt o TFree) extras)]); |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
2337 |
|
4890 | 2338 |
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
|
2339 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
2340 |
val err_dup_fields = |
35136 | 2341 |
(case duplicates Binding.eq_name (map #1 bfields) of |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
2342 |
[] => [] |
42381
309ec68442c6
added Binding.print convenience, which includes quote already;
wenzelm
parents:
42375
diff
changeset
|
2343 |
| dups => ["Duplicate field(s) " ^ commas (map Binding.print dups)]); |
4890 | 2344 |
|
2345 |
val err_bad_fields = |
|
35136 | 2346 |
if forall (not_equal moreN o Binding.name_of o #1) bfields then [] |
4890 | 2347 |
else ["Illegal field name " ^ quote moreN]; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
2348 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
2349 |
val errs = |
36151
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2350 |
err_dup_record @ err_extra_frees @ err_no_fields @ err_dup_fields @ err_bad_fields; |
32761
54fee94b2b29
tuned whitespace -- recover basic Isabelle conventions;
wenzelm
parents:
32760
diff
changeset
|
2351 |
val _ = if null errs then () else error (cat_lines errs); |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
2352 |
in |
61260 | 2353 |
thy |> definition overloaded (params, binding) parent parents bfields |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
2354 |
end |
42381
309ec68442c6
added Binding.print convenience, which includes quote already;
wenzelm
parents:
42375
diff
changeset
|
2355 |
handle ERROR msg => cat_error msg ("Failed to define record " ^ Binding.print binding); |
35136 | 2356 |
|
61260 | 2357 |
fun add_record_cmd overloaded (raw_params, binding) raw_parent raw_fields thy = |
36151
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2358 |
let |
42361 | 2359 |
val ctxt = Proof_Context.init_global thy; |
36153
1ac501e16a6a
replaced slightly odd Typedecl.predeclare_constraints by plain declaration of type arguments -- also avoid "recursive" declaration of type constructor, which can cause problems with sequential definitions B.foo = A.foo;
wenzelm
parents:
36151
diff
changeset
|
2360 |
val params = map (apsnd (Typedecl.read_constraint ctxt)) raw_params; |
1ac501e16a6a
replaced slightly odd Typedecl.predeclare_constraints by plain declaration of type arguments -- also avoid "recursive" declaration of type constructor, which can cause problems with sequential definitions B.foo = A.foo;
wenzelm
parents:
36151
diff
changeset
|
2361 |
val ctxt1 = fold (Variable.declare_typ o TFree) params ctxt; |
1ac501e16a6a
replaced slightly odd Typedecl.predeclare_constraints by plain declaration of type arguments -- also avoid "recursive" declaration of type constructor, which can cause problems with sequential definitions B.foo = A.foo;
wenzelm
parents:
36151
diff
changeset
|
2362 |
val (parent, ctxt2) = read_parent raw_parent ctxt1; |
46990
63fae4a2cc65
simultaneous read_fields -- e.g. relevant for sort assignment;
wenzelm
parents:
46961
diff
changeset
|
2363 |
val (fields, ctxt3) = read_fields raw_fields ctxt2; |
42361 | 2364 |
val params' = map (Proof_Context.check_tfree ctxt3) params; |
61260 | 2365 |
in thy |> add_record overloaded (params', binding) parent fields end; |
36151
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2366 |
|
b89a2a05a3ce
modernized treatment of sort constraints in specification;
wenzelm
parents:
36137
diff
changeset
|
2367 |
end; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
2368 |
|
32335 | 2369 |
|
62117
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2370 |
(* printing *) |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2371 |
|
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2372 |
local |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2373 |
|
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2374 |
fun the_parent_recT (Type (parent, [Type (_, [unit as Type (_,[])])])) = Type (parent, [unit]) |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2375 |
| the_parent_recT (Type (extT, [T])) = Type (extT, [the_parent_recT T]) |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2376 |
| the_parent_recT T = raise TYPE ("Not a unit record scheme with parent: ", [T], []) |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2377 |
|
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2378 |
in |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2379 |
|
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2380 |
fun pretty_recT ctxt typ = |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2381 |
let |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2382 |
val thy = Proof_Context.theory_of ctxt |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2383 |
val (fs, (_, moreT)) = get_recT_fields thy typ |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2384 |
val _ = if moreT = HOLogic.unitT then () else raise TYPE ("Not a unit record scheme: ", [typ], []) |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2385 |
val parent = if length (dest_recTs typ) >= 2 then SOME (the_parent_recT typ) else NONE |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2386 |
val pfs = case parent of SOME p => fst (get_recT_fields thy p) | NONE => [] |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2387 |
val fs' = drop (length pfs) fs |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2388 |
fun pretty_field (name, typ) = Pretty.block [ |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2389 |
Syntax.pretty_term ctxt (Const (name, typ)), |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2390 |
Pretty.brk 1, |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2391 |
Pretty.str "::", |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2392 |
Pretty.brk 1, |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2393 |
Syntax.pretty_typ ctxt typ |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2394 |
] |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2395 |
in |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2396 |
Pretty.block (Library.separate (Pretty.brk 1) |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2397 |
([Pretty.keyword1 "record", Syntax.pretty_typ ctxt typ, Pretty.str "="] @ |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2398 |
(case parent of |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2399 |
SOME p => [Syntax.pretty_typ ctxt p, Pretty.str "+"] |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2400 |
| NONE => [])) @ |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2401 |
Pretty.fbrk :: |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2402 |
Pretty.fbreaks (map pretty_field fs')) |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2403 |
end |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2404 |
|
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2405 |
end |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2406 |
|
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2407 |
fun string_of_record ctxt s = |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2408 |
let |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2409 |
val T = Syntax.read_typ ctxt s |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2410 |
in |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2411 |
Pretty.string_of (pretty_recT ctxt T) |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2412 |
handle TYPE _ => error ("Unknown record: " ^ Syntax.string_of_typ ctxt T) |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2413 |
end |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2414 |
|
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2415 |
val print_record = |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2416 |
let |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2417 |
fun print_item string_of (modes, arg) = Toplevel.keep (fn state => |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2418 |
Print_Mode.with_modes modes (fn () => Output.writeln (string_of state arg)) ()); |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2419 |
in print_item (string_of_record o Toplevel.context_of) end |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2420 |
|
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2421 |
|
6358 | 2422 |
(* outer syntax *) |
2423 |
||
24867 | 2424 |
val _ = |
67149 | 2425 |
Outer_Syntax.command \<^command_keyword>\<open>record\<close> "define extensible record" |
61260 | 2426 |
(Parse_Spec.overloaded -- (Parse.type_args_constrained -- Parse.binding) -- |
67149 | 2427 |
(\<^keyword>\<open>=\<close> |-- Scan.option (Parse.typ --| \<^keyword>\<open>+\<close>) -- |
36960
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents:
36945
diff
changeset
|
2428 |
Scan.repeat1 Parse.const_binding) |
61260 | 2429 |
>> (fn ((overloaded, x), (y, z)) => |
2430 |
Toplevel.theory (add_record_cmd {overloaded = overloaded} x y z))); |
|
6358 | 2431 |
|
62117
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2432 |
val opt_modes = |
67149 | 2433 |
Scan.optional (\<^keyword>\<open>(\<close> |-- Parse.!!! (Scan.repeat1 Parse.name --| \<^keyword>\<open>)\<close>)) [] |
62117
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2434 |
|
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2435 |
val _ = |
67149 | 2436 |
Outer_Syntax.command \<^command_keyword>\<open>print_record\<close> "print record definiton" |
62117
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2437 |
(opt_modes -- Parse.typ >> print_record); |
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2438 |
|
86a31308a8e1
print_record: diagnostic printing of record definitions
kleing
parents:
61861
diff
changeset
|
2439 |
end |