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