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