src/HOL/Tools/datatype_abs_proofs.ML
author haftmann
Thu, 04 Dec 2008 14:43:33 +0100
changeset 28965 1de908189869
parent 28839 32d498cf7595
child 29264 4ea3358fac3f
permissions -rw-r--r--
cleaned up binding module and related code
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     1
(*  Title:      HOL/Tools/datatype_abs_proofs.ML
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     2
    ID:         $Id$
11539
0f17da240450 tuned headers;
wenzelm
parents: 11435
diff changeset
     3
    Author:     Stefan Berghofer, TU Muenchen
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     4
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     5
Proofs and defintions independent of concrete representation
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     6
of datatypes  (i.e. requiring only abstract properties such as
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     7
injectivity / distinctness of constructors and induction)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     8
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     9
 - case distinction (exhaustion) theorems
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    10
 - characteristic equations for primrec combinators
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    11
 - characteristic equations for case combinators
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    12
 - equations for splitting "P (case ...)" expressions
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24589
diff changeset
    13
  - "nchotomy" and "case_cong" theorems for TFL
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    14
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    15
*)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    16
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    17
signature DATATYPE_ABS_PROOFS =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    18
sig
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 12910
diff changeset
    19
  val prove_casedist_thms : string list ->
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 12910
diff changeset
    20
    DatatypeAux.descr list -> (string * sort) list -> thm ->
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18377
diff changeset
    21
    attribute list -> theory -> thm list * theory
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 12910
diff changeset
    22
  val prove_primrec_thms : bool -> string list ->
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 12910
diff changeset
    23
    DatatypeAux.descr list -> (string * sort) list ->
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    24
      DatatypeAux.datatype_info Symtab.table -> thm list list -> thm list list ->
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 17985
diff changeset
    25
        simpset -> thm -> theory -> (string list * thm list) * theory
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 12910
diff changeset
    26
  val prove_case_thms : bool -> string list ->
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 12910
diff changeset
    27
    DatatypeAux.descr list -> (string * sort) list ->
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 17985
diff changeset
    28
      string list -> thm list -> theory -> (thm list list * string list) * theory
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 12910
diff changeset
    29
  val prove_split_thms : string list ->
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 12910
diff changeset
    30
    DatatypeAux.descr list -> (string * sort) list ->
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    31
      thm list list -> thm list list -> thm list -> thm list list -> theory ->
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 17985
diff changeset
    32
        (thm * thm) list * theory
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 12910
diff changeset
    33
  val prove_nchotomys : string list -> DatatypeAux.descr list ->
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 17985
diff changeset
    34
    (string * sort) list -> thm list -> theory -> thm list * theory
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 12910
diff changeset
    35
  val prove_weak_case_congs : string list -> DatatypeAux.descr list ->
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 17985
diff changeset
    36
    (string * sort) list -> theory -> thm list * theory
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 12910
diff changeset
    37
  val prove_case_congs : string list ->
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 12910
diff changeset
    38
    DatatypeAux.descr list -> (string * sort) list ->
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 17985
diff changeset
    39
      thm list -> thm list list -> theory -> thm list * theory
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    40
end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    41
8436
8a87fa482baf adapted to new PureThy.add_thms etc.;
wenzelm
parents: 8305
diff changeset
    42
structure DatatypeAbsProofs: DATATYPE_ABS_PROOFS =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    43
struct
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    44
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    45
open DatatypeAux;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    46
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    47
(************************ case distinction theorems ***************************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    48
8436
8a87fa482baf adapted to new PureThy.add_thms etc.;
wenzelm
parents: 8305
diff changeset
    49
fun prove_casedist_thms new_type_names descr sorts induct case_names_exhausts thy =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    50
  let
6427
fd36b2e7d80e tuned messages;
wenzelm
parents: 6422
diff changeset
    51
    val _ = message "Proving case distinction theorems ...";
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    52
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
    53
    val descr' = List.concat descr;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    54
    val recTs = get_rec_types descr' sorts;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
    55
    val newTs = Library.take (length (hd descr), recTs);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    56
8477
17231d71171a - Fixed bug in prove_casedist_thms (proof failed because of
berghofe
parents: 8436
diff changeset
    57
    val {maxidx, ...} = rep_thm induct;
8305
93aa21ec5494 HOLogic.dest_conj;
wenzelm
parents: 7904
diff changeset
    58
    val induct_Ps = map head_of (HOLogic.dest_conj (HOLogic.dest_Trueprop (concl_of induct)));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    59
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    60
    fun prove_casedist_thm ((i, t), T) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    61
      let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    62
        val dummyPs = map (fn (Var (_, Type (_, [T', T'']))) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    63
          Abs ("z", T', Const ("True", T''))) induct_Ps;
8477
17231d71171a - Fixed bug in prove_casedist_thms (proof failed because of
berghofe
parents: 8436
diff changeset
    64
        val P = Abs ("z", T, HOLogic.imp $ HOLogic.mk_eq (Var (("a", maxidx+1), T), Bound 0) $
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    65
          Var (("P", 0), HOLogic.boolT))
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
    66
        val insts = Library.take (i, dummyPs) @ (P::(Library.drop (i + 1, dummyPs)));
17985
d5d576b72371 avoid legacy goals;
wenzelm
parents: 17959
diff changeset
    67
        val cert = cterm_of thy;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    68
        val insts' = (map cert induct_Ps) ~~ (map cert insts);
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
    69
        val induct' = refl RS ((List.nth
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
    70
          (split_conj_thm (cterm_instantiate insts' induct), i)) RSN (2, rev_mp))
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    71
17985
d5d576b72371 avoid legacy goals;
wenzelm
parents: 17959
diff changeset
    72
      in
26531
96e82c7861fa - use SkipProof.prove_global instead of Goal.prove_global
berghofe
parents: 26475
diff changeset
    73
        SkipProof.prove_global thy [] (Logic.strip_imp_prems t) (Logic.strip_imp_concl t)
26711
3a478bfa1650 prove_global: pass context;
wenzelm
parents: 26531
diff changeset
    74
          (fn {prems, ...} => EVERY
17985
d5d576b72371 avoid legacy goals;
wenzelm
parents: 17959
diff changeset
    75
            [rtac induct' 1,
d5d576b72371 avoid legacy goals;
wenzelm
parents: 17959
diff changeset
    76
             REPEAT (rtac TrueI 1),
d5d576b72371 avoid legacy goals;
wenzelm
parents: 17959
diff changeset
    77
             REPEAT ((rtac impI 1) THEN (eresolve_tac prems 1)),
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19233
diff changeset
    78
             REPEAT (rtac TrueI 1)])
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    79
      end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    80
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    81
    val casedist_thms = map prove_casedist_thm ((0 upto (length newTs - 1)) ~~
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    82
      (DatatypeProp.make_casedists descr sorts) ~~ newTs)
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 17985
diff changeset
    83
  in
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 17985
diff changeset
    84
    thy
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 17985
diff changeset
    85
    |> store_thms_atts "exhaust" new_type_names (map single case_names_exhausts) casedist_thms
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 17985
diff changeset
    86
  end;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    87
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    88
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    89
(*************************** primrec combinators ******************************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    90
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
    91
fun prove_primrec_thms flat_names new_type_names descr sorts
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6522
diff changeset
    92
    (dt_info : datatype_info Symtab.table) constr_inject dist_rewrites dist_ss induct thy =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    93
  let
6427
fd36b2e7d80e tuned messages;
wenzelm
parents: 6422
diff changeset
    94
    val _ = message "Constructing primrec combinators ...";
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
    95
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
    96
    val big_name = space_implode "_" new_type_names;
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
    97
    val thy0 = add_path flat_names big_name thy;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    98
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
    99
    val descr' = List.concat descr;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   100
    val recTs = get_rec_types descr' sorts;
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   101
    val used = foldr add_typ_tfree_names [] recTs;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
   102
    val newTs = Library.take (length (hd descr), recTs);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   103
8305
93aa21ec5494 HOLogic.dest_conj;
wenzelm
parents: 7904
diff changeset
   104
    val induct_Ps = map head_of (HOLogic.dest_conj (HOLogic.dest_Trueprop (concl_of induct)));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   105
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   106
    val big_rec_name' = big_name ^ "_rec_set";
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20071
diff changeset
   107
    val rec_set_names' =
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20071
diff changeset
   108
      if length descr' = 1 then [big_rec_name'] else
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20071
diff changeset
   109
        map ((curry (op ^) (big_rec_name' ^ "_")) o string_of_int)
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20071
diff changeset
   110
          (1 upto (length descr'));
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28839
diff changeset
   111
    val rec_set_names = map (Sign.full_bname thy0) rec_set_names';
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   112
15459
16dd63c78049 Introduced function DatatypeProp.make_primrec_Ts to avoid code duplication.
berghofe
parents: 14981
diff changeset
   113
    val (rec_result_Ts, reccomb_fn_Ts) = DatatypeProp.make_primrec_Ts descr sorts used;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   114
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20071
diff changeset
   115
    val rec_set_Ts = map (fn (T1, T2) =>
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20071
diff changeset
   116
      reccomb_fn_Ts @ [T1, T2] ---> HOLogic.boolT) (recTs ~~ rec_result_Ts);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   117
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   118
    val rec_fns = map (uncurry (mk_Free "f"))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   119
      (reccomb_fn_Ts ~~ (1 upto (length reccomb_fn_Ts)));
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20071
diff changeset
   120
    val rec_sets' = map (fn c => list_comb (Free c, rec_fns))
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20071
diff changeset
   121
      (rec_set_names' ~~ rec_set_Ts);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   122
    val rec_sets = map (fn c => list_comb (Const c, rec_fns))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   123
      (rec_set_names ~~ rec_set_Ts);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   124
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   125
    (* introduction rules for graph of primrec function *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   126
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20071
diff changeset
   127
    fun make_rec_intr T rec_set ((rec_intr_ts, l), (cname, cargs)) =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   128
      let
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6522
diff changeset
   129
        fun mk_prem ((dt, U), (j, k, prems, t1s, t2s)) =
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6522
diff changeset
   130
          let val free1 = mk_Free "x" U j
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 12910
diff changeset
   131
          in (case (strip_dtyp dt, strip_type U) of
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 12910
diff changeset
   132
             ((_, DtRec m), (Us, _)) =>
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 12910
diff changeset
   133
               let
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
   134
                 val free2 = mk_Free "y" (Us ---> List.nth (rec_result_Ts, m)) k;
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 12910
diff changeset
   135
                 val i = length Us
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 12910
diff changeset
   136
               in (j + 1, k + 1, HOLogic.mk_Trueprop (HOLogic.list_all
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20071
diff changeset
   137
                     (map (pair "x") Us, List.nth (rec_sets', m) $
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20071
diff changeset
   138
                       app_bnds free1 i $ app_bnds free2 i)) :: prems,
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   139
                   free1::t1s, free2::t2s)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   140
               end
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   141
           | _ => (j + 1, k, prems, free1::t1s, t2s))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   142
          end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   143
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   144
        val Ts = map (typ_of_dtyp descr' sorts) cargs;
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   145
        val (_, _, prems, t1s, t2s) = foldr mk_prem (1, 1, [], [], []) (cargs ~~ Ts)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   146
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20071
diff changeset
   147
      in (rec_intr_ts @ [Logic.list_implies (prems, HOLogic.mk_Trueprop
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20071
diff changeset
   148
        (rec_set $ list_comb (Const (cname, Ts ---> T), t1s) $
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20071
diff changeset
   149
          list_comb (List.nth (rec_fns, l), t1s @ t2s)))], l + 1)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   150
      end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   151
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
   152
    val (rec_intr_ts, _) = Library.foldl (fn (x, ((d, T), set_name)) =>
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
   153
      Library.foldl (make_rec_intr T set_name) (x, #3 (snd d)))
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20071
diff changeset
   154
        (([], 0), descr' ~~ recTs ~~ rec_sets');
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   155
21365
4ee8e2702241 InductivePackage.add_inductive_i: canonical argument order;
wenzelm
parents: 21291
diff changeset
   156
    val ({intrs = rec_intrs, elims = rec_elims, ...}, thy1) =
26475
3cc1e48d0ce1 eliminated quiet_mode ref of some packages (avoid CRITICAL setmp!);
wenzelm
parents: 26128
diff changeset
   157
        InductivePackage.add_inductive_global (serial_string ())
3cc1e48d0ce1 eliminated quiet_mode ref of some packages (avoid CRITICAL setmp!);
wenzelm
parents: 26128
diff changeset
   158
          {quiet_mode = ! quiet_mode, verbose = false, kind = Thm.internalK,
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28839
diff changeset
   159
            alt_name = Binding.name big_rec_name', coind = false, no_elim = false, no_ind = true,
26531
96e82c7861fa - use SkipProof.prove_global instead of Goal.prove_global
berghofe
parents: 26475
diff changeset
   160
            skip_mono = true}
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28839
diff changeset
   161
          (map (fn (s, T) => ((Binding.name s, T), NoSyn)) (rec_set_names' ~~ rec_set_Ts))
26128
fe2d24c26e0c inductive package: simplified group handling;
wenzelm
parents: 25977
diff changeset
   162
          (map dest_Free rec_fns)
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28839
diff changeset
   163
          (map (fn x => (Attrib.empty_binding, x)) rec_intr_ts) [] thy0;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   164
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   165
    (* prove uniqueness and termination of primrec combinators *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   166
6427
fd36b2e7d80e tuned messages;
wenzelm
parents: 6422
diff changeset
   167
    val _ = message "Proving termination and uniqueness of primrec functions ...";
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   168
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   169
    fun mk_unique_tac ((tac, intrs), ((((i, (tname, _, constrs)), elim), T), T')) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   170
      let
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20071
diff changeset
   171
        val distinct_tac =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   172
          (if i < length newTs then
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
   173
             full_simp_tac (HOL_ss addsimps (List.nth (dist_rewrites, i))) 1
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6522
diff changeset
   174
           else full_simp_tac dist_ss 1);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   175
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   176
        val inject = map (fn r => r RS iffD1)
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
   177
          (if i < length newTs then List.nth (constr_inject, i)
17412
e26cb20ef0cc TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17261
diff changeset
   178
            else #inject (the (Symtab.lookup dt_info tname)));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   179
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   180
        fun mk_unique_constr_tac n ((tac, intr::intrs, j), (cname, cargs)) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   181
          let
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
   182
            val k = length (List.filter is_rec_type cargs)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   183
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   184
          in (EVERY [DETERM tac,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   185
                REPEAT (etac ex1E 1), rtac ex1I 1,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   186
                DEPTH_SOLVE_1 (ares_tac [intr] 1),
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 12910
diff changeset
   187
                REPEAT_DETERM_N k (etac thin_rl 1 THEN rotate_tac 1 1),
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   188
                etac elim 1,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   189
                REPEAT_DETERM_N j distinct_tac,
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20071
diff changeset
   190
                TRY (dresolve_tac inject 1),
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   191
                REPEAT (etac conjE 1), hyp_subst_tac 1,
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 12910
diff changeset
   192
                REPEAT (EVERY [etac allE 1, dtac mp 1, atac 1]),
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   193
                TRY (hyp_subst_tac 1),
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   194
                rtac refl 1,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   195
                REPEAT_DETERM_N (n - j - 1) distinct_tac],
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   196
              intrs, j + 1)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   197
          end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   198
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
   199
        val (tac', intrs', _) = Library.foldl (mk_unique_constr_tac (length constrs))
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   200
          ((tac, intrs, 0), constrs);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   201
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   202
      in (tac', intrs') end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   203
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   204
    val rec_unique_thms =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   205
      let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   206
        val rec_unique_ts = map (fn (((set_t, T1), T2), i) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   207
          Const ("Ex1", (T2 --> HOLogic.boolT) --> HOLogic.boolT) $
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20071
diff changeset
   208
            absfree ("y", T2, set_t $ mk_Free "x" T1 i $ Free ("y", T2)))
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20071
diff changeset
   209
              (rec_sets ~~ recTs ~~ rec_result_Ts ~~ (1 upto length recTs));
17985
d5d576b72371 avoid legacy goals;
wenzelm
parents: 17959
diff changeset
   210
        val cert = cterm_of thy1
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   211
        val insts = map (fn ((i, T), t) => absfree ("x" ^ (string_of_int i), T, t))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   212
          ((1 upto length recTs) ~~ recTs ~~ rec_unique_ts);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   213
        val induct' = cterm_instantiate ((map cert induct_Ps) ~~
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   214
          (map cert insts)) induct;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
   215
        val (tac, _) = Library.foldl mk_unique_tac
23590
ad95084a5c63 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 22994
diff changeset
   216
          (((rtac induct' THEN_ALL_NEW ObjectLogic.atomize_prems_tac) 1
28839
32d498cf7595 eliminated rewrite_tac/fold_tac, which are not well-formed tactics due to change of main conclusion;
wenzelm
parents: 28524
diff changeset
   217
              THEN rewrite_goals_tac [mk_meta_eq choice_eq], rec_intrs),
10911
eb5721204b38 proper induction rule for arbitrarily branching datatype;
wenzelm
parents: 10214
diff changeset
   218
            descr' ~~ rec_elims ~~ recTs ~~ rec_result_Ts);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   219
26531
96e82c7861fa - use SkipProof.prove_global instead of Goal.prove_global
berghofe
parents: 26475
diff changeset
   220
      in split_conj_thm (SkipProof.prove_global thy1 [] []
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19233
diff changeset
   221
        (HOLogic.mk_Trueprop (mk_conj rec_unique_ts)) (K tac))
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   222
      end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   223
11435
bd1a7f53c11b replaced "Eps" by "The";
wenzelm
parents: 10911
diff changeset
   224
    val rec_total_thms = map (fn r => r RS theI') rec_unique_thms;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   225
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   226
    (* define primrec combinators *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   227
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   228
    val big_reccomb_name = (space_implode "_" new_type_names) ^ "_rec";
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28839
diff changeset
   229
    val reccomb_names = map (Sign.full_bname thy1)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   230
      (if length descr' = 1 then [big_reccomb_name] else
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   231
        (map ((curry (op ^) (big_reccomb_name ^ "_")) o string_of_int)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   232
          (1 upto (length descr'))));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   233
    val reccombs = map (fn ((name, T), T') => list_comb
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   234
      (Const (name, reccomb_fn_Ts @ [T] ---> T'), rec_fns))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   235
        (reccomb_names ~~ recTs ~~ rec_result_Ts);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   236
18358
0a733e11021a re-oriented some result tuples in PureThy
haftmann
parents: 18314
diff changeset
   237
    val (reccomb_defs, thy2) =
0a733e11021a re-oriented some result tuples in PureThy
haftmann
parents: 18314
diff changeset
   238
      thy1
24712
64ed05609568 proper Sign operations instead of Theory aliases;
wenzelm
parents: 24699
diff changeset
   239
      |> Sign.add_consts_i (map (fn ((name, T), T') =>
18358
0a733e11021a re-oriented some result tuples in PureThy
haftmann
parents: 18314
diff changeset
   240
          (Sign.base_name name, reccomb_fn_Ts @ [T] ---> T', NoSyn))
0a733e11021a re-oriented some result tuples in PureThy
haftmann
parents: 18314
diff changeset
   241
          (reccomb_names ~~ recTs ~~ rec_result_Ts))
27691
ce171cbd4b93 PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents: 26711
diff changeset
   242
      |> (PureThy.add_defs false o map Thm.no_attributes) (map (fn ((((name, comb), set), T), T') =>
18358
0a733e11021a re-oriented some result tuples in PureThy
haftmann
parents: 18314
diff changeset
   243
          ((Sign.base_name name) ^ "_def", Logic.mk_equals (comb, absfree ("x", T,
11435
bd1a7f53c11b replaced "Eps" by "The";
wenzelm
parents: 10911
diff changeset
   244
           Const ("The", (T' --> HOLogic.boolT) --> T') $ absfree ("y", T',
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20071
diff changeset
   245
             set $ Free ("x", T) $ Free ("y", T'))))))
18358
0a733e11021a re-oriented some result tuples in PureThy
haftmann
parents: 18314
diff changeset
   246
               (reccomb_names ~~ reccombs ~~ rec_sets ~~ recTs ~~ rec_result_Ts))
28361
232fcbba2e4e explicit checkpoint for low-level (global) theory operations, admits concurrent proofs;
wenzelm
parents: 28110
diff changeset
   247
      ||> parent_path flat_names
232fcbba2e4e explicit checkpoint for low-level (global) theory operations, admits concurrent proofs;
wenzelm
parents: 28110
diff changeset
   248
      ||> Theory.checkpoint;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   249
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   250
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   251
    (* prove characteristic equations for primrec combinators *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   252
6427
fd36b2e7d80e tuned messages;
wenzelm
parents: 6422
diff changeset
   253
    val _ = message "Proving characteristic theorems for primrec combinators ..."
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   254
26531
96e82c7861fa - use SkipProof.prove_global instead of Goal.prove_global
berghofe
parents: 26475
diff changeset
   255
    val rec_thms = map (fn t => SkipProof.prove_global thy2 [] [] t
17985
d5d576b72371 avoid legacy goals;
wenzelm
parents: 17959
diff changeset
   256
      (fn _ => EVERY
d5d576b72371 avoid legacy goals;
wenzelm
parents: 17959
diff changeset
   257
        [rewrite_goals_tac reccomb_defs,
d5d576b72371 avoid legacy goals;
wenzelm
parents: 17959
diff changeset
   258
         rtac the1_equality 1,
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   259
         resolve_tac rec_unique_thms 1,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   260
         resolve_tac rec_intrs 1,
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19233
diff changeset
   261
         REPEAT (rtac allI 1 ORELSE resolve_tac rec_total_thms 1)]))
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   262
           (DatatypeProp.make_primrecs new_type_names descr sorts thy2)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   263
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   264
  in
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 17985
diff changeset
   265
    thy2
24712
64ed05609568 proper Sign operations instead of Theory aliases;
wenzelm
parents: 24699
diff changeset
   266
    |> Sign.add_path (space_implode "_" new_type_names)
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
   267
    |> PureThy.add_thmss [(("recs", rec_thms), [])]
24712
64ed05609568 proper Sign operations instead of Theory aliases;
wenzelm
parents: 24699
diff changeset
   268
    ||> Sign.parent_path
28361
232fcbba2e4e explicit checkpoint for low-level (global) theory operations, admits concurrent proofs;
wenzelm
parents: 28110
diff changeset
   269
    ||> Theory.checkpoint
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 17985
diff changeset
   270
    |-> (fn thms => pair (reccomb_names, Library.flat thms))
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   271
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   272
8477
17231d71171a - Fixed bug in prove_casedist_thms (proof failed because of
berghofe
parents: 8436
diff changeset
   273
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   274
(***************************** case combinators *******************************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   275
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   276
fun prove_case_thms flat_names new_type_names descr sorts reccomb_names primrec_thms thy =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   277
  let
6427
fd36b2e7d80e tuned messages;
wenzelm
parents: 6422
diff changeset
   278
    val _ = message "Proving characteristic theorems for case combinators ...";
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   279
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   280
    val thy1 = add_path flat_names (space_implode "_" new_type_names) thy;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   281
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
   282
    val descr' = List.concat descr;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   283
    val recTs = get_rec_types descr' sorts;
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   284
    val used = foldr add_typ_tfree_names [] recTs;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
   285
    val newTs = Library.take (length (hd descr), recTs);
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 20046
diff changeset
   286
    val T' = TFree (Name.variant used "'t", HOLogic.typeS);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   287
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 12910
diff changeset
   288
    fun mk_dummyT dt = binder_types (typ_of_dtyp descr' sorts dt) ---> T';
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6522
diff changeset
   289
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   290
    val case_dummy_fns = map (fn (_, (_, _, constrs)) => map (fn (_, cargs) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   291
      let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   292
        val Ts = map (typ_of_dtyp descr' sorts) cargs;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
   293
        val Ts' = map mk_dummyT (List.filter is_rec_type cargs)
28524
644b62cf678f arbitrary is undefined
haftmann
parents: 28361
diff changeset
   294
      in Const (@{const_name undefined}, Ts @ Ts' ---> T')
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   295
      end) constrs) descr';
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   296
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28839
diff changeset
   297
    val case_names = map (fn s => Sign.full_bname thy1 (s ^ "_case")) new_type_names;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   298
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   299
    (* define case combinators via primrec combinators *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   300
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
   301
    val (case_defs, thy2) = Library.foldl (fn ((defs, thy),
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   302
      ((((i, (_, _, constrs)), T), name), recname)) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   303
        let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   304
          val (fns1, fns2) = ListPair.unzip (map (fn ((_, cargs), j) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   305
            let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   306
              val Ts = map (typ_of_dtyp descr' sorts) cargs;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
   307
              val Ts' = Ts @ map mk_dummyT (List.filter is_rec_type cargs);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   308
              val frees' = map (uncurry (mk_Free "x")) (Ts' ~~ (1 upto length Ts'));
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
   309
              val frees = Library.take (length cargs, frees');
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   310
              val free = mk_Free "f" (Ts ---> T') j
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   311
            in
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   312
             (free, list_abs_free (map dest_Free frees',
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   313
               list_comb (free, frees)))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   314
            end) (constrs ~~ (1 upto length constrs)));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   315
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   316
          val caseT = (map (snd o dest_Free) fns1) @ [T] ---> T';
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
   317
          val fns = (List.concat (Library.take (i, case_dummy_fns))) @
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
   318
            fns2 @ (List.concat (Library.drop (i + 1, case_dummy_fns)));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   319
          val reccomb = Const (recname, (map fastype_of fns) @ [T] ---> T');
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28839
diff changeset
   320
          val decl = ((Binding.name (Sign.base_name name), caseT), NoSyn);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   321
          val def = ((Sign.base_name name) ^ "_def",
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   322
            Logic.mk_equals (list_comb (Const (name, caseT), fns1),
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
   323
              list_comb (reccomb, (List.concat (Library.take (i, case_dummy_fns))) @
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
   324
                fns2 @ (List.concat (Library.drop (i + 1, case_dummy_fns))) )));
18358
0a733e11021a re-oriented some result tuples in PureThy
haftmann
parents: 18314
diff changeset
   325
          val ([def_thm], thy') =
0a733e11021a re-oriented some result tuples in PureThy
haftmann
parents: 18314
diff changeset
   326
            thy
24959
119793c84647 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24814
diff changeset
   327
            |> Sign.declare_const [] decl |> snd
27691
ce171cbd4b93 PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents: 26711
diff changeset
   328
            |> (PureThy.add_defs false o map Thm.no_attributes) [def];
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   329
8436
8a87fa482baf adapted to new PureThy.add_thms etc.;
wenzelm
parents: 8305
diff changeset
   330
        in (defs @ [def_thm], thy')
5661
6ecb6ea25f19 - Changed structure of name spaces
berghofe
parents: 5578
diff changeset
   331
        end) (([], thy1), (hd descr) ~~ newTs ~~ case_names ~~
28361
232fcbba2e4e explicit checkpoint for low-level (global) theory operations, admits concurrent proofs;
wenzelm
parents: 28110
diff changeset
   332
          (Library.take (length newTs, reccomb_names)))
232fcbba2e4e explicit checkpoint for low-level (global) theory operations, admits concurrent proofs;
wenzelm
parents: 28110
diff changeset
   333
      ||> Theory.checkpoint;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   334
26531
96e82c7861fa - use SkipProof.prove_global instead of Goal.prove_global
berghofe
parents: 26475
diff changeset
   335
    val case_thms = map (map (fn t => SkipProof.prove_global thy2 [] [] t
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19233
diff changeset
   336
      (fn _ => EVERY [rewrite_goals_tac (case_defs @ map mk_meta_eq primrec_thms), rtac refl 1])))
8477
17231d71171a - Fixed bug in prove_casedist_thms (proof failed because of
berghofe
parents: 8436
diff changeset
   337
          (DatatypeProp.make_cases new_type_names descr sorts thy2)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   338
8477
17231d71171a - Fixed bug in prove_casedist_thms (proof failed because of
berghofe
parents: 8436
diff changeset
   339
  in
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 17985
diff changeset
   340
    thy2
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 17985
diff changeset
   341
    |> parent_path flat_names
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 17985
diff changeset
   342
    |> store_thmss "cases" new_type_names case_thms
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 17985
diff changeset
   343
    |-> (fn thmss => pair (thmss, case_names))
8477
17231d71171a - Fixed bug in prove_casedist_thms (proof failed because of
berghofe
parents: 8436
diff changeset
   344
  end;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   345
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   346
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   347
(******************************* case splitting *******************************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   348
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   349
fun prove_split_thms new_type_names descr sorts constr_inject dist_rewrites
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   350
    casedist_thms case_thms thy =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   351
  let
6427
fd36b2e7d80e tuned messages;
wenzelm
parents: 6422
diff changeset
   352
    val _ = message "Proving equations for case splitting ...";
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   353
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
   354
    val descr' = List.concat descr;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   355
    val recTs = get_rec_types descr' sorts;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15459
diff changeset
   356
    val newTs = Library.take (length (hd descr), recTs);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   357
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   358
    fun prove_split_thms ((((((t1, t2), inject), dist_rewrites'),
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   359
        exhaustion), case_thms'), T) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   360
      let
17985
d5d576b72371 avoid legacy goals;
wenzelm
parents: 17959
diff changeset
   361
        val cert = cterm_of thy;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   362
        val _ $ (_ $ lhs $ _) = hd (Logic.strip_assums_hyp (hd (prems_of exhaustion)));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   363
        val exhaustion' = cterm_instantiate
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   364
          [(cert lhs, cert (Free ("x", T)))] exhaustion;
17985
d5d576b72371 avoid legacy goals;
wenzelm
parents: 17959
diff changeset
   365
        val tacf = K (EVERY [rtac exhaustion' 1, ALLGOALS (asm_simp_tac
d5d576b72371 avoid legacy goals;
wenzelm
parents: 17959
diff changeset
   366
          (HOL_ss addsimps (dist_rewrites' @ inject @ case_thms')))])
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   367
      in
26531
96e82c7861fa - use SkipProof.prove_global instead of Goal.prove_global
berghofe
parents: 26475
diff changeset
   368
        (SkipProof.prove_global thy [] [] t1 tacf,
96e82c7861fa - use SkipProof.prove_global instead of Goal.prove_global
berghofe
parents: 26475
diff changeset
   369
         SkipProof.prove_global thy [] [] t2 tacf)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   370
      end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   371
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   372
    val split_thm_pairs = map prove_split_thms
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   373
      ((DatatypeProp.make_splits new_type_names descr sorts thy) ~~ constr_inject ~~
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   374
        dist_rewrites ~~ casedist_thms ~~ case_thms ~~ newTs);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   375
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   376
    val (split_thms, split_asm_thms) = ListPair.unzip split_thm_pairs
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   377
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   378
  in
18314
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 17985
diff changeset
   379
    thy
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 17985
diff changeset
   380
    |> store_thms "split" new_type_names split_thms
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 17985
diff changeset
   381
    ||>> store_thms "split_asm" new_type_names split_asm_thms
4595eb4627fa oriented pairs theory * 'a to 'a * theory
haftmann
parents: 17985
diff changeset
   382
    |-> (fn (thms1, thms2) => pair (thms1 ~~ thms2))
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   383
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   384
8601
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8477
diff changeset
   385
fun prove_weak_case_congs new_type_names descr sorts thy =
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8477
diff changeset
   386
  let
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8477
diff changeset
   387
    fun prove_weak_case_cong t =
26531
96e82c7861fa - use SkipProof.prove_global instead of Goal.prove_global
berghofe
parents: 26475
diff changeset
   388
       SkipProof.prove_global thy [] (Logic.strip_imp_prems t) (Logic.strip_imp_concl t)
26711
3a478bfa1650 prove_global: pass context;
wenzelm
parents: 26531
diff changeset
   389
         (fn {prems, ...} => EVERY [rtac ((hd prems) RS arg_cong) 1])
8601
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8477
diff changeset
   390
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8477
diff changeset
   391
    val weak_case_congs = map prove_weak_case_cong (DatatypeProp.make_weak_case_congs
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8477
diff changeset
   392
      new_type_names descr sorts thy)
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8477
diff changeset
   393
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8477
diff changeset
   394
  in thy |> store_thms "weak_case_cong" new_type_names weak_case_congs end;
8477
17231d71171a - Fixed bug in prove_casedist_thms (proof failed because of
berghofe
parents: 8436
diff changeset
   395
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   396
(************************* additional theorems for TFL ************************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   397
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   398
fun prove_nchotomys new_type_names descr sorts casedist_thms thy =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   399
  let
6427
fd36b2e7d80e tuned messages;
wenzelm
parents: 6422
diff changeset
   400
    val _ = message "Proving additional theorems for TFL ...";
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   401
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   402
    fun prove_nchotomy (t, exhaustion) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   403
      let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   404
        (* For goal i, select the correct disjunct to attack, then prove it *)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   405
        fun tac i 0 = EVERY [TRY (rtac disjI1 i),
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   406
              hyp_subst_tac i, REPEAT (rtac exI i), rtac refl i]
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   407
          | tac i n = rtac disjI2 i THEN tac i (n - 1)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   408
      in 
26531
96e82c7861fa - use SkipProof.prove_global instead of Goal.prove_global
berghofe
parents: 26475
diff changeset
   409
        SkipProof.prove_global thy [] [] t (fn _ =>
17985
d5d576b72371 avoid legacy goals;
wenzelm
parents: 17959
diff changeset
   410
          EVERY [rtac allI 1,
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   411
           exh_tac (K exhaustion) 1,
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19233
diff changeset
   412
           ALLGOALS (fn i => tac i (i-1))])
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   413
      end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   414
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   415
    val nchotomys =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   416
      map prove_nchotomy (DatatypeProp.make_nchotomys descr sorts ~~ casedist_thms)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   417
8436
8a87fa482baf adapted to new PureThy.add_thms etc.;
wenzelm
parents: 8305
diff changeset
   418
  in thy |> store_thms "nchotomy" new_type_names nchotomys end;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   419
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   420
fun prove_case_congs new_type_names descr sorts nchotomys case_thms thy =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   421
  let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   422
    fun prove_case_cong ((t, nchotomy), case_rewrites) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   423
      let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   424
        val (Const ("==>", _) $ tm $ _) = t;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   425
        val (Const ("Trueprop", _) $ (Const ("op =", _) $ _ $ Ma)) = tm;
22578
b0eb5652f210 removed obsolete sign_of/sign_of_thm;
wenzelm
parents: 21621
diff changeset
   426
        val cert = cterm_of thy;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   427
        val nchotomy' = nchotomy RS spec;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   428
        val nchotomy'' = cterm_instantiate
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   429
          [(cert (hd (add_term_vars (concl_of nchotomy', []))), cert Ma)] nchotomy'
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   430
      in
26531
96e82c7861fa - use SkipProof.prove_global instead of Goal.prove_global
berghofe
parents: 26475
diff changeset
   431
        SkipProof.prove_global thy [] (Logic.strip_imp_prems t) (Logic.strip_imp_concl t)
26711
3a478bfa1650 prove_global: pass context;
wenzelm
parents: 26531
diff changeset
   432
          (fn {prems, ...} => 
17985
d5d576b72371 avoid legacy goals;
wenzelm
parents: 17959
diff changeset
   433
            let val simplify = asm_simp_tac (HOL_ss addsimps (prems @ case_rewrites))
d5d576b72371 avoid legacy goals;
wenzelm
parents: 17959
diff changeset
   434
            in EVERY [simp_tac (HOL_ss addsimps [hd prems]) 1,
d5d576b72371 avoid legacy goals;
wenzelm
parents: 17959
diff changeset
   435
                cut_facts_tac [nchotomy''] 1,
d5d576b72371 avoid legacy goals;
wenzelm
parents: 17959
diff changeset
   436
                REPEAT (etac disjE 1 THEN REPEAT (etac exE 1) THEN simplify 1),
d5d576b72371 avoid legacy goals;
wenzelm
parents: 17959
diff changeset
   437
                REPEAT (etac exE 1) THEN simplify 1 (* Get last disjunct *)]
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19233
diff changeset
   438
            end)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   439
      end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   440
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   441
    val case_congs = map prove_case_cong (DatatypeProp.make_case_congs
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   442
      new_type_names descr sorts thy ~~ nchotomys ~~ case_thms)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   443
8436
8a87fa482baf adapted to new PureThy.add_thms etc.;
wenzelm
parents: 8305
diff changeset
   444
  in thy |> store_thms "case_cong" new_type_names case_congs end;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   445
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   446
end;