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