src/HOL/Nominal/nominal_package.ML
author haftmann
Thu, 04 Jun 2009 16:11:04 +0200
changeset 31458 b1cf26f2919b
parent 30450 7655e6533209
child 31671 81e5e8ffe92f
permissions -rw-r--r--
avoid Library.foldl_map
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
     1
(*  Title:      HOL/Nominal/nominal_package.ML
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
     2
    Author:     Stefan Berghofer and Christian Urban, TU Muenchen
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
     3
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
     4
Nominal datatype package for Isabelle/HOL.
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
     5
*)
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
     6
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
     7
signature NOMINAL_PACKAGE =
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
     8
sig
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
     9
  val add_nominal_datatype : bool -> string list -> (string list * bstring * mixfix *
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents: 18067
diff changeset
    10
    (bstring * string list * mixfix) list) list -> theory -> theory
22433
400fa18e951f - Changed format of descriptor contained in nominal_datatype_info
berghofe
parents: 22311
diff changeset
    11
  type descr
21540
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    12
  type nominal_datatype_info
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    13
  val get_nominal_datatypes : theory -> nominal_datatype_info Symtab.table
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    14
  val get_nominal_datatype : theory -> string -> nominal_datatype_info option
22311
ebcd44cb8d61 Curried and exported mk_perm.
berghofe
parents: 22274
diff changeset
    15
  val mk_perm: typ list -> term -> term -> term
22529
902ed60d53a7 Exported perm_of_pair, mk_not_sym, and perm_simproc.
berghofe
parents: 22433
diff changeset
    16
  val perm_of_pair: term * term -> term
902ed60d53a7 Exported perm_of_pair, mk_not_sym, and perm_simproc.
berghofe
parents: 22433
diff changeset
    17
  val mk_not_sym: thm list -> thm list
902ed60d53a7 Exported perm_of_pair, mk_not_sym, and perm_simproc.
berghofe
parents: 22433
diff changeset
    18
  val perm_simproc: simproc
25823
5d75f4b179e2 Added function fresh_const.
berghofe
parents: 25674
diff changeset
    19
  val fresh_const: typ -> typ -> term
28373
5e2c526cfaf0 Added fresh_star_const.
berghofe
parents: 28084
diff changeset
    20
  val fresh_star_const: typ -> typ -> term
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
    21
end
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
    22
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents: 18067
diff changeset
    23
structure NominalPackage : NOMINAL_PACKAGE =
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
    24
struct
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
    25
22274
ce1459004c8d Adapted to changes in Finite_Set theory.
berghofe
parents: 22245
diff changeset
    26
val finite_emptyI = thm "finite.emptyI";
21669
c68717c16013 removed legacy ML bindings;
wenzelm
parents: 21540
diff changeset
    27
val finite_Diff = thm "finite_Diff";
c68717c16013 removed legacy ML bindings;
wenzelm
parents: 21540
diff changeset
    28
val finite_Un = thm "finite_Un";
c68717c16013 removed legacy ML bindings;
wenzelm
parents: 21540
diff changeset
    29
val Un_iff = thm "Un_iff";
c68717c16013 removed legacy ML bindings;
wenzelm
parents: 21540
diff changeset
    30
val In0_eq = thm "In0_eq";
c68717c16013 removed legacy ML bindings;
wenzelm
parents: 21540
diff changeset
    31
val In1_eq = thm "In1_eq";
c68717c16013 removed legacy ML bindings;
wenzelm
parents: 21540
diff changeset
    32
val In0_not_In1 = thm "In0_not_In1";
c68717c16013 removed legacy ML bindings;
wenzelm
parents: 21540
diff changeset
    33
val In1_not_In0 = thm "In1_not_In0";
c68717c16013 removed legacy ML bindings;
wenzelm
parents: 21540
diff changeset
    34
val Un_assoc = thm "Un_assoc";
c68717c16013 removed legacy ML bindings;
wenzelm
parents: 21540
diff changeset
    35
val Collect_disj_eq = thm "Collect_disj_eq";
c68717c16013 removed legacy ML bindings;
wenzelm
parents: 21540
diff changeset
    36
val empty_def = thm "empty_def";
24459
fd114392bca9 Got rid of large simpset in proof of characteristic equations
berghofe
parents: 24218
diff changeset
    37
val empty_iff = thm "empty_iff";
21669
c68717c16013 removed legacy ML bindings;
wenzelm
parents: 21540
diff changeset
    38
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
    39
open DatatypeAux;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents: 18067
diff changeset
    40
open NominalAtoms;
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
    41
18016
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    42
(** FIXME: DatatypePackage should export this function **)
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    43
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    44
local
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    45
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    46
fun dt_recs (DtTFree _) = []
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    47
  | dt_recs (DtType (_, dts)) = List.concat (map dt_recs dts)
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    48
  | dt_recs (DtRec i) = [i];
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    49
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    50
fun dt_cases (descr: descr) (_, args, constrs) =
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    51
  let
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30345
diff changeset
    52
    fun the_bname i = Long_Name.base_name (#1 (valOf (AList.lookup (op =) descr i)));
19133
7e84a1a3741c Adapted to Florian's recent changes to the AxClass package.
berghofe
parents: 18759
diff changeset
    53
    val bnames = map the_bname (distinct op = (List.concat (map dt_recs args)));
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30345
diff changeset
    54
  in map (fn (c, _) => space_implode "_" (Long_Name.base_name c :: bnames)) constrs end;
18016
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    55
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    56
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    57
fun induct_cases descr =
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    58
  DatatypeProp.indexify_names (List.concat (map (dt_cases descr) (map #2 descr)));
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    59
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    60
fun exhaust_cases descr i = dt_cases descr (valOf (AList.lookup (op =) descr i));
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    61
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    62
in
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    63
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    64
fun mk_case_names_induct descr = RuleCases.case_names (induct_cases descr);
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    65
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    66
fun mk_case_names_exhausts descr new =
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    67
  map (RuleCases.case_names o exhaust_cases descr o #1)
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    68
    (List.filter (fn ((_, (name, _, _))) => name mem_string new) descr);
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    69
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    70
end;
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
    71
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22812
diff changeset
    72
(* theory data *)
21540
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    73
22433
400fa18e951f - Changed format of descriptor contained in nominal_datatype_info
berghofe
parents: 22311
diff changeset
    74
type descr = (int * (string * dtyp list * (string * (dtyp list * dtyp) list) list)) list;
400fa18e951f - Changed format of descriptor contained in nominal_datatype_info
berghofe
parents: 22311
diff changeset
    75
21540
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    76
type nominal_datatype_info =
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    77
  {index : int,
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    78
   descr : descr,
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    79
   sorts : (string * sort) list,
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    80
   rec_names : string list,
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    81
   rec_rewrites : thm list,
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    82
   induction : thm,
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    83
   distinct : thm list,
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    84
   inject : thm list};
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    85
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    86
structure NominalDatatypesData = TheoryDataFun
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22812
diff changeset
    87
(
21540
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    88
  type T = nominal_datatype_info Symtab.table;
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    89
  val empty = Symtab.empty;
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    90
  val copy = I;
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    91
  val extend = I;
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    92
  fun merge _ tabs : T = Symtab.merge (K true) tabs;
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22812
diff changeset
    93
);
21540
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    94
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    95
val get_nominal_datatypes = NominalDatatypesData.get;
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    96
val put_nominal_datatypes = NominalDatatypesData.put;
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    97
val map_nominal_datatypes = NominalDatatypesData.map;
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
    98
val get_nominal_datatype = Symtab.lookup o get_nominal_datatypes;
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22812
diff changeset
    99
21540
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
   100
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
   101
(**** make datatype info ****)
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
   102
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
   103
fun make_dt_info descr sorts induct reccomb_names rec_thms
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
   104
    (((i, (_, (tname, _, _))), distinct), inject) =
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
   105
  (tname,
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
   106
   {index = i,
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
   107
    descr = descr,
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
   108
    sorts = sorts,
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
   109
    rec_names = reccomb_names,
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
   110
    rec_rewrites = rec_thms,
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
   111
    induction = induct,
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
   112
    distinct = distinct,
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
   113
    inject = inject});
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
   114
18016
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
   115
(*******************************)
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
   116
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   117
val (_ $ (_ $ (_ $ (distinct_f $ _) $ _))) = hd (prems_of distinct_lemma);
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   118
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   119
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   120
(** simplification procedure for sorting permutations **)
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   121
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   122
val dj_cp = thm "dj_cp";
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   123
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   124
fun dest_permT (Type ("fun", [Type ("List.list", [Type ("*", [T, _])]),
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   125
      Type ("fun", [_, U])])) = (T, U);
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   126
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
   127
fun permTs_of (Const ("Nominal.perm", T) $ t $ u) = fst (dest_permT T) :: permTs_of u
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   128
  | permTs_of _ = [];
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   129
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
   130
fun perm_simproc' thy ss (Const ("Nominal.perm", T) $ t $ (u as Const ("Nominal.perm", U) $ r $ s)) =
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   131
      let
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   132
        val (aT as Type (a, []), S) = dest_permT T;
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   133
        val (bT as Type (b, []), _) = dest_permT U
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   134
      in if aT mem permTs_of u andalso aT <> bT then
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   135
          let
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   136
            val cp = cp_inst_of thy a b;
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   137
            val dj = dj_thm_of thy b a;
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   138
            val dj_cp' = [cp, dj] MRS dj_cp;
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   139
            val cert = SOME o cterm_of thy
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   140
          in
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   141
            SOME (mk_meta_eq (Drule.instantiate' [SOME (ctyp_of thy S)]
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   142
              [cert t, cert r, cert s] dj_cp'))
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   143
          end
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   144
        else NONE
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   145
      end
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   146
  | perm_simproc' thy ss _ = NONE;
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   147
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   148
val perm_simproc =
25985
8d69087f6a4b avoid redundant escaping of Isabelle symbols;
wenzelm
parents: 25977
diff changeset
   149
  Simplifier.simproc (the_context ()) "perm_simp" ["pi1 \<bullet> (pi2 \<bullet> x)"] perm_simproc';
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   150
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   151
val meta_spec = thm "meta_spec";
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
   152
18582
4f4cc426b440 provide projections of induct_weak, induct_unsafe;
wenzelm
parents: 18579
diff changeset
   153
fun projections rule =
19874
cc4b2b882e4c ProjectRule now context dependent;
wenzelm
parents: 19851
diff changeset
   154
  ProjectRule.projections (ProofContext.init (Thm.theory_of_thm rule)) rule
18582
4f4cc426b440 provide projections of induct_weak, induct_unsafe;
wenzelm
parents: 18579
diff changeset
   155
  |> map (standard #> RuleCases.save rule);
4f4cc426b440 provide projections of induct_weak, induct_unsafe;
wenzelm
parents: 18579
diff changeset
   156
20267
1154363129be Additional freshness constraints for FCB.
berghofe
parents: 20179
diff changeset
   157
val supp_prod = thm "supp_prod";
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
   158
val fresh_prod = thm "fresh_prod";
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
   159
val supports_fresh = thm "supports_fresh";
22812
1fe9d6384b11 eliminated unnamed infixes;
wenzelm
parents: 22675
diff changeset
   160
val supports_def = thm "Nominal.supports_def";
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
   161
val fresh_def = thm "fresh_def";
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
   162
val supp_def = thm "supp_def";
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
   163
val rev_simps = thms "rev.simps";
23029
79ee75dc1e59 constant op @ now named append
haftmann
parents: 22846
diff changeset
   164
val app_simps = thms "append.simps";
25951
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
   165
val at_fin_set_supp = thm "at_fin_set_supp";
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
   166
val at_fin_set_fresh = thm "at_fin_set_fresh";
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
   167
val abs_fun_eq1 = thm "abs_fun_eq1";
20267
1154363129be Additional freshness constraints for FCB.
berghofe
parents: 20179
diff changeset
   168
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   169
val collect_simp = rewrite_rule [mk_meta_eq mem_Collect_eq];
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   170
22311
ebcd44cb8d61 Curried and exported mk_perm.
berghofe
parents: 22274
diff changeset
   171
fun mk_perm Ts t u =
ebcd44cb8d61 Curried and exported mk_perm.
berghofe
parents: 22274
diff changeset
   172
  let
ebcd44cb8d61 Curried and exported mk_perm.
berghofe
parents: 22274
diff changeset
   173
    val T = fastype_of1 (Ts, t);
ebcd44cb8d61 Curried and exported mk_perm.
berghofe
parents: 22274
diff changeset
   174
    val U = fastype_of1 (Ts, u)
ebcd44cb8d61 Curried and exported mk_perm.
berghofe
parents: 22274
diff changeset
   175
  in Const ("Nominal.perm", T --> U --> U) $ t $ u end;
ebcd44cb8d61 Curried and exported mk_perm.
berghofe
parents: 22274
diff changeset
   176
22529
902ed60d53a7 Exported perm_of_pair, mk_not_sym, and perm_simproc.
berghofe
parents: 22433
diff changeset
   177
fun perm_of_pair (x, y) =
902ed60d53a7 Exported perm_of_pair, mk_not_sym, and perm_simproc.
berghofe
parents: 22433
diff changeset
   178
  let
902ed60d53a7 Exported perm_of_pair, mk_not_sym, and perm_simproc.
berghofe
parents: 22433
diff changeset
   179
    val T = fastype_of x;
902ed60d53a7 Exported perm_of_pair, mk_not_sym, and perm_simproc.
berghofe
parents: 22433
diff changeset
   180
    val pT = mk_permT T
902ed60d53a7 Exported perm_of_pair, mk_not_sym, and perm_simproc.
berghofe
parents: 22433
diff changeset
   181
  in Const ("List.list.Cons", HOLogic.mk_prodT (T, T) --> pT --> pT) $
902ed60d53a7 Exported perm_of_pair, mk_not_sym, and perm_simproc.
berghofe
parents: 22433
diff changeset
   182
    HOLogic.mk_prod (x, y) $ Const ("List.list.Nil", pT)
902ed60d53a7 Exported perm_of_pair, mk_not_sym, and perm_simproc.
berghofe
parents: 22433
diff changeset
   183
  end;
902ed60d53a7 Exported perm_of_pair, mk_not_sym, and perm_simproc.
berghofe
parents: 22433
diff changeset
   184
902ed60d53a7 Exported perm_of_pair, mk_not_sym, and perm_simproc.
berghofe
parents: 22433
diff changeset
   185
fun mk_not_sym ths = maps (fn th => case prop_of th of
25951
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
   186
    _ $ (Const ("Not", _) $ (Const ("op =", _) $ _ $ _)) => [th, th RS not_sym]
22529
902ed60d53a7 Exported perm_of_pair, mk_not_sym, and perm_simproc.
berghofe
parents: 22433
diff changeset
   187
  | _ => [th]) ths;
902ed60d53a7 Exported perm_of_pair, mk_not_sym, and perm_simproc.
berghofe
parents: 22433
diff changeset
   188
25823
5d75f4b179e2 Added function fresh_const.
berghofe
parents: 25674
diff changeset
   189
fun fresh_const T U = Const ("Nominal.fresh", T --> U --> HOLogic.boolT);
28373
5e2c526cfaf0 Added fresh_star_const.
berghofe
parents: 28084
diff changeset
   190
fun fresh_star_const T U =
5e2c526cfaf0 Added fresh_star_const.
berghofe
parents: 28084
diff changeset
   191
  Const ("Nominal.fresh_star", HOLogic.mk_setT T --> U --> HOLogic.boolT);
25823
5d75f4b179e2 Added function fresh_const.
berghofe
parents: 25674
diff changeset
   192
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   193
fun gen_add_nominal_datatype prep_typ err flat_names new_type_names dts thy =
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   194
  let
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   195
    (* this theory is used just for parsing *)
21365
4ee8e2702241 InductivePackage.add_inductive_i: canonical argument order;
wenzelm
parents: 21291
diff changeset
   196
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   197
    val tmp_thy = thy |>
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   198
      Theory.copy |>
24712
64ed05609568 proper Sign operations instead of Theory aliases;
wenzelm
parents: 24459
diff changeset
   199
      Sign.add_types (map (fn (tvs, tname, mx, _) =>
30345
76fd85bbf139 more uniform handling of binding in packages;
wenzelm
parents: 30307
diff changeset
   200
        (Binding.name tname, length tvs, mx)) dts);
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   201
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   202
    val atoms = atoms_of thy;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   203
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   204
    fun prep_constr ((constrs, sorts), (cname, cargs, mx)) =
22578
b0eb5652f210 removed obsolete sign_of/sign_of_thm;
wenzelm
parents: 22543
diff changeset
   205
      let val (cargs', sorts') = Library.foldl (prep_typ tmp_thy) (([], sorts), cargs)
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   206
      in (constrs @ [(cname, cargs', mx)], sorts') end
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   207
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   208
    fun prep_dt_spec ((dts, sorts), (tvs, tname, mx, constrs)) =
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   209
      let val (constrs', sorts') = Library.foldl prep_constr (([], sorts), constrs)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   210
      in (dts @ [(tvs, tname, mx, constrs')], sorts') end
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   211
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   212
    val (dts', sorts) = Library.foldl prep_dt_spec (([], []), dts);
28736
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
   213
    val tyvars = map (map (fn s =>
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
   214
      (s, the (AList.lookup (op =) sorts s))) o #1) dts';
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   215
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   216
    fun inter_sort thy S S' = Type.inter_sort (Sign.tsig_of thy) (S, S');
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   217
    fun augment_sort_typ thy S =
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   218
      let val S = Sign.certify_sort thy S
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   219
      in map_type_tfree (fn (s, S') => TFree (s,
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   220
        if member (op = o apsnd fst) sorts s then inter_sort thy S S' else S'))
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   221
      end;
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   222
    fun augment_sort thy S = map_types (augment_sort_typ thy S);
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   223
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   224
    val types_syntax = map (fn (tvs, tname, mx, constrs) => (tname, mx)) dts';
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   225
    val constr_syntax = map (fn (tvs, tname, mx, constrs) =>
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   226
      map (fn (cname, cargs, mx) => (cname, mx)) constrs) dts';
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   227
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   228
    val ps = map (fn (_, n, _, _) =>
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28736
diff changeset
   229
      (Sign.full_bname tmp_thy n, Sign.full_bname tmp_thy (n ^ "_Rep"))) dts;
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   230
    val rps = map Library.swap ps;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   231
21365
4ee8e2702241 InductivePackage.add_inductive_i: canonical argument order;
wenzelm
parents: 21291
diff changeset
   232
    fun replace_types (Type ("Nominal.ABS", [T, U])) =
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
   233
          Type ("fun", [T, Type ("Nominal.noption", [replace_types U])])
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   234
      | replace_types (Type (s, Ts)) =
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   235
          Type (getOpt (AList.lookup op = ps s, s), map replace_types Ts)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   236
      | replace_types T = T;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   237
30345
76fd85bbf139 more uniform handling of binding in packages;
wenzelm
parents: 30307
diff changeset
   238
    val dts'' = map (fn (tvs, tname, mx, constrs) => (tvs, Binding.name (tname ^ "_Rep"), NoSyn,
76fd85bbf139 more uniform handling of binding in packages;
wenzelm
parents: 30307
diff changeset
   239
      map (fn (cname, cargs, mx) => (Binding.name (cname ^ "_Rep"),
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   240
        map replace_types cargs, NoSyn)) constrs)) dts';
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   241
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   242
    val new_type_names' = map (fn n => n ^ "_Rep") new_type_names;
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28736
diff changeset
   243
    val full_new_type_names' = map (Sign.full_bname thy) new_type_names';
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   244
18045
6d69a4190eb2 1) have adjusted the swapping of the result type
urbanc
parents: 18017
diff changeset
   245
    val ({induction, ...},thy1) =
27112
661a74bafeb7 polished interface of datatype package
haftmann
parents: 26969
diff changeset
   246
      DatatypePackage.add_datatype err flat_names new_type_names' dts'' thy;
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   247
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   248
    val SOME {descr, ...} = Symtab.lookup
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   249
      (DatatypePackage.get_datatypes thy1) (hd full_new_type_names');
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   250
    fun nth_dtyp i = typ_of_dtyp descr sorts (DtRec i);
18107
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
   251
26651
e630c789ef2b overloading perm: use big_name;
wenzelm
parents: 26646
diff changeset
   252
    val big_name = space_implode "_" new_type_names;
e630c789ef2b overloading perm: use big_name;
wenzelm
parents: 26646
diff changeset
   253
e630c789ef2b overloading perm: use big_name;
wenzelm
parents: 26646
diff changeset
   254
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   255
    (**** define permutation functions ****)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   256
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   257
    val permT = mk_permT (TFree ("'x", HOLogic.typeS));
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   258
    val pi = Free ("pi", permT);
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   259
    val perm_types = map (fn (i, _) =>
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   260
      let val T = nth_dtyp i
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   261
      in permT --> T --> T end) descr;
26680
18ff77116937 Adapted to new primrec package.
berghofe
parents: 26663
diff changeset
   262
    val perm_names' = DatatypeProp.indexify_names (map (fn (i, _) =>
18ff77116937 Adapted to new primrec package.
berghofe
parents: 26663
diff changeset
   263
      "perm_" ^ name_of_typ (nth_dtyp i)) descr);
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
   264
    val perm_names = replicate (length new_type_names) "Nominal.perm" @
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28736
diff changeset
   265
      map (Sign.full_bname thy1) (List.drop (perm_names', length new_type_names));
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   266
    val perm_names_types = perm_names ~~ perm_types;
26680
18ff77116937 Adapted to new primrec package.
berghofe
parents: 26663
diff changeset
   267
    val perm_names_types' = perm_names' ~~ perm_types;
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   268
26680
18ff77116937 Adapted to new primrec package.
berghofe
parents: 26663
diff changeset
   269
    val perm_eqs = maps (fn (i, (_, _, constrs)) =>
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   270
      let val T = nth_dtyp i
21365
4ee8e2702241 InductivePackage.add_inductive_i: canonical argument order;
wenzelm
parents: 21291
diff changeset
   271
      in map (fn (cname, dts) =>
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   272
        let
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   273
          val Ts = map (typ_of_dtyp descr sorts) dts;
28641
f6e1b2beb766 Names of variables in perm_eqs are now chosen more carefully to avoid
berghofe
parents: 28373
diff changeset
   274
          val names = Name.variant_list ["pi"] (DatatypeProp.make_tnames Ts);
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   275
          val args = map Free (names ~~ Ts);
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   276
          val c = Const (cname, Ts ---> T);
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   277
          fun perm_arg (dt, x) =
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   278
            let val T = type_of x
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   279
            in if is_rec_type dt then
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   280
                let val (Us, _) = strip_type T
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   281
                in list_abs (map (pair "x") Us,
26680
18ff77116937 Adapted to new primrec package.
berghofe
parents: 26663
diff changeset
   282
                  Free (nth perm_names_types' (body_index dt)) $ pi $
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   283
                    list_comb (x, map (fn (i, U) =>
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
   284
                      Const ("Nominal.perm", permT --> U --> U) $
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   285
                        (Const ("List.rev", permT --> permT) $ pi) $
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   286
                        Bound i) ((length Us - 1 downto 0) ~~ Us)))
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   287
                end
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
   288
              else Const ("Nominal.perm", permT --> T --> T) $ pi $ x
21365
4ee8e2702241 InductivePackage.add_inductive_i: canonical argument order;
wenzelm
parents: 21291
diff changeset
   289
            end;
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   290
        in
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28736
diff changeset
   291
          (Attrib.empty_binding, HOLogic.mk_Trueprop (HOLogic.mk_eq
26680
18ff77116937 Adapted to new primrec package.
berghofe
parents: 26663
diff changeset
   292
            (Free (nth perm_names_types' i) $
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   293
               Free ("pi", mk_permT (TFree ("'x", HOLogic.typeS))) $
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   294
               list_comb (c, args),
26680
18ff77116937 Adapted to new primrec package.
berghofe
parents: 26663
diff changeset
   295
             list_comb (c, map perm_arg (dts ~~ args)))))
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   296
        end) constrs
26680
18ff77116937 Adapted to new primrec package.
berghofe
parents: 26663
diff changeset
   297
      end) descr;
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   298
26689
105031879f4a Auxiliary permutation functions are no longer declared using add_consts_i,
berghofe
parents: 26680
diff changeset
   299
    val (perm_simps, thy2) =
26680
18ff77116937 Adapted to new primrec package.
berghofe
parents: 26663
diff changeset
   300
      PrimrecPackage.add_primrec_overloaded
26689
105031879f4a Auxiliary permutation functions are no longer declared using add_consts_i,
berghofe
parents: 26680
diff changeset
   301
        (map (fn (s, sT) => (s, sT, false))
105031879f4a Auxiliary permutation functions are no longer declared using add_consts_i,
berghofe
parents: 26680
diff changeset
   302
           (List.take (perm_names' ~~ perm_names_types, length new_type_names)))
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28736
diff changeset
   303
        (map (fn s => (Binding.name s, NONE, NoSyn)) perm_names') perm_eqs thy1;
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   304
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   305
    (**** prove that permutation functions introduced by unfolding are ****)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   306
    (**** equivalent to already existing permutation functions         ****)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   307
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   308
    val _ = warning ("length descr: " ^ string_of_int (length descr));
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   309
    val _ = warning ("length new_type_names: " ^ string_of_int (length new_type_names));
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   310
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   311
    val perm_indnames = DatatypeProp.make_tnames (map body_type perm_types);
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   312
    val perm_fun_def = PureThy.get_thm thy2 "perm_fun_def";
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   313
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   314
    val unfolded_perm_eq_thms =
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   315
      if length descr = length new_type_names then []
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   316
      else map standard (List.drop (split_conj_thm
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19985
diff changeset
   317
        (Goal.prove_global thy2 [] []
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   318
          (HOLogic.mk_Trueprop (foldr1 HOLogic.mk_conj
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   319
            (map (fn (c as (s, T), x) =>
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   320
               let val [T1, T2] = binder_types T
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   321
               in HOLogic.mk_eq (Const c $ pi $ Free (x, T2),
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
   322
                 Const ("Nominal.perm", T) $ pi $ Free (x, T2))
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   323
               end)
18010
c885c93a9324 Removed legacy prove_goalw_cterm command.
berghofe
parents: 17874
diff changeset
   324
             (perm_names_types ~~ perm_indnames))))
c885c93a9324 Removed legacy prove_goalw_cterm command.
berghofe
parents: 17874
diff changeset
   325
          (fn _ => EVERY [indtac induction perm_indnames 1,
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   326
            ALLGOALS (asm_full_simp_tac
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   327
              (simpset_of thy2 addsimps [perm_fun_def]))])),
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   328
        length new_type_names));
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   329
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   330
    (**** prove [] \<bullet> t = t ****)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   331
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   332
    val _ = warning "perm_empty_thms";
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   333
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   334
    val perm_empty_thms = List.concat (map (fn a =>
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   335
      let val permT = mk_permT (Type (a, []))
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   336
      in map standard (List.take (split_conj_thm
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19985
diff changeset
   337
        (Goal.prove_global thy2 [] []
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   338
          (augment_sort thy2 [pt_class_of thy2 a]
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   339
            (HOLogic.mk_Trueprop (foldr1 HOLogic.mk_conj
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   340
              (map (fn ((s, T), x) => HOLogic.mk_eq
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   341
                  (Const (s, permT --> T --> T) $
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   342
                     Const ("List.list.Nil", permT) $ Free (x, T),
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   343
                   Free (x, T)))
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   344
               (perm_names ~~
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   345
                map body_type perm_types ~~ perm_indnames)))))
18010
c885c93a9324 Removed legacy prove_goalw_cterm command.
berghofe
parents: 17874
diff changeset
   346
          (fn _ => EVERY [indtac induction perm_indnames 1,
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   347
            ALLGOALS (asm_full_simp_tac (simpset_of thy2))])),
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   348
        length new_type_names))
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   349
      end)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   350
      atoms);
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   351
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   352
    (**** prove (pi1 @ pi2) \<bullet> t = pi1 \<bullet> (pi2 \<bullet> t) ****)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   353
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   354
    val _ = warning "perm_append_thms";
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   355
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   356
    (*FIXME: these should be looked up statically*)
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   357
    val at_pt_inst = PureThy.get_thm thy2 "at_pt_inst";
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   358
    val pt2 = PureThy.get_thm thy2 "pt2";
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   359
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   360
    val perm_append_thms = List.concat (map (fn a =>
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   361
      let
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   362
        val permT = mk_permT (Type (a, []));
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   363
        val pi1 = Free ("pi1", permT);
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   364
        val pi2 = Free ("pi2", permT);
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   365
        val pt_inst = pt_inst_of thy2 a;
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   366
        val pt2' = pt_inst RS pt2;
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30345
diff changeset
   367
        val pt2_ax = PureThy.get_thm thy2 (Long_Name.map_base_name (fn s => "pt_" ^ s ^ "2") a);
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   368
      in List.take (map standard (split_conj_thm
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19985
diff changeset
   369
        (Goal.prove_global thy2 [] []
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   370
           (augment_sort thy2 [pt_class_of thy2 a]
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   371
             (HOLogic.mk_Trueprop (foldr1 HOLogic.mk_conj
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   372
                (map (fn ((s, T), x) =>
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   373
                    let val perm = Const (s, permT --> T --> T)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   374
                    in HOLogic.mk_eq
23029
79ee75dc1e59 constant op @ now named append
haftmann
parents: 22846
diff changeset
   375
                      (perm $ (Const ("List.append", permT --> permT --> permT) $
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   376
                         pi1 $ pi2) $ Free (x, T),
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   377
                       perm $ pi1 $ (perm $ pi2 $ Free (x, T)))
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   378
                    end)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   379
                  (perm_names ~~
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   380
                   map body_type perm_types ~~ perm_indnames)))))
18010
c885c93a9324 Removed legacy prove_goalw_cterm command.
berghofe
parents: 17874
diff changeset
   381
           (fn _ => EVERY [indtac induction perm_indnames 1,
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   382
              ALLGOALS (asm_full_simp_tac (simpset_of thy2 addsimps [pt2', pt2_ax]))]))),
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   383
         length new_type_names)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   384
      end) atoms);
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   385
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   386
    (**** prove pi1 ~ pi2 ==> pi1 \<bullet> t = pi2 \<bullet> t ****)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   387
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   388
    val _ = warning "perm_eq_thms";
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   389
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   390
    val pt3 = PureThy.get_thm thy2 "pt3";
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   391
    val pt3_rev = PureThy.get_thm thy2 "pt3_rev";
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   392
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   393
    val perm_eq_thms = List.concat (map (fn a =>
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   394
      let
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   395
        val permT = mk_permT (Type (a, []));
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   396
        val pi1 = Free ("pi1", permT);
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   397
        val pi2 = Free ("pi2", permT);
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   398
        val at_inst = at_inst_of thy2 a;
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   399
        val pt_inst = pt_inst_of thy2 a;
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   400
        val pt3' = pt_inst RS pt3;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   401
        val pt3_rev' = at_inst RS (pt_inst RS pt3_rev);
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30345
diff changeset
   402
        val pt3_ax = PureThy.get_thm thy2 (Long_Name.map_base_name (fn s => "pt_" ^ s ^ "3") a);
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   403
      in List.take (map standard (split_conj_thm
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   404
        (Goal.prove_global thy2 [] []
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   405
          (augment_sort thy2 [pt_class_of thy2 a] (Logic.mk_implies
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
   406
             (HOLogic.mk_Trueprop (Const ("Nominal.prm_eq",
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   407
                permT --> permT --> HOLogic.boolT) $ pi1 $ pi2),
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   408
              HOLogic.mk_Trueprop (foldr1 HOLogic.mk_conj
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   409
                (map (fn ((s, T), x) =>
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   410
                    let val perm = Const (s, permT --> T --> T)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   411
                    in HOLogic.mk_eq
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   412
                      (perm $ pi1 $ Free (x, T),
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   413
                       perm $ pi2 $ Free (x, T))
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   414
                    end)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   415
                  (perm_names ~~
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   416
                   map body_type perm_types ~~ perm_indnames))))))
18010
c885c93a9324 Removed legacy prove_goalw_cterm command.
berghofe
parents: 17874
diff changeset
   417
           (fn _ => EVERY [indtac induction perm_indnames 1,
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   418
              ALLGOALS (asm_full_simp_tac (simpset_of thy2 addsimps [pt3', pt3_rev', pt3_ax]))]))),
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   419
         length new_type_names)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   420
      end) atoms);
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   421
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   422
    (**** prove pi1 \<bullet> (pi2 \<bullet> t) = (pi1 \<bullet> pi2) \<bullet> (pi1 \<bullet> t) ****)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   423
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   424
    val cp1 = PureThy.get_thm thy2 "cp1";
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   425
    val dj_cp = PureThy.get_thm thy2 "dj_cp";
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   426
    val pt_perm_compose = PureThy.get_thm thy2 "pt_perm_compose";
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   427
    val pt_perm_compose_rev = PureThy.get_thm thy2 "pt_perm_compose_rev";
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   428
    val dj_perm_perm_forget = PureThy.get_thm thy2 "dj_perm_perm_forget";
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   429
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   430
    fun composition_instance name1 name2 thy =
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   431
      let
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   432
        val cp_class = cp_class_of thy name1 name2;
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   433
        val pt_class =
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   434
          if name1 = name2 then [pt_class_of thy name1]
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   435
          else [];
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   436
        val permT1 = mk_permT (Type (name1, []));
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   437
        val permT2 = mk_permT (Type (name2, []));
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   438
        val Ts = map body_type perm_types;
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   439
        val cp_inst = cp_inst_of thy name1 name2;
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   440
        val simps = simpset_of thy addsimps (perm_fun_def ::
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   441
          (if name1 <> name2 then
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   442
             let val dj = dj_thm_of thy name2 name1
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   443
             in [dj RS (cp_inst RS dj_cp), dj RS dj_perm_perm_forget] end
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   444
           else
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   445
             let
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   446
               val at_inst = at_inst_of thy name1;
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   447
               val pt_inst = pt_inst_of thy name1;
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   448
             in
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   449
               [cp_inst RS cp1 RS sym,
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   450
                at_inst RS (pt_inst RS pt_perm_compose) RS sym,
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   451
                at_inst RS (pt_inst RS pt_perm_compose_rev) RS sym]
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   452
            end))
28736
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
   453
        val sort = Sign.certify_sort thy (cp_class :: pt_class);
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19985
diff changeset
   454
        val thms = split_conj_thm (Goal.prove_global thy [] []
28736
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
   455
          (augment_sort thy sort
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   456
            (HOLogic.mk_Trueprop (foldr1 HOLogic.mk_conj
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   457
              (map (fn ((s, T), x) =>
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   458
                  let
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   459
                    val pi1 = Free ("pi1", permT1);
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   460
                    val pi2 = Free ("pi2", permT2);
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   461
                    val perm1 = Const (s, permT1 --> T --> T);
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   462
                    val perm2 = Const (s, permT2 --> T --> T);
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
   463
                    val perm3 = Const ("Nominal.perm", permT1 --> permT2 --> permT2)
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   464
                  in HOLogic.mk_eq
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   465
                    (perm1 $ pi1 $ (perm2 $ pi2 $ Free (x, T)),
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   466
                     perm2 $ (perm3 $ pi1 $ pi2) $ (perm1 $ pi1 $ Free (x, T)))
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   467
                  end)
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   468
                (perm_names ~~ Ts ~~ perm_indnames)))))
18010
c885c93a9324 Removed legacy prove_goalw_cterm command.
berghofe
parents: 17874
diff changeset
   469
          (fn _ => EVERY [indtac induction perm_indnames 1,
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19985
diff changeset
   470
             ALLGOALS (asm_full_simp_tac simps)]))
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   471
      in
28736
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
   472
        fold (fn (s, tvs) => fn thy => AxClass.prove_arity
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
   473
            (s, map (inter_sort thy sort o snd) tvs, [cp_class])
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents: 24110
diff changeset
   474
            (Class.intro_classes_tac [] THEN ALLGOALS (resolve_tac thms)) thy)
28736
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
   475
          (full_new_type_names' ~~ tyvars) thy
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   476
      end;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   477
18381
246807ef6dfb changed the types in accordance with Florian's changes
urbanc
parents: 18366
diff changeset
   478
    val (perm_thmss,thy3) = thy2 |>
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   479
      fold (fn name1 => fold (composition_instance name1) atoms) atoms |>
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   480
      fold (fn atom => fn thy =>
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   481
        let val pt_name = pt_class_of thy atom
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   482
        in
28736
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
   483
          fold (fn (s, tvs) => fn thy => AxClass.prove_arity
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
   484
              (s, map (inter_sort thy [pt_name] o snd) tvs, [pt_name])
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   485
              (EVERY
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   486
                [Class.intro_classes_tac [],
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   487
                 resolve_tac perm_empty_thms 1,
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   488
                 resolve_tac perm_append_thms 1,
28736
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
   489
                 resolve_tac perm_eq_thms 1, assume_tac 1]) thy)
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
   490
            (full_new_type_names' ~~ tyvars) thy
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   491
        end) atoms |>
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   492
      PureThy.add_thmss
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29389
diff changeset
   493
        [((Binding.name (space_implode "_" new_type_names ^ "_unfolded_perm_eq"),
18759
2f55e3e47355 Updated to Isabelle 2006-01-23
krauss
parents: 18707
diff changeset
   494
          unfolded_perm_eq_thms), [Simplifier.simp_add]),
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29389
diff changeset
   495
         ((Binding.name (space_implode "_" new_type_names ^ "_perm_empty"),
18759
2f55e3e47355 Updated to Isabelle 2006-01-23
krauss
parents: 18707
diff changeset
   496
          perm_empty_thms), [Simplifier.simp_add]),
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29389
diff changeset
   497
         ((Binding.name (space_implode "_" new_type_names ^ "_perm_append"),
18759
2f55e3e47355 Updated to Isabelle 2006-01-23
krauss
parents: 18707
diff changeset
   498
          perm_append_thms), [Simplifier.simp_add]),
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29389
diff changeset
   499
         ((Binding.name (space_implode "_" new_type_names ^ "_perm_eq"),
18759
2f55e3e47355 Updated to Isabelle 2006-01-23
krauss
parents: 18707
diff changeset
   500
          perm_eq_thms), [Simplifier.simp_add])];
21365
4ee8e2702241 InductivePackage.add_inductive_i: canonical argument order;
wenzelm
parents: 21291
diff changeset
   501
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   502
    (**** Define representing sets ****)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   503
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   504
    val _ = warning "representing sets";
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   505
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   506
    val rep_set_names = DatatypeProp.indexify_names
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   507
      (map (fn (i, _) => name_of_typ (nth_dtyp i) ^ "_set") descr);
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   508
    val big_rep_name =
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   509
      space_implode "_" (DatatypeProp.indexify_names (List.mapPartial
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
   510
        (fn (i, ("Nominal.noption", _, _)) => NONE
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   511
          | (i, _) => SOME (name_of_typ (nth_dtyp i))) descr)) ^ "_set";
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   512
    val _ = warning ("big_rep_name: " ^ big_rep_name);
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   513
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   514
    fun strip_option (dtf as DtType ("fun", [dt, DtRec i])) =
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   515
          (case AList.lookup op = descr i of
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
   516
             SOME ("Nominal.noption", _, [(_, [dt']), _]) =>
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   517
               apfst (cons dt) (strip_option dt')
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   518
           | _ => ([], dtf))
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
   519
      | strip_option (DtType ("fun", [dt, DtType ("Nominal.noption", [dt'])])) =
18261
1318955d57ac Corrected treatment of non-recursive abstraction types.
berghofe
parents: 18246
diff changeset
   520
          apfst (cons dt) (strip_option dt')
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   521
      | strip_option dt = ([], dt);
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   522
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   523
    val dt_atomTs = distinct op = (map (typ_of_dtyp descr sorts)
18280
45e139675daf Corrected atom class constraints in strong induction rule.
berghofe
parents: 18261
diff changeset
   524
      (List.concat (map (fn (_, (_, _, cs)) => List.concat
45e139675daf Corrected atom class constraints in strong induction rule.
berghofe
parents: 18261
diff changeset
   525
        (map (List.concat o map (fst o strip_option) o snd) cs)) descr)));
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   526
    val dt_atoms = map (fst o dest_Type) dt_atomTs;
18280
45e139675daf Corrected atom class constraints in strong induction rule.
berghofe
parents: 18261
diff changeset
   527
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   528
    fun make_intr s T (cname, cargs) =
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   529
      let
21365
4ee8e2702241 InductivePackage.add_inductive_i: canonical argument order;
wenzelm
parents: 21291
diff changeset
   530
        fun mk_prem (dt, (j, j', prems, ts)) =
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   531
          let
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   532
            val (dts, dt') = strip_option dt;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   533
            val (dts', dt'') = strip_dtyp dt';
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   534
            val Ts = map (typ_of_dtyp descr sorts) dts;
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   535
            val Us = map (typ_of_dtyp descr sorts) dts';
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   536
            val T = typ_of_dtyp descr sorts dt'';
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   537
            val free = mk_Free "x" (Us ---> T) j;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   538
            val free' = app_bnds free (length Us);
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   539
            fun mk_abs_fun (T, (i, t)) =
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   540
              let val U = fastype_of t
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
   541
              in (i + 1, Const ("Nominal.abs_fun", [T, U, T] --->
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
   542
                Type ("Nominal.noption", [U])) $ mk_Free "y" T i $ t)
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   543
              end
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   544
          in (j + 1, j' + length Ts,
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   545
            case dt'' of
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   546
                DtRec k => list_all (map (pair "x") Us,
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   547
                  HOLogic.mk_Trueprop (Free (List.nth (rep_set_names, k),
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   548
                    T --> HOLogic.boolT) $ free')) :: prems
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   549
              | _ => prems,
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29585
diff changeset
   550
            snd (List.foldr mk_abs_fun (j', free) Ts) :: ts)
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   551
          end;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   552
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29585
diff changeset
   553
        val (_, _, prems, ts) = List.foldr mk_prem (1, 1, [], []) cargs;
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   554
        val concl = HOLogic.mk_Trueprop (Free (s, T --> HOLogic.boolT) $
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   555
          list_comb (Const (cname, map fastype_of ts ---> T), ts))
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   556
      in Logic.list_implies (prems, concl)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   557
      end;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   558
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   559
    val (intr_ts, (rep_set_names', recTs')) =
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   560
      apfst List.concat (apsnd ListPair.unzip (ListPair.unzip (List.mapPartial
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
   561
        (fn ((_, ("Nominal.noption", _, _)), _) => NONE
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   562
          | ((i, (_, _, constrs)), rep_set_name) =>
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   563
              let val T = nth_dtyp i
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   564
              in SOME (map (make_intr rep_set_name T) constrs,
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   565
                (rep_set_name, T))
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   566
              end)
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   567
                (descr ~~ rep_set_names))));
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28736
diff changeset
   568
    val rep_set_names'' = map (Sign.full_bname thy3) rep_set_names';
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   569
21365
4ee8e2702241 InductivePackage.add_inductive_i: canonical argument order;
wenzelm
parents: 21291
diff changeset
   570
    val ({raw_induct = rep_induct, intrs = rep_intrs, ...}, thy4) =
26475
3cc1e48d0ce1 eliminated quiet_mode ref of some packages (avoid CRITICAL setmp!);
wenzelm
parents: 26359
diff changeset
   571
        InductivePackage.add_inductive_global (serial_string ())
3cc1e48d0ce1 eliminated quiet_mode ref of some packages (avoid CRITICAL setmp!);
wenzelm
parents: 26359
diff changeset
   572
          {quiet_mode = false, verbose = false, kind = Thm.internalK,
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28736
diff changeset
   573
           alt_name = Binding.name big_rep_name, coind = false, no_elim = true, no_ind = false,
29389
0a49f940d729 inductive: added fork_mono flag;
wenzelm
parents: 29270
diff changeset
   574
           skip_mono = true, fork_mono = false}
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28736
diff changeset
   575
          (map (fn (s, T) => ((Binding.name s, T --> HOLogic.boolT), NoSyn))
26128
fe2d24c26e0c inductive package: simplified group handling;
wenzelm
parents: 26067
diff changeset
   576
             (rep_set_names' ~~ recTs'))
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28736
diff changeset
   577
          [] (map (fn x => (Attrib.empty_binding, x)) intr_ts) [] thy3;
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   578
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   579
    (**** Prove that representing set is closed under permutation ****)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   580
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   581
    val _ = warning "proving closure under permutation...";
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   582
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   583
    val abs_perm = PureThy.get_thms thy4 "abs_perm";
25951
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
   584
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   585
    val perm_indnames' = List.mapPartial
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
   586
      (fn (x, (_, ("Nominal.noption", _, _))) => NONE | (x, _) => SOME x)
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   587
      (perm_indnames ~~ descr);
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   588
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   589
    fun mk_perm_closed name = map (fn th => standard (th RS mp))
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19985
diff changeset
   590
      (List.take (split_conj_thm (Goal.prove_global thy4 [] []
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   591
        (augment_sort thy4
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   592
          (pt_class_of thy4 name :: map (cp_class_of thy4 name) (dt_atoms \ name))
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   593
          (HOLogic.mk_Trueprop (foldr1 HOLogic.mk_conj (map
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   594
            (fn ((s, T), x) =>
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   595
               let
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   596
                 val S = Const (s, T --> HOLogic.boolT);
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   597
                 val permT = mk_permT (Type (name, []))
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   598
               in HOLogic.mk_imp (S $ Free (x, T),
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   599
                 S $ (Const ("Nominal.perm", permT --> T --> T) $
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   600
                   Free ("pi", permT) $ Free (x, T)))
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   601
               end) (rep_set_names'' ~~ recTs' ~~ perm_indnames')))))
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   602
        (fn _ => EVERY
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   603
           [indtac rep_induct [] 1,
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   604
            ALLGOALS (simp_tac (simpset_of thy4 addsimps
25951
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
   605
              (symmetric perm_fun_def :: abs_perm))),
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   606
            ALLGOALS (resolve_tac rep_intrs THEN_ALL_NEW assume_tac)])),
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   607
        length new_type_names));
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   608
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   609
    val perm_closed_thmss = map mk_perm_closed atoms;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   610
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   611
    (**** typedef ****)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   612
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   613
    val _ = warning "defining type...";
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   614
18366
78b4f225b640 Adapted to new type of PureThy.add_defs_i.
berghofe
parents: 18350
diff changeset
   615
    val (typedefs, thy6) =
26651
e630c789ef2b overloading perm: use big_name;
wenzelm
parents: 26646
diff changeset
   616
      thy4
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   617
      |> fold_map (fn ((((name, mx), tvs), (cname, U)), name') => fn thy =>
30345
76fd85bbf139 more uniform handling of binding in packages;
wenzelm
parents: 30307
diff changeset
   618
          TypedefPackage.add_typedef false (SOME (Binding.name name'))
76fd85bbf139 more uniform handling of binding in packages;
wenzelm
parents: 30307
diff changeset
   619
            (Binding.name name, map fst tvs, mx)
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   620
            (Const ("Collect", (U --> HOLogic.boolT) --> HOLogic.mk_setT U) $
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   621
               Const (cname, U --> HOLogic.boolT)) NONE
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   622
            (rtac exI 1 THEN rtac CollectI 1 THEN
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   623
              QUIET_BREADTH_FIRST (has_fewer_prems 1)
26475
3cc1e48d0ce1 eliminated quiet_mode ref of some packages (avoid CRITICAL setmp!);
wenzelm
parents: 26359
diff changeset
   624
              (resolve_tac rep_intrs 1)) thy |> (fn ((_, r), thy) =>
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   625
        let
28736
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
   626
          val permT = mk_permT
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
   627
            (TFree (Name.variant (map fst tvs) "'a", HOLogic.typeS));
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   628
          val pi = Free ("pi", permT);
28736
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
   629
          val T = Type (Sign.intern_type thy name, map TFree tvs);
18366
78b4f225b640 Adapted to new type of PureThy.add_defs_i.
berghofe
parents: 18350
diff changeset
   630
        in apfst (pair r o hd)
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29389
diff changeset
   631
          (PureThy.add_defs_unchecked true [((Binding.name ("prm_" ^ name ^ "_def"), Logic.mk_equals
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
   632
            (Const ("Nominal.perm", permT --> T --> T) $ pi $ Free ("x", T),
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   633
             Const (Sign.intern_const thy ("Abs_" ^ name), U --> T) $
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
   634
               (Const ("Nominal.perm", permT --> U --> U) $ pi $
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   635
                 (Const (Sign.intern_const thy ("Rep_" ^ name), T --> U) $
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   636
                   Free ("x", T))))), [])] thy)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   637
        end))
18366
78b4f225b640 Adapted to new type of PureThy.add_defs_i.
berghofe
parents: 18350
diff changeset
   638
          (types_syntax ~~ tyvars ~~
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   639
            List.take (rep_set_names'' ~~ recTs', length new_type_names) ~~
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   640
            new_type_names);
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   641
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   642
    val perm_defs = map snd typedefs;
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   643
    val Abs_inverse_thms = map (collect_simp o #Abs_inverse o fst) typedefs;
18016
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
   644
    val Rep_inverse_thms = map (#Rep_inverse o fst) typedefs;
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   645
    val Rep_thms = map (collect_simp o #Rep o fst) typedefs;
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   646
18016
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
   647
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   648
    (** prove that new types are in class pt_<name> **)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   649
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   650
    val _ = warning "prove that new types are in class pt_<name> ...";
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   651
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   652
    fun pt_instance (atom, perm_closed_thms) =
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   653
      fold (fn ((((((Abs_inverse, Rep_inverse), Rep),
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   654
        perm_def), name), tvs), perm_closed) => fn thy =>
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   655
          let
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   656
            val pt_class = pt_class_of thy atom;
28736
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
   657
            val sort = Sign.certify_sort thy
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
   658
              (pt_class :: map (cp_class_of thy atom) (dt_atoms \ atom))
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   659
          in AxClass.prove_arity
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   660
            (Sign.intern_type thy name,
28736
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
   661
              map (inter_sort thy sort o snd) tvs, [pt_class])
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents: 24110
diff changeset
   662
            (EVERY [Class.intro_classes_tac [],
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   663
              rewrite_goals_tac [perm_def],
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   664
              asm_full_simp_tac (simpset_of thy addsimps [Rep_inverse]) 1,
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   665
              asm_full_simp_tac (simpset_of thy addsimps
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   666
                [Rep RS perm_closed RS Abs_inverse]) 1,
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   667
              asm_full_simp_tac (HOL_basic_ss addsimps [PureThy.get_thm thy
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30345
diff changeset
   668
                ("pt_" ^ Long_Name.base_name atom ^ "3")]) 1]) thy
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   669
          end)
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   670
        (Abs_inverse_thms ~~ Rep_inverse_thms ~~ Rep_thms ~~ perm_defs ~~
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   671
           new_type_names ~~ tyvars ~~ perm_closed_thms);
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   672
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   673
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   674
    (** prove that new types are in class cp_<name1>_<name2> **)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   675
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   676
    val _ = warning "prove that new types are in class cp_<name1>_<name2> ...";
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   677
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   678
    fun cp_instance (atom1, perm_closed_thms1) (atom2, perm_closed_thms2) thy =
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   679
      let
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   680
        val cp_class = cp_class_of thy atom1 atom2;
28736
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
   681
        val sort = Sign.certify_sort thy
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
   682
          (pt_class_of thy atom1 :: map (cp_class_of thy atom1) (dt_atoms \ atom1) @
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
   683
           (if atom1 = atom2 then [cp_class_of thy atom1 atom1] else
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
   684
            pt_class_of thy atom2 :: map (cp_class_of thy atom2) (dt_atoms \ atom2)));
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   685
        val cp1' = cp_inst_of thy atom1 atom2 RS cp1
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   686
      in fold (fn ((((((Abs_inverse, Rep),
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   687
        perm_def), name), tvs), perm_closed1), perm_closed2) => fn thy =>
19275
3d10de7a8ca7 add_inst_arity_i renamed to prove_arity.
berghofe
parents: 19251
diff changeset
   688
          AxClass.prove_arity
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   689
            (Sign.intern_type thy name,
28736
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
   690
              map (inter_sort thy sort o snd) tvs, [cp_class])
24218
fbf1646b267c ClassPackage renamed to Class
haftmann
parents: 24110
diff changeset
   691
            (EVERY [Class.intro_classes_tac [],
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   692
              rewrite_goals_tac [perm_def],
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   693
              asm_full_simp_tac (simpset_of thy addsimps
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   694
                ((Rep RS perm_closed1 RS Abs_inverse) ::
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   695
                 (if atom1 = atom2 then []
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   696
                  else [Rep RS perm_closed2 RS Abs_inverse]))) 1,
18016
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
   697
              cong_tac 1,
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   698
              rtac refl 1,
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   699
              rtac cp1' 1]) thy)
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   700
        (Abs_inverse_thms ~~ Rep_thms ~~ perm_defs ~~ new_type_names ~~
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   701
           tyvars ~~ perm_closed_thms1 ~~ perm_closed_thms2) thy
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   702
      end;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   703
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   704
    val thy7 = fold (fn x => fn thy => thy |>
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   705
      pt_instance x |>
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   706
      fold (cp_instance x) (atoms ~~ perm_closed_thmss))
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   707
        (atoms ~~ perm_closed_thmss) thy6;
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   708
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   709
    (**** constructors ****)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   710
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   711
    fun mk_abs_fun (x, t) =
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   712
      let
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   713
        val T = fastype_of x;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   714
        val U = fastype_of t
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   715
      in
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
   716
        Const ("Nominal.abs_fun", T --> U --> T -->
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
   717
          Type ("Nominal.noption", [U])) $ x $ t
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   718
      end;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   719
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29585
diff changeset
   720
    val (ty_idxs, _) = List.foldl
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
   721
      (fn ((i, ("Nominal.noption", _, _)), p) => p
18016
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
   722
        | ((i, _), (ty_idxs, j)) => (ty_idxs @ [(i, j)], j + 1)) ([], 0) descr;
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
   723
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
   724
    fun reindex (DtType (s, dts)) = DtType (s, map reindex dts)
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
   725
      | reindex (DtRec i) = DtRec (the (AList.lookup op = ty_idxs i))
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
   726
      | reindex dt = dt;
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
   727
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
   728
    fun strip_suffix i s = implode (List.take (explode s, size s - i));
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
   729
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
   730
    (** strips the "_Rep" in type names *)
21365
4ee8e2702241 InductivePackage.add_inductive_i: canonical argument order;
wenzelm
parents: 21291
diff changeset
   731
    fun strip_nth_name i s =
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30345
diff changeset
   732
      let val xs = Long_Name.explode s;
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30345
diff changeset
   733
      in Long_Name.implode (Library.nth_map (length xs - i) (strip_suffix 4) xs) end;
18016
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
   734
31458
b1cf26f2919b avoid Library.foldl_map
haftmann
parents: 30450
diff changeset
   735
    val (descr'', ndescr) = ListPair.unzip (map_filter
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
   736
      (fn (i, ("Nominal.noption", _, _)) => NONE
18107
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
   737
        | (i, (s, dts, constrs)) =>
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
   738
             let
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
   739
               val SOME index = AList.lookup op = ty_idxs i;
31458
b1cf26f2919b avoid Library.foldl_map
haftmann
parents: 30450
diff changeset
   740
               val (constrs2, constrs1) =
b1cf26f2919b avoid Library.foldl_map
haftmann
parents: 30450
diff changeset
   741
                 map_split (fn (cname, cargs) =>
b1cf26f2919b avoid Library.foldl_map
haftmann
parents: 30450
diff changeset
   742
                   apsnd (pair (strip_nth_name 2 (strip_nth_name 1 cname)))
b1cf26f2919b avoid Library.foldl_map
haftmann
parents: 30450
diff changeset
   743
                   (fold_map (fn dt => fn dts =>
18107
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
   744
                     let val (dts', dt') = strip_option dt
31458
b1cf26f2919b avoid Library.foldl_map
haftmann
parents: 30450
diff changeset
   745
                     in ((length dts, length dts'), dts @ dts' @ [reindex dt']) end)
b1cf26f2919b avoid Library.foldl_map
haftmann
parents: 30450
diff changeset
   746
                       cargs [])) constrs
18107
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
   747
             in SOME ((index, (strip_nth_name 1 s,  map reindex dts, constrs1)),
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
   748
               (index, constrs2))
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
   749
             end) descr);
18045
6d69a4190eb2 1) have adjusted the swapping of the result type
urbanc
parents: 18017
diff changeset
   750
19489
4441b637871b SplitAt -> chop
berghofe
parents: 19403
diff changeset
   751
    val (descr1, descr2) = chop (length new_type_names) descr'';
18016
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
   752
    val descr' = [descr1, descr2];
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
   753
19710
ee9c7fa80d21 Extended strong induction rule with additional
berghofe
parents: 19649
diff changeset
   754
    fun partition_cargs idxs xs = map (fn (i, j) =>
ee9c7fa80d21 Extended strong induction rule with additional
berghofe
parents: 19649
diff changeset
   755
      (List.take (List.drop (xs, i), j), List.nth (xs, i + j))) idxs;
ee9c7fa80d21 Extended strong induction rule with additional
berghofe
parents: 19649
diff changeset
   756
19833
3a3f591c838d - Changed naming scheme: names of "internal" constructors now have
berghofe
parents: 19710
diff changeset
   757
    val pdescr = map (fn ((i, (s, dts, constrs)), (_, idxss)) => (i, (s, dts,
3a3f591c838d - Changed naming scheme: names of "internal" constructors now have
berghofe
parents: 19710
diff changeset
   758
      map (fn ((cname, cargs), idxs) => (cname, partition_cargs idxs cargs))
3a3f591c838d - Changed naming scheme: names of "internal" constructors now have
berghofe
parents: 19710
diff changeset
   759
        (constrs ~~ idxss)))) (descr'' ~~ ndescr);
3a3f591c838d - Changed naming scheme: names of "internal" constructors now have
berghofe
parents: 19710
diff changeset
   760
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   761
    fun nth_dtyp' i = typ_of_dtyp descr'' sorts (DtRec i);
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   762
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   763
    val rep_names = map (fn s =>
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   764
      Sign.intern_const thy7 ("Rep_" ^ s)) new_type_names;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   765
    val abs_names = map (fn s =>
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   766
      Sign.intern_const thy7 ("Abs_" ^ s)) new_type_names;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   767
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   768
    val recTs = get_rec_types descr'' sorts;
18016
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
   769
    val newTs' = Library.take (length new_type_names, recTs');
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
   770
    val newTs = Library.take (length new_type_names, recTs);
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   771
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28736
diff changeset
   772
    val full_new_type_names = map (Sign.full_bname thy) new_type_names;
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   773
19833
3a3f591c838d - Changed naming scheme: names of "internal" constructors now have
berghofe
parents: 19710
diff changeset
   774
    fun make_constr_def tname T T' ((thy, defs, eqns),
3a3f591c838d - Changed naming scheme: names of "internal" constructors now have
berghofe
parents: 19710
diff changeset
   775
        (((cname_rep, _), (cname, cargs)), (cname', mx))) =
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   776
      let
19833
3a3f591c838d - Changed naming scheme: names of "internal" constructors now have
berghofe
parents: 19710
diff changeset
   777
        fun constr_arg ((dts, dt), (j, l_args, r_args)) =
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   778
          let
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   779
            val xs = map (fn (dt, i) => mk_Free "x" (typ_of_dtyp descr'' sorts dt) i)
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   780
              (dts ~~ (j upto j + length dts - 1))
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   781
            val x = mk_Free "x" (typ_of_dtyp descr'' sorts dt) (j + length dts)
18261
1318955d57ac Corrected treatment of non-recursive abstraction types.
berghofe
parents: 18246
diff changeset
   782
          in
1318955d57ac Corrected treatment of non-recursive abstraction types.
berghofe
parents: 18246
diff changeset
   783
            (j + length dts + 1,
1318955d57ac Corrected treatment of non-recursive abstraction types.
berghofe
parents: 18246
diff changeset
   784
             xs @ x :: l_args,
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29585
diff changeset
   785
             List.foldr mk_abs_fun
19833
3a3f591c838d - Changed naming scheme: names of "internal" constructors now have
berghofe
parents: 19710
diff changeset
   786
               (case dt of
18261
1318955d57ac Corrected treatment of non-recursive abstraction types.
berghofe
parents: 18246
diff changeset
   787
                  DtRec k => if k < length new_type_names then
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   788
                      Const (List.nth (rep_names, k), typ_of_dtyp descr'' sorts dt -->
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   789
                        typ_of_dtyp descr sorts dt) $ x
18261
1318955d57ac Corrected treatment of non-recursive abstraction types.
berghofe
parents: 18246
diff changeset
   790
                    else error "nested recursion not (yet) supported"
1318955d57ac Corrected treatment of non-recursive abstraction types.
berghofe
parents: 18246
diff changeset
   791
                | _ => x) xs :: r_args)
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   792
          end
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   793
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29585
diff changeset
   794
        val (_, l_args, r_args) = List.foldr constr_arg (1, [], []) cargs;
22578
b0eb5652f210 removed obsolete sign_of/sign_of_thm;
wenzelm
parents: 22543
diff changeset
   795
        val abs_name = Sign.intern_const thy ("Abs_" ^ tname);
b0eb5652f210 removed obsolete sign_of/sign_of_thm;
wenzelm
parents: 22543
diff changeset
   796
        val rep_name = Sign.intern_const thy ("Rep_" ^ tname);
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   797
        val constrT = map fastype_of l_args ---> T;
19833
3a3f591c838d - Changed naming scheme: names of "internal" constructors now have
berghofe
parents: 19710
diff changeset
   798
        val lhs = list_comb (Const (cname, constrT), l_args);
3a3f591c838d - Changed naming scheme: names of "internal" constructors now have
berghofe
parents: 19710
diff changeset
   799
        val rhs = list_comb (Const (cname_rep, map fastype_of r_args ---> T'), r_args);
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   800
        val def = Logic.mk_equals (lhs, Const (abs_name, T' --> T) $ rhs);
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   801
        val eqn = HOLogic.mk_Trueprop (HOLogic.mk_eq
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   802
          (Const (rep_name, T --> T') $ lhs, rhs));
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30345
diff changeset
   803
        val def_name = (Long_Name.base_name cname) ^ "_def";
18366
78b4f225b640 Adapted to new type of PureThy.add_defs_i.
berghofe
parents: 18350
diff changeset
   804
        val ([def_thm], thy') = thy |>
30345
76fd85bbf139 more uniform handling of binding in packages;
wenzelm
parents: 30307
diff changeset
   805
          Sign.add_consts_i [(Binding.name cname', constrT, mx)] |>
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29389
diff changeset
   806
          (PureThy.add_defs false o map Thm.no_attributes) [(Binding.name def_name, def)]
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   807
      in (thy', defs @ [def_thm], eqns @ [eqn]) end;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   808
19833
3a3f591c838d - Changed naming scheme: names of "internal" constructors now have
berghofe
parents: 19710
diff changeset
   809
    fun dt_constr_defs ((thy, defs, eqns, dist_lemmas), ((((((_, (_, _, constrs)),
3a3f591c838d - Changed naming scheme: names of "internal" constructors now have
berghofe
parents: 19710
diff changeset
   810
        (_, (_, _, constrs'))), tname), T), T'), constr_syntax)) =
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   811
      let
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   812
        val rep_const = cterm_of thy
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   813
          (Const (Sign.intern_const thy ("Rep_" ^ tname), T --> T'));
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   814
        val dist = standard (cterm_instantiate [(cterm_of thy distinct_f, rep_const)] distinct_lemma);
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   815
        val (thy', defs', eqns') = Library.foldl (make_constr_def tname T T')
24712
64ed05609568 proper Sign operations instead of Theory aliases;
wenzelm
parents: 24459
diff changeset
   816
          ((Sign.add_path tname thy, defs, []), constrs ~~ constrs' ~~ constr_syntax)
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   817
      in
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   818
        (parent_path flat_names thy', defs', eqns @ [eqns'], dist_lemmas @ [dist])
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   819
      end;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   820
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   821
    val (thy8, constr_defs, constr_rep_eqns, dist_lemmas) = Library.foldl dt_constr_defs
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   822
      ((thy7, [], [], []), List.take (descr, length new_type_names) ~~
19833
3a3f591c838d - Changed naming scheme: names of "internal" constructors now have
berghofe
parents: 19710
diff changeset
   823
        List.take (pdescr, length new_type_names) ~~
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   824
        new_type_names ~~ newTs ~~ newTs' ~~ constr_syntax);
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   825
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   826
    val abs_inject_thms = map (collect_simp o #Abs_inject o fst) typedefs
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   827
    val rep_inject_thms = map (#Rep_inject o fst) typedefs
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   828
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   829
    (* prove theorem  Rep_i (Constr_j ...) = Constr'_j ...  *)
21365
4ee8e2702241 InductivePackage.add_inductive_i: canonical argument order;
wenzelm
parents: 21291
diff changeset
   830
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   831
    fun prove_constr_rep_thm eqn =
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   832
      let
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   833
        val inj_thms = map (fn r => r RS iffD1) abs_inject_thms;
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   834
        val rewrites = constr_defs @ map mk_meta_eq Rep_inverse_thms
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19985
diff changeset
   835
      in Goal.prove_global thy8 [] [] eqn (fn _ => EVERY
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   836
        [resolve_tac inj_thms 1,
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   837
         rewrite_goals_tac rewrites,
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   838
         rtac refl 3,
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   839
         resolve_tac rep_intrs 2,
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   840
         REPEAT (resolve_tac Rep_thms 1)])
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   841
      end;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   842
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   843
    val constr_rep_thmss = map (map prove_constr_rep_thm) constr_rep_eqns;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   844
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   845
    (* prove theorem  pi \<bullet> Rep_i x = Rep_i (pi \<bullet> x) *)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   846
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   847
    fun prove_perm_rep_perm (atom, perm_closed_thms) = map (fn th =>
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   848
      let
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
   849
        val _ $ (_ $ (Rep $ x)) = Logic.unvarify (prop_of th);
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   850
        val Type ("fun", [T, U]) = fastype_of Rep;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   851
        val permT = mk_permT (Type (atom, []));
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   852
        val pi = Free ("pi", permT);
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   853
      in
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   854
        Goal.prove_global thy8 [] []
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   855
          (augment_sort thy8
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   856
            (pt_class_of thy8 atom :: map (cp_class_of thy8 atom) (dt_atoms \ atom))
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   857
            (HOLogic.mk_Trueprop (HOLogic.mk_eq
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   858
              (Const ("Nominal.perm", permT --> U --> U) $ pi $ (Rep $ x),
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   859
               Rep $ (Const ("Nominal.perm", permT --> T --> T) $ pi $ x)))))
18010
c885c93a9324 Removed legacy prove_goalw_cterm command.
berghofe
parents: 17874
diff changeset
   860
          (fn _ => simp_tac (HOL_basic_ss addsimps (perm_defs @ Abs_inverse_thms @
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19985
diff changeset
   861
            perm_closed_thms @ Rep_thms)) 1)
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   862
      end) Rep_thms;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   863
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   864
    val perm_rep_perm_thms = List.concat (map prove_perm_rep_perm
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   865
      (atoms ~~ perm_closed_thmss));
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   866
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   867
    (* prove distinctness theorems *)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   868
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   869
    val distinct_props = DatatypeProp.make_distincts descr' sorts;
27300
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27275
diff changeset
   870
    val dist_rewrites = map2 (fn rep_thms => fn dist_lemma =>
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27275
diff changeset
   871
      dist_lemma :: rep_thms @ [In0_eq, In1_eq, In0_not_In1, In1_not_In0])
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27275
diff changeset
   872
        constr_rep_thmss dist_lemmas;
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   873
26969
cf3f998d0631 moved case distinction over number of constructors for distinctness rules from DatatypeProp to DatatypeRepProofs
haftmann
parents: 26966
diff changeset
   874
    fun prove_distinct_thms _ (_, []) = []
cf3f998d0631 moved case distinction over number of constructors for distinctness rules from DatatypeProp to DatatypeRepProofs
haftmann
parents: 26966
diff changeset
   875
      | prove_distinct_thms (p as (rep_thms, dist_lemma)) (k, t :: ts) =
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   876
          let
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19985
diff changeset
   877
            val dist_thm = Goal.prove_global thy8 [] [] t (fn _ =>
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19985
diff changeset
   878
              simp_tac (simpset_of thy8 addsimps (dist_lemma :: rep_thms)) 1)
27300
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27275
diff changeset
   879
          in dist_thm :: standard (dist_thm RS not_sym) ::
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27275
diff changeset
   880
            prove_distinct_thms p (k, ts)
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   881
          end;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   882
26969
cf3f998d0631 moved case distinction over number of constructors for distinctness rules from DatatypeProp to DatatypeRepProofs
haftmann
parents: 26966
diff changeset
   883
    val distinct_thms = map2 prove_distinct_thms
cf3f998d0631 moved case distinction over number of constructors for distinctness rules from DatatypeProp to DatatypeRepProofs
haftmann
parents: 26966
diff changeset
   884
      (constr_rep_thmss ~~ dist_lemmas) distinct_props;
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   885
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   886
    (** prove equations for permutation functions **)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   887
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   888
    val perm_simps' = map (fn (((i, (_, _, constrs)), tname), constr_rep_thms) =>
19833
3a3f591c838d - Changed naming scheme: names of "internal" constructors now have
berghofe
parents: 19710
diff changeset
   889
      let val T = nth_dtyp' i
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   890
      in List.concat (map (fn (atom, perm_closed_thms) =>
21365
4ee8e2702241 InductivePackage.add_inductive_i: canonical argument order;
wenzelm
parents: 21291
diff changeset
   891
          map (fn ((cname, dts), constr_rep_thm) =>
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   892
        let
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   893
          val cname = Sign.intern_const thy8
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30345
diff changeset
   894
            (Long_Name.append tname (Long_Name.base_name cname));
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   895
          val permT = mk_permT (Type (atom, []));
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   896
          val pi = Free ("pi", permT);
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   897
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   898
          fun perm t =
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   899
            let val T = fastype_of t
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
   900
            in Const ("Nominal.perm", permT --> T --> T) $ pi $ t end;
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   901
19833
3a3f591c838d - Changed naming scheme: names of "internal" constructors now have
berghofe
parents: 19710
diff changeset
   902
          fun constr_arg ((dts, dt), (j, l_args, r_args)) =
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   903
            let
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   904
              val Ts = map (typ_of_dtyp descr'' sorts) dts;
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   905
              val xs = map (fn (T, i) => mk_Free "x" T i)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   906
                (Ts ~~ (j upto j + length dts - 1))
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   907
              val x = mk_Free "x" (typ_of_dtyp descr'' sorts dt) (j + length dts)
18261
1318955d57ac Corrected treatment of non-recursive abstraction types.
berghofe
parents: 18246
diff changeset
   908
            in
1318955d57ac Corrected treatment of non-recursive abstraction types.
berghofe
parents: 18246
diff changeset
   909
              (j + length dts + 1,
1318955d57ac Corrected treatment of non-recursive abstraction types.
berghofe
parents: 18246
diff changeset
   910
               xs @ x :: l_args,
1318955d57ac Corrected treatment of non-recursive abstraction types.
berghofe
parents: 18246
diff changeset
   911
               map perm (xs @ [x]) @ r_args)
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   912
            end
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   913
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29585
diff changeset
   914
          val (_, l_args, r_args) = List.foldr constr_arg (1, [], []) dts;
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   915
          val c = Const (cname, map fastype_of l_args ---> T)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   916
        in
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19985
diff changeset
   917
          Goal.prove_global thy8 [] []
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   918
            (augment_sort thy8
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   919
              (pt_class_of thy8 atom :: map (cp_class_of thy8 atom) (dt_atoms \ atom))
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   920
              (HOLogic.mk_Trueprop (HOLogic.mk_eq
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   921
                (perm (list_comb (c, l_args)), list_comb (c, r_args)))))
18010
c885c93a9324 Removed legacy prove_goalw_cterm command.
berghofe
parents: 17874
diff changeset
   922
            (fn _ => EVERY
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   923
              [simp_tac (simpset_of thy8 addsimps (constr_rep_thm :: perm_defs)) 1,
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   924
               simp_tac (HOL_basic_ss addsimps (Rep_thms @ Abs_inverse_thms @
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   925
                 constr_defs @ perm_closed_thms)) 1,
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   926
               TRY (simp_tac (HOL_basic_ss addsimps
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   927
                 (symmetric perm_fun_def :: abs_perm)) 1),
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   928
               TRY (simp_tac (HOL_basic_ss addsimps
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   929
                 (perm_fun_def :: perm_defs @ Rep_thms @ Abs_inverse_thms @
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19985
diff changeset
   930
                    perm_closed_thms)) 1)])
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   931
        end) (constrs ~~ constr_rep_thms)) (atoms ~~ perm_closed_thmss))
19833
3a3f591c838d - Changed naming scheme: names of "internal" constructors now have
berghofe
parents: 19710
diff changeset
   932
      end) (List.take (pdescr, length new_type_names) ~~ new_type_names ~~ constr_rep_thmss);
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   933
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   934
    (** prove injectivity of constructors **)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   935
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   936
    val rep_inject_thms' = map (fn th => th RS sym) rep_inject_thms;
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   937
    val alpha = PureThy.get_thms thy8 "alpha";
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
   938
    val abs_fresh = PureThy.get_thms thy8 "abs_fresh";
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   939
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   940
    val pt_cp_sort =
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   941
      map (pt_class_of thy8) dt_atoms @
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   942
      maps (fn s => map (cp_class_of thy8 s) (dt_atoms \ s)) dt_atoms;
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   943
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   944
    val inject_thms = map (fn (((i, (_, _, constrs)), tname), constr_rep_thms) =>
19833
3a3f591c838d - Changed naming scheme: names of "internal" constructors now have
berghofe
parents: 19710
diff changeset
   945
      let val T = nth_dtyp' i
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   946
      in List.mapPartial (fn ((cname, dts), constr_rep_thm) =>
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   947
        if null dts then NONE else SOME
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   948
        let
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   949
          val cname = Sign.intern_const thy8
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30345
diff changeset
   950
            (Long_Name.append tname (Long_Name.base_name cname));
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   951
19833
3a3f591c838d - Changed naming scheme: names of "internal" constructors now have
berghofe
parents: 19710
diff changeset
   952
          fun make_inj ((dts, dt), (j, args1, args2, eqs)) =
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   953
            let
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   954
              val Ts_idx = map (typ_of_dtyp descr'' sorts) dts ~~ (j upto j + length dts - 1);
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   955
              val xs = map (fn (T, i) => mk_Free "x" T i) Ts_idx;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   956
              val ys = map (fn (T, i) => mk_Free "y" T i) Ts_idx;
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   957
              val x = mk_Free "x" (typ_of_dtyp descr'' sorts dt) (j + length dts);
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   958
              val y = mk_Free "y" (typ_of_dtyp descr'' sorts dt) (j + length dts)
18261
1318955d57ac Corrected treatment of non-recursive abstraction types.
berghofe
parents: 18246
diff changeset
   959
            in
1318955d57ac Corrected treatment of non-recursive abstraction types.
berghofe
parents: 18246
diff changeset
   960
              (j + length dts + 1,
1318955d57ac Corrected treatment of non-recursive abstraction types.
berghofe
parents: 18246
diff changeset
   961
               xs @ (x :: args1), ys @ (y :: args2),
1318955d57ac Corrected treatment of non-recursive abstraction types.
berghofe
parents: 18246
diff changeset
   962
               HOLogic.mk_eq
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29585
diff changeset
   963
                 (List.foldr mk_abs_fun x xs, List.foldr mk_abs_fun y ys) :: eqs)
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   964
            end;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   965
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29585
diff changeset
   966
          val (_, args1, args2, eqs) = List.foldr make_inj (1, [], [], []) dts;
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   967
          val Ts = map fastype_of args1;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   968
          val c = Const (cname, Ts ---> T)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   969
        in
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   970
          Goal.prove_global thy8 [] []
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   971
            (augment_sort thy8 pt_cp_sort
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   972
              (HOLogic.mk_Trueprop (HOLogic.mk_eq
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   973
                (HOLogic.mk_eq (list_comb (c, args1), list_comb (c, args2)),
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   974
                 foldr1 HOLogic.mk_conj eqs))))
18010
c885c93a9324 Removed legacy prove_goalw_cterm command.
berghofe
parents: 17874
diff changeset
   975
            (fn _ => EVERY
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   976
               [asm_full_simp_tac (simpset_of thy8 addsimps (constr_rep_thm ::
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   977
                  rep_inject_thms')) 1,
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   978
                TRY (asm_full_simp_tac (HOL_basic_ss addsimps (fresh_def :: supp_def ::
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   979
                  alpha @ abs_perm @ abs_fresh @ rep_inject_thms @
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   980
                  perm_rep_perm_thms)) 1)])
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   981
        end) (constrs ~~ constr_rep_thms)
19833
3a3f591c838d - Changed naming scheme: names of "internal" constructors now have
berghofe
parents: 19710
diff changeset
   982
      end) (List.take (pdescr, length new_type_names) ~~ new_type_names ~~ constr_rep_thmss);
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
   983
17872
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
   984
    (** equations for support and freshness **)
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
   985
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
   986
    val (supp_thms, fresh_thms) = ListPair.unzip (map ListPair.unzip
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
   987
      (map (fn ((((i, (_, _, constrs)), tname), inject_thms'), perm_thms') =>
19833
3a3f591c838d - Changed naming scheme: names of "internal" constructors now have
berghofe
parents: 19710
diff changeset
   988
      let val T = nth_dtyp' i
17872
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
   989
      in List.concat (map (fn (cname, dts) => map (fn atom =>
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
   990
        let
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
   991
          val cname = Sign.intern_const thy8
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30345
diff changeset
   992
            (Long_Name.append tname (Long_Name.base_name cname));
17872
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
   993
          val atomT = Type (atom, []);
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
   994
19833
3a3f591c838d - Changed naming scheme: names of "internal" constructors now have
berghofe
parents: 19710
diff changeset
   995
          fun process_constr ((dts, dt), (j, args1, args2)) =
17872
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
   996
            let
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   997
              val Ts_idx = map (typ_of_dtyp descr'' sorts) dts ~~ (j upto j + length dts - 1);
17872
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
   998
              val xs = map (fn (T, i) => mk_Free "x" T i) Ts_idx;
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
   999
              val x = mk_Free "x" (typ_of_dtyp descr'' sorts dt) (j + length dts)
18261
1318955d57ac Corrected treatment of non-recursive abstraction types.
berghofe
parents: 18246
diff changeset
  1000
            in
1318955d57ac Corrected treatment of non-recursive abstraction types.
berghofe
parents: 18246
diff changeset
  1001
              (j + length dts + 1,
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29585
diff changeset
  1002
               xs @ (x :: args1), List.foldr mk_abs_fun x xs :: args2)
17872
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
  1003
            end;
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
  1004
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29585
diff changeset
  1005
          val (_, args1, args2) = List.foldr process_constr (1, [], []) dts;
17872
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
  1006
          val Ts = map fastype_of args1;
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
  1007
          val c = list_comb (Const (cname, Ts ---> T), args1);
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
  1008
          fun supp t =
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
  1009
            Const ("Nominal.supp", fastype_of t --> HOLogic.mk_setT atomT) $ t;
25823
5d75f4b179e2 Added function fresh_const.
berghofe
parents: 25674
diff changeset
  1010
          fun fresh t = fresh_const atomT (fastype_of t) $ Free ("a", atomT) $ t;
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19985
diff changeset
  1011
          val supp_thm = Goal.prove_global thy8 [] []
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1012
            (augment_sort thy8 pt_cp_sort
17872
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
  1013
              (HOLogic.mk_Trueprop (HOLogic.mk_eq
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
  1014
                (supp c,
30450
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30364
diff changeset
  1015
                 if null dts then HOLogic.mk_set atomT []
30304
d8e4cd2ac2a1 set operations Int, Un, INTER, UNION, Inter, Union, empty, UNIV are now proper qualified constants with authentic syntax
haftmann
parents: 29585
diff changeset
  1016
                 else foldr1 (HOLogic.mk_binop @{const_name Un}) (map supp args2)))))
17872
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
  1017
            (fn _ =>
18010
c885c93a9324 Removed legacy prove_goalw_cterm command.
berghofe
parents: 17874
diff changeset
  1018
              simp_tac (HOL_basic_ss addsimps (supp_def ::
17872
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
  1019
                 Un_assoc :: de_Morgan_conj :: Collect_disj_eq :: finite_Un ::
22274
ce1459004c8d Adapted to changes in Finite_Set theory.
berghofe
parents: 22245
diff changeset
  1020
                 symmetric empty_def :: finite_emptyI :: simp_thms @
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19985
diff changeset
  1021
                 abs_perm @ abs_fresh @ inject_thms' @ perm_thms')) 1)
17872
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
  1022
        in
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
  1023
          (supp_thm,
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1024
           Goal.prove_global thy8 [] [] (augment_sort thy8 pt_cp_sort
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1025
             (HOLogic.mk_Trueprop (HOLogic.mk_eq
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1026
               (fresh c,
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1027
                if null dts then HOLogic.true_const
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1028
                else foldr1 HOLogic.mk_conj (map fresh args2)))))
17872
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
  1029
             (fn _ =>
24459
fd114392bca9 Got rid of large simpset in proof of characteristic equations
berghofe
parents: 24218
diff changeset
  1030
               simp_tac (HOL_ss addsimps [Un_iff, empty_iff, fresh_def, supp_thm]) 1))
17872
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
  1031
        end) atoms) constrs)
19833
3a3f591c838d - Changed naming scheme: names of "internal" constructors now have
berghofe
parents: 19710
diff changeset
  1032
      end) (List.take (pdescr, length new_type_names) ~~ new_type_names ~~ inject_thms ~~ perm_simps')));
17872
f08fc98a164a Implemented proofs for support and freshness theorems.
berghofe
parents: 17870
diff changeset
  1033
18107
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1034
    (**** weak induction theorem ****)
18016
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1035
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1036
    fun mk_indrule_lemma ((prems, concls), (((i, _), T), U)) =
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1037
      let
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1038
        val Rep_t = Const (List.nth (rep_names, i), T --> U) $
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1039
          mk_Free "x" T i;
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1040
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1041
        val Abs_t =  Const (List.nth (abs_names, i), U --> T)
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1042
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  1043
      in (prems @ [HOLogic.imp $
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  1044
            (Const (List.nth (rep_set_names'', i), U --> HOLogic.boolT) $ Rep_t) $
18016
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1045
              (mk_Free "P" (T --> HOLogic.boolT) (i + 1) $ (Abs_t $ Rep_t))],
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1046
          concls @ [mk_Free "P" (T --> HOLogic.boolT) (i + 1) $ mk_Free "x" T i])
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1047
      end;
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1048
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1049
    val (indrule_lemma_prems, indrule_lemma_concls) =
18107
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1050
      Library.foldl mk_indrule_lemma (([], []), (descr'' ~~ recTs ~~ recTs'));
18016
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1051
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19985
diff changeset
  1052
    val indrule_lemma = Goal.prove_global thy8 [] []
18016
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1053
      (Logic.mk_implies
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1054
        (HOLogic.mk_Trueprop (mk_conj indrule_lemma_prems),
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1055
         HOLogic.mk_Trueprop (mk_conj indrule_lemma_concls))) (fn _ => EVERY
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1056
           [REPEAT (etac conjE 1),
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1057
            REPEAT (EVERY
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1058
              [TRY (rtac conjI 1), full_simp_tac (HOL_basic_ss addsimps Rep_inverse_thms) 1,
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19985
diff changeset
  1059
               etac mp 1, resolve_tac Rep_thms 1])]);
18016
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1060
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1061
    val Ps = map head_of (HOLogic.dest_conj (HOLogic.dest_Trueprop (concl_of indrule_lemma)));
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1062
    val frees = if length Ps = 1 then [Free ("P", snd (dest_Var (hd Ps)))] else
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1063
      map (Free o apfst fst o dest_Var) Ps;
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1064
    val indrule_lemma' = cterm_instantiate
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1065
      (map (cterm_of thy8) Ps ~~ map (cterm_of thy8) frees) indrule_lemma;
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1066
19833
3a3f591c838d - Changed naming scheme: names of "internal" constructors now have
berghofe
parents: 19710
diff changeset
  1067
    val Abs_inverse_thms' = map (fn r => r RS subst) Abs_inverse_thms;
18016
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1068
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1069
    val dt_induct_prop = DatatypeProp.make_ind descr' sorts;
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19985
diff changeset
  1070
    val dt_induct = Goal.prove_global thy8 []
18016
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1071
      (Logic.strip_imp_prems dt_induct_prop) (Logic.strip_imp_concl dt_induct_prop)
26711
3a478bfa1650 prove_global: pass context;
wenzelm
parents: 26689
diff changeset
  1072
      (fn {prems, ...} => EVERY
18016
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1073
        [rtac indrule_lemma' 1,
25674
b04508c59b9d Deleted copy of indtac.
berghofe
parents: 25557
diff changeset
  1074
         (indtac rep_induct [] THEN_ALL_NEW ObjectLogic.atomize_prems_tac) 1,
18016
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1075
         EVERY (map (fn (prem, r) => (EVERY
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1076
           [REPEAT (eresolve_tac Abs_inverse_thms' 1),
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1077
            simp_tac (HOL_basic_ss addsimps [symmetric r]) 1,
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1078
            DEPTH_SOLVE_1 (ares_tac [prem] 1 ORELSE etac allE 1)]))
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19985
diff changeset
  1079
                (prems ~~ constr_defs))]);
18016
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1080
18107
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1081
    val case_names_induct = mk_case_names_induct descr'';
18016
8f3a80033ba4 Implemented proof of weak induction theorem.
berghofe
parents: 18010
diff changeset
  1082
18066
d1e47ee13070 Added code for proving that new datatype has finite support.
berghofe
parents: 18054
diff changeset
  1083
    (**** prove that new datatypes have finite support ****)
d1e47ee13070 Added code for proving that new datatype has finite support.
berghofe
parents: 18054
diff changeset
  1084
18246
676d2e625d98 added fsub.thy (poplmark challenge) to the examples
urbanc
parents: 18245
diff changeset
  1085
    val _ = warning "proving finite support for the new datatype";
676d2e625d98 added fsub.thy (poplmark challenge) to the examples
urbanc
parents: 18245
diff changeset
  1086
18066
d1e47ee13070 Added code for proving that new datatype has finite support.
berghofe
parents: 18054
diff changeset
  1087
    val indnames = DatatypeProp.make_tnames recTs;
d1e47ee13070 Added code for proving that new datatype has finite support.
berghofe
parents: 18054
diff changeset
  1088
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
  1089
    val abs_supp = PureThy.get_thms thy8 "abs_supp";
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
  1090
    val supp_atm = PureThy.get_thms thy8 "supp_atm";
18066
d1e47ee13070 Added code for proving that new datatype has finite support.
berghofe
parents: 18054
diff changeset
  1091
d1e47ee13070 Added code for proving that new datatype has finite support.
berghofe
parents: 18054
diff changeset
  1092
    val finite_supp_thms = map (fn atom =>
d1e47ee13070 Added code for proving that new datatype has finite support.
berghofe
parents: 18054
diff changeset
  1093
      let val atomT = Type (atom, [])
d1e47ee13070 Added code for proving that new datatype has finite support.
berghofe
parents: 18054
diff changeset
  1094
      in map standard (List.take
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1095
        (split_conj_thm (Goal.prove_global thy8 [] []
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1096
           (augment_sort thy8 (fs_class_of thy8 atom :: pt_cp_sort)
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1097
             (HOLogic.mk_Trueprop
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1098
               (foldr1 HOLogic.mk_conj (map (fn (s, T) =>
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1099
                 Const ("Finite_Set.finite", HOLogic.mk_setT atomT --> HOLogic.boolT) $
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1100
                   (Const ("Nominal.supp", T --> HOLogic.mk_setT atomT) $ Free (s, T)))
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1101
                   (indnames ~~ recTs)))))
18066
d1e47ee13070 Added code for proving that new datatype has finite support.
berghofe
parents: 18054
diff changeset
  1102
           (fn _ => indtac dt_induct indnames 1 THEN
d1e47ee13070 Added code for proving that new datatype has finite support.
berghofe
parents: 18054
diff changeset
  1103
            ALLGOALS (asm_full_simp_tac (simpset_of thy8 addsimps
18067
8b9848d150ba - completed the list of thms for supp_atm
urbanc
parents: 18066
diff changeset
  1104
              (abs_supp @ supp_atm @
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30345
diff changeset
  1105
               PureThy.get_thms thy8 ("fs_" ^ Long_Name.base_name atom ^ "1") @
18066
d1e47ee13070 Added code for proving that new datatype has finite support.
berghofe
parents: 18054
diff changeset
  1106
               List.concat supp_thms))))),
d1e47ee13070 Added code for proving that new datatype has finite support.
berghofe
parents: 18054
diff changeset
  1107
         length new_type_names))
d1e47ee13070 Added code for proving that new datatype has finite support.
berghofe
parents: 18054
diff changeset
  1108
      end) atoms;
d1e47ee13070 Added code for proving that new datatype has finite support.
berghofe
parents: 18054
diff changeset
  1109
18759
2f55e3e47355 Updated to Isabelle 2006-01-23
krauss
parents: 18707
diff changeset
  1110
    val simp_atts = replicate (length new_type_names) [Simplifier.simp_add];
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1111
22245
1b8f4ef50c48 moved the infrastructure from the nominal_tags file to nominal_thmdecls
urbanc
parents: 22231
diff changeset
  1112
	(* Function to add both the simp and eqvt attributes *)
1b8f4ef50c48 moved the infrastructure from the nominal_tags file to nominal_thmdecls
urbanc
parents: 22231
diff changeset
  1113
        (* These two attributes are duplicated on all the types in the mutual nominal datatypes *)
1b8f4ef50c48 moved the infrastructure from the nominal_tags file to nominal_thmdecls
urbanc
parents: 22231
diff changeset
  1114
1b8f4ef50c48 moved the infrastructure from the nominal_tags file to nominal_thmdecls
urbanc
parents: 22231
diff changeset
  1115
    val simp_eqvt_atts = replicate (length new_type_names) [Simplifier.simp_add, NominalThmDecls.eqvt_add];
1b8f4ef50c48 moved the infrastructure from the nominal_tags file to nominal_thmdecls
urbanc
parents: 22231
diff changeset
  1116
 
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1117
    val (_, thy9) = thy8 |>
24712
64ed05609568 proper Sign operations instead of Theory aliases;
wenzelm
parents: 24459
diff changeset
  1118
      Sign.add_path big_name |>
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29389
diff changeset
  1119
      PureThy.add_thms [((Binding.name "induct", dt_induct), [case_names_induct])] ||>>
c23295521af5 binding replaces bstring
haftmann
parents: 29389
diff changeset
  1120
      PureThy.add_thmss [((Binding.name "inducts", projections dt_induct), [case_names_induct])] ||>
24712
64ed05609568 proper Sign operations instead of Theory aliases;
wenzelm
parents: 24459
diff changeset
  1121
      Sign.parent_path ||>>
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1122
      DatatypeAux.store_thmss_atts "distinct" new_type_names simp_atts distinct_thms ||>>
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1123
      DatatypeAux.store_thmss "constr_rep" new_type_names constr_rep_thmss ||>>
22231
f76f187c91f9 added an infrastructure that allows the user to declare lemmas to be equivariance lemmas; the intention is to use these lemmas in automated tools but also can be employed by the user
urbanc
parents: 21858
diff changeset
  1124
      DatatypeAux.store_thmss_atts "perm" new_type_names simp_eqvt_atts perm_simps' ||>>
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1125
      DatatypeAux.store_thmss "inject" new_type_names inject_thms ||>>
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1126
      DatatypeAux.store_thmss "supp" new_type_names supp_thms ||>>
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1127
      DatatypeAux.store_thmss_atts "fresh" new_type_names simp_atts fresh_thms ||>
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1128
      fold (fn (atom, ths) => fn thy =>
28736
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
  1129
        let
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
  1130
          val class = fs_class_of thy atom;
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
  1131
          val sort = Sign.certify_sort thy (class :: pt_cp_sort)
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
  1132
        in fold (fn Type (s, Ts) => AxClass.prove_arity
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
  1133
          (s, map (inter_sort thy sort o snd o dest_TFree) Ts, [class])
b1fd60fee652 Some modifications in code for proving arities to make it work for datatype
berghofe
parents: 28731
diff changeset
  1134
          (Class.intro_classes_tac [] THEN resolve_tac ths 1)) newTs thy
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1135
        end) (atoms ~~ finite_supp_thms);
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1136
18107
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1137
    (**** strong induction theorem ****)
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1138
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1139
    val pnames = if length descr'' = 1 then ["P"]
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1140
      else map (fn i => "P" ^ string_of_int i) (1 upto length descr'');
18245
65e60434b3c2 Fixed problem with strong induction theorem for datatypes containing
berghofe
parents: 18142
diff changeset
  1141
    val ind_sort = if null dt_atomTs then HOLogic.typeS
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1142
      else Sign.certify_sort thy9 (map (fs_class_of thy9) dt_atoms);
18107
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1143
    val fsT = TFree ("'n", ind_sort);
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1144
    val fsT' = TFree ("'n", HOLogic.typeS);
18107
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1145
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1146
    val fresh_fs = map (fn (s, T) => (T, Free (s, fsT' --> HOLogic.mk_setT T)))
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1147
      (DatatypeProp.indexify_names (replicate (length dt_atomTs) "f") ~~ dt_atomTs);
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1148
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1149
    fun make_pred fsT i T =
18302
577e5d19b33c Changed order of predicate arguments and quantifiers in strong induction rule.
berghofe
parents: 18280
diff changeset
  1150
      Free (List.nth (pnames, i), fsT --> T --> HOLogic.boolT);
18107
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1151
19851
10162c01bd78 Completely rewrote code for defining graph of recursion combinator.
berghofe
parents: 19833
diff changeset
  1152
    fun mk_fresh1 xs [] = []
10162c01bd78 Completely rewrote code for defining graph of recursion combinator.
berghofe
parents: 19833
diff changeset
  1153
      | mk_fresh1 xs ((y as (_, T)) :: ys) = map (fn x => HOLogic.mk_Trueprop
10162c01bd78 Completely rewrote code for defining graph of recursion combinator.
berghofe
parents: 19833
diff changeset
  1154
            (HOLogic.mk_not (HOLogic.mk_eq (Free y, Free x))))
10162c01bd78 Completely rewrote code for defining graph of recursion combinator.
berghofe
parents: 19833
diff changeset
  1155
              (filter (fn (_, U) => T = U) (rev xs)) @
10162c01bd78 Completely rewrote code for defining graph of recursion combinator.
berghofe
parents: 19833
diff changeset
  1156
          mk_fresh1 (y :: xs) ys;
10162c01bd78 Completely rewrote code for defining graph of recursion combinator.
berghofe
parents: 19833
diff changeset
  1157
10162c01bd78 Completely rewrote code for defining graph of recursion combinator.
berghofe
parents: 19833
diff changeset
  1158
    fun mk_fresh2 xss [] = []
10162c01bd78 Completely rewrote code for defining graph of recursion combinator.
berghofe
parents: 19833
diff changeset
  1159
      | mk_fresh2 xss ((p as (ys, _)) :: yss) = List.concat (map (fn y as (_, T) =>
10162c01bd78 Completely rewrote code for defining graph of recursion combinator.
berghofe
parents: 19833
diff changeset
  1160
            map (fn (_, x as (_, U)) => HOLogic.mk_Trueprop
25823
5d75f4b179e2 Added function fresh_const.
berghofe
parents: 25674
diff changeset
  1161
              (fresh_const T U $ Free y $ Free x)) (rev xss @ yss)) ys) @
19851
10162c01bd78 Completely rewrote code for defining graph of recursion combinator.
berghofe
parents: 19833
diff changeset
  1162
          mk_fresh2 (p :: xss) yss;
10162c01bd78 Completely rewrote code for defining graph of recursion combinator.
berghofe
parents: 19833
diff changeset
  1163
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1164
    fun make_ind_prem fsT f k T ((cname, cargs), idxs) =
18107
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1165
      let
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1166
        val recs = List.filter is_rec_type cargs;
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1167
        val Ts = map (typ_of_dtyp descr'' sorts) cargs;
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1168
        val recTs' = map (typ_of_dtyp descr'' sorts) recs;
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 20046
diff changeset
  1169
        val tnames = Name.variant_list pnames (DatatypeProp.make_tnames Ts);
18107
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1170
        val rec_tnames = map fst (List.filter (is_rec_type o snd) (tnames ~~ cargs));
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1171
        val frees = tnames ~~ Ts;
19710
ee9c7fa80d21 Extended strong induction rule with additional
berghofe
parents: 19649
diff changeset
  1172
        val frees' = partition_cargs idxs frees;
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 20046
diff changeset
  1173
        val z = (Name.variant tnames "z", fsT);
18107
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1174
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1175
        fun mk_prem ((dt, s), T) =
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1176
          let
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1177
            val (Us, U) = strip_type T;
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1178
            val l = length Us
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1179
          in list_all (z :: map (pair "x") Us, HOLogic.mk_Trueprop
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1180
            (make_pred fsT (body_index dt) U $ Bound l $ app_bnds (Free (s, T)) l))
18107
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1181
          end;
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1182
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1183
        val prems = map mk_prem (recs ~~ rec_tnames ~~ recTs');
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1184
        val prems' = map (fn p as (_, T) => HOLogic.mk_Trueprop
19710
ee9c7fa80d21 Extended strong induction rule with additional
berghofe
parents: 19649
diff changeset
  1185
            (f T (Free p) (Free z))) (List.concat (map fst frees')) @
ee9c7fa80d21 Extended strong induction rule with additional
berghofe
parents: 19649
diff changeset
  1186
          mk_fresh1 [] (List.concat (map fst frees')) @
ee9c7fa80d21 Extended strong induction rule with additional
berghofe
parents: 19649
diff changeset
  1187
          mk_fresh2 [] frees'
18107
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1188
18302
577e5d19b33c Changed order of predicate arguments and quantifiers in strong induction rule.
berghofe
parents: 18280
diff changeset
  1189
      in list_all_free (frees @ [z], Logic.list_implies (prems' @ prems,
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1190
        HOLogic.mk_Trueprop (make_pred fsT k T $ Free z $
18302
577e5d19b33c Changed order of predicate arguments and quantifiers in strong induction rule.
berghofe
parents: 18280
diff changeset
  1191
          list_comb (Const (cname, Ts ---> T), map Free frees))))
18107
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1192
      end;
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1193
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1194
    val ind_prems = List.concat (map (fn (((i, (_, _, constrs)), (_, idxss)), T) =>
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1195
      map (make_ind_prem fsT (fn T => fn t => fn u =>
25823
5d75f4b179e2 Added function fresh_const.
berghofe
parents: 25674
diff changeset
  1196
        fresh_const T fsT $ t $ u) i T)
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1197
          (constrs ~~ idxss)) (descr'' ~~ ndescr ~~ recTs));
18107
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1198
    val tnames = DatatypeProp.make_tnames recTs;
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 20046
diff changeset
  1199
    val zs = Name.variant_list tnames (replicate (length descr'') "z");
18107
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1200
    val ind_concl = HOLogic.mk_Trueprop (foldr1 (HOLogic.mk_binop "op &")
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1201
      (map (fn ((((i, _), T), tname), z) =>
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1202
        make_pred fsT i T $ Free (z, fsT) $ Free (tname, T))
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1203
        (descr'' ~~ recTs ~~ tnames ~~ zs)));
18107
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1204
    val induct = Logic.list_implies (ind_prems, ind_concl);
ee6b4d3af498 Added strong induction theorem (currently only axiomatized!).
berghofe
parents: 18104
diff changeset
  1205
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1206
    val ind_prems' =
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1207
      map (fn (_, f as Free (_, T)) => list_all_free ([("x", fsT')],
26806
40b411ec05aa Adapted to encoding of sets as predicates
berghofe
parents: 26711
diff changeset
  1208
        HOLogic.mk_Trueprop (Const ("Finite_Set.finite",
40b411ec05aa Adapted to encoding of sets as predicates
berghofe
parents: 26711
diff changeset
  1209
          (snd (split_last (binder_types T)) --> HOLogic.boolT) -->
40b411ec05aa Adapted to encoding of sets as predicates
berghofe
parents: 26711
diff changeset
  1210
            HOLogic.boolT) $ (f $ Free ("x", fsT'))))) fresh_fs @
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1211
      List.concat (map (fn (((i, (_, _, constrs)), (_, idxss)), T) =>
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1212
        map (make_ind_prem fsT' (fn T => fn t => fn u => HOLogic.Not $
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1213
          HOLogic.mk_mem (t, the (AList.lookup op = fresh_fs T) $ u)) i T)
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1214
            (constrs ~~ idxss)) (descr'' ~~ ndescr ~~ recTs));
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1215
    val ind_concl' = HOLogic.mk_Trueprop (foldr1 (HOLogic.mk_binop "op &")
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1216
      (map (fn ((((i, _), T), tname), z) =>
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1217
        make_pred fsT' i T $ Free (z, fsT') $ Free (tname, T))
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1218
        (descr'' ~~ recTs ~~ tnames ~~ zs)));
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1219
    val induct' = Logic.list_implies (ind_prems', ind_concl');
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1220
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1221
    val aux_ind_vars =
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1222
      (DatatypeProp.indexify_names (replicate (length dt_atomTs) "pi") ~~
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1223
       map mk_permT dt_atomTs) @ [("z", fsT')];
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1224
    val aux_ind_Ts = rev (map snd aux_ind_vars);
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1225
    val aux_ind_concl = HOLogic.mk_Trueprop (foldr1 (HOLogic.mk_binop "op &")
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1226
      (map (fn (((i, _), T), tname) =>
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1227
        HOLogic.list_all (aux_ind_vars, make_pred fsT' i T $ Bound 0 $
22311
ebcd44cb8d61 Curried and exported mk_perm.
berghofe
parents: 22274
diff changeset
  1228
          fold_rev (mk_perm aux_ind_Ts) (map Bound (length dt_atomTs downto 1))
ebcd44cb8d61 Curried and exported mk_perm.
berghofe
parents: 22274
diff changeset
  1229
            (Free (tname, T))))
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1230
        (descr'' ~~ recTs ~~ tnames)));
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1231
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1232
    val fin_set_supp = map (fn s =>
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1233
      at_inst_of thy9 s RS at_fin_set_supp) dt_atoms;
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1234
    val fin_set_fresh = map (fn s =>
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1235
      at_inst_of thy9 s RS at_fin_set_fresh) dt_atoms;
25951
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1236
    val pt1_atoms = map (fn Type (s, _) =>
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30345
diff changeset
  1237
      PureThy.get_thm thy9 ("pt_" ^ Long_Name.base_name s ^ "1")) dt_atomTs;
25951
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1238
    val pt2_atoms = map (fn Type (s, _) =>
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30345
diff changeset
  1239
      PureThy.get_thm thy9 ("pt_" ^ Long_Name.base_name s ^ "2") RS sym) dt_atomTs;
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
  1240
    val exists_fresh' = PureThy.get_thms thy9 "exists_fresh'";
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
  1241
    val fs_atoms = PureThy.get_thms thy9 "fin_supp";
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
  1242
    val abs_supp = PureThy.get_thms thy9 "abs_supp";
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
  1243
    val perm_fresh_fresh = PureThy.get_thms thy9 "perm_fresh_fresh";
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
  1244
    val calc_atm = PureThy.get_thms thy9 "calc_atm";
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
  1245
    val fresh_atm = PureThy.get_thms thy9 "fresh_atm";
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
  1246
    val fresh_left = PureThy.get_thms thy9 "fresh_left";
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
  1247
    val perm_swap = PureThy.get_thms thy9 "perm_swap";
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1248
25951
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1249
    fun obtain_fresh_name' ths ts T (freshs1, freshs2, ctxt) =
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1250
      let
25951
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1251
        val p = foldr1 HOLogic.mk_prod (ts @ freshs1);
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1252
        val ex = Goal.prove ctxt [] [] (HOLogic.mk_Trueprop
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1253
            (HOLogic.exists_const T $ Abs ("x", T,
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1254
              fresh_const T (fastype_of p) $
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1255
                Bound 0 $ p)))
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1256
          (fn _ => EVERY
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1257
            [resolve_tac exists_fresh' 1,
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1258
             simp_tac (HOL_ss addsimps (supp_prod :: finite_Un :: fs_atoms @
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1259
               fin_set_supp @ ths)) 1]);
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1260
        val (([cx], ths), ctxt') = Obtain.result
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1261
          (fn _ => EVERY
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1262
            [etac exE 1,
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1263
             full_simp_tac (HOL_ss addsimps (fresh_prod :: fresh_atm)) 1,
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1264
             REPEAT (etac conjE 1)])
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1265
          [ex] ctxt
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1266
      in (freshs1 @ [term_of cx], freshs2 @ ths, ctxt') end;
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1267
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1268
    fun fresh_fresh_inst thy a b =
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1269
      let
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1270
        val T = fastype_of a;
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1271
        val SOME th = find_first (fn th => case prop_of th of
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1272
            _ $ (_ $ (Const (_, Type (_, [U, _])) $ _ $ _)) $ _ => U = T
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1273
          | _ => false) perm_fresh_fresh
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1274
      in
25951
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1275
        Drule.instantiate' []
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1276
          [SOME (cterm_of thy a), NONE, SOME (cterm_of thy b)] th
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1277
      end;
18104
dbe58b104cb9 added thms perm, distinct and fresh to the simplifier.
urbanc
parents: 18068
diff changeset
  1278
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1279
    val fs_cp_sort =
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1280
      map (fs_class_of thy9) dt_atoms @
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1281
      maps (fn s => map (cp_class_of thy9 s) (dt_atoms \ s)) dt_atoms;
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1282
19710
ee9c7fa80d21 Extended strong induction rule with additional
berghofe
parents: 19649
diff changeset
  1283
    (**********************************************************************
ee9c7fa80d21 Extended strong induction rule with additional
berghofe
parents: 19649
diff changeset
  1284
      The subgoals occurring in the proof of induct_aux have the
ee9c7fa80d21 Extended strong induction rule with additional
berghofe
parents: 19649
diff changeset
  1285
      following parameters:
ee9c7fa80d21 Extended strong induction rule with additional
berghofe
parents: 19649
diff changeset
  1286
25951
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1287
        x_1 ... x_k p_1 ... p_m z
19710
ee9c7fa80d21 Extended strong induction rule with additional
berghofe
parents: 19649
diff changeset
  1288
ee9c7fa80d21 Extended strong induction rule with additional
berghofe
parents: 19649
diff changeset
  1289
      where
ee9c7fa80d21 Extended strong induction rule with additional
berghofe
parents: 19649
diff changeset
  1290
ee9c7fa80d21 Extended strong induction rule with additional
berghofe
parents: 19649
diff changeset
  1291
        x_i : constructor arguments (introduced by weak induction rule)
ee9c7fa80d21 Extended strong induction rule with additional
berghofe
parents: 19649
diff changeset
  1292
        p_i : permutations (one for each atom type in the data type)
ee9c7fa80d21 Extended strong induction rule with additional
berghofe
parents: 19649
diff changeset
  1293
        z   : freshness context
ee9c7fa80d21 Extended strong induction rule with additional
berghofe
parents: 19649
diff changeset
  1294
    ***********************************************************************)
ee9c7fa80d21 Extended strong induction rule with additional
berghofe
parents: 19649
diff changeset
  1295
ee9c7fa80d21 Extended strong induction rule with additional
berghofe
parents: 19649
diff changeset
  1296
    val _ = warning "proving strong induction theorem ...";
ee9c7fa80d21 Extended strong induction rule with additional
berghofe
parents: 19649
diff changeset
  1297
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1298
    val induct_aux = Goal.prove_global thy9 []
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1299
        (map (augment_sort thy9 fs_cp_sort) ind_prems')
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1300
        (augment_sort thy9 fs_cp_sort ind_concl') (fn {prems, context} =>
25951
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1301
      let
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1302
        val (prems1, prems2) = chop (length dt_atomTs) prems;
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1303
        val ind_ss2 = HOL_ss addsimps
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1304
          finite_Diff :: abs_fresh @ abs_supp @ fs_atoms;
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1305
        val ind_ss1 = ind_ss2 addsimps fresh_left @ calc_atm @
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1306
          fresh_atm @ rev_simps @ app_simps;
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1307
        val ind_ss3 = HOL_ss addsimps abs_fun_eq1 ::
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1308
          abs_perm @ calc_atm @ perm_swap;
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1309
        val ind_ss4 = HOL_basic_ss addsimps fresh_left @ prems1 @
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1310
          fin_set_fresh @ calc_atm;
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1311
        val ind_ss5 = HOL_basic_ss addsimps pt1_atoms;
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1312
        val ind_ss6 = HOL_basic_ss addsimps flat perm_simps';
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1313
        val th = Goal.prove context [] []
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1314
          (augment_sort thy9 fs_cp_sort aux_ind_concl)
25951
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1315
          (fn {context = context1, ...} =>
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1316
             EVERY (indtac dt_induct tnames 1 ::
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1317
               maps (fn ((_, (_, _, constrs)), (_, constrs')) =>
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1318
                 map (fn ((cname, cargs), is) =>
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1319
                   REPEAT (rtac allI 1) THEN
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1320
                   SUBPROOF (fn {prems = iprems, params, concl,
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1321
                       context = context2, ...} =>
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1322
                     let
25951
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1323
                       val concl' = term_of concl;
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1324
                       val _ $ (_ $ _ $ u) = concl';
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1325
                       val U = fastype_of u;
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1326
                       val (xs, params') =
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1327
                         chop (length cargs) (map term_of params);
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1328
                       val Ts = map fastype_of xs;
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1329
                       val cnstr = Const (cname, Ts ---> U);
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1330
                       val (pis, z) = split_last params';
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1331
                       val mk_pi = fold_rev (mk_perm []) pis;
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1332
                       val xs' = partition_cargs is xs;
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1333
                       val xs'' = map (fn (ts, u) => (map mk_pi ts, mk_pi u)) xs';
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1334
                       val ts = maps (fn (ts, u) => ts @ [u]) xs'';
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1335
                       val (freshs1, freshs2, context3) = fold (fn t =>
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1336
                         let val T = fastype_of t
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1337
                         in obtain_fresh_name' prems1
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1338
                           (the (AList.lookup op = fresh_fs T) $ z :: ts) T
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1339
                         end) (maps fst xs') ([], [], context2);
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1340
                       val freshs1' = unflat (map fst xs') freshs1;
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1341
                       val freshs2' = map (Simplifier.simplify ind_ss4)
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1342
                         (mk_not_sym freshs2);
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1343
                       val ind_ss1' = ind_ss1 addsimps freshs2';
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1344
                       val ind_ss3' = ind_ss3 addsimps freshs2';
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1345
                       val rename_eq =
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1346
                         if forall (null o fst) xs' then []
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1347
                         else [Goal.prove context3 [] []
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1348
                           (HOLogic.mk_Trueprop (HOLogic.mk_eq
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1349
                             (list_comb (cnstr, ts),
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1350
                              list_comb (cnstr, maps (fn ((bs, t), cs) =>
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1351
                                cs @ [fold_rev (mk_perm []) (map perm_of_pair
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1352
                                  (bs ~~ cs)) t]) (xs'' ~~ freshs1')))))
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1353
                           (fn _ => EVERY
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1354
                              (simp_tac (HOL_ss addsimps flat inject_thms) 1 ::
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1355
                               REPEAT (FIRSTGOAL (rtac conjI)) ::
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1356
                               maps (fn ((bs, t), cs) =>
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1357
                                 if null bs then []
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1358
                                 else rtac sym 1 :: maps (fn (b, c) =>
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1359
                                   [rtac trans 1, rtac sym 1,
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1360
                                    rtac (fresh_fresh_inst thy9 b c) 1,
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1361
                                    simp_tac ind_ss1' 1,
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1362
                                    simp_tac ind_ss2 1,
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1363
                                    simp_tac ind_ss3' 1]) (bs ~~ cs))
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1364
                                 (xs'' ~~ freshs1')))];
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1365
                       val th = Goal.prove context3 [] [] concl' (fn _ => EVERY
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1366
                         [simp_tac (ind_ss6 addsimps rename_eq) 1,
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1367
                          cut_facts_tac iprems 1,
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1368
                          (resolve_tac prems THEN_ALL_NEW
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1369
                            SUBGOAL (fn (t, i) => case Logic.strip_assums_concl t of
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1370
                                _ $ (Const ("Nominal.fresh", _) $ _ $ _) =>
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1371
                                  simp_tac ind_ss1' i
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1372
                              | _ $ (Const ("Not", _) $ _) =>
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1373
                                  resolve_tac freshs2' i
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1374
                              | _ => asm_simp_tac (HOL_basic_ss addsimps
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1375
                                  pt2_atoms addsimprocs [perm_simproc]) i)) 1])
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1376
                       val final = ProofContext.export context3 context2 [th]
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1377
                     in
25951
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1378
                       resolve_tac final 1
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1379
                     end) context1 1) (constrs ~~ constrs')) (descr'' ~~ ndescr)))
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1380
      in
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1381
        EVERY
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1382
          [cut_facts_tac [th] 1,
27228
4f7976a6ffc3 allE_Nil: only one copy, proven in regular theory source;
wenzelm
parents: 27153
diff changeset
  1383
           REPEAT (eresolve_tac [conjE, @{thm allE_Nil}] 1),
25951
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1384
           REPEAT (etac allE 1),
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1385
           REPEAT (TRY (rtac conjI 1) THEN asm_full_simp_tac ind_ss5 1)]
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1386
      end);
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1387
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1388
    val induct_aux' = Thm.instantiate ([],
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1389
      map (fn (s, v as Var (_, T)) =>
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1390
        (cterm_of thy9 v, cterm_of thy9 (Free (s, T))))
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1391
          (pnames ~~ map head_of (HOLogic.dest_conj
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1392
             (HOLogic.dest_Trueprop (concl_of induct_aux)))) @
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1393
      map (fn (_, f) =>
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1394
        let val f' = Logic.varify f
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1395
        in (cterm_of thy9 f',
19494
2e909d5309f4 Renamed "nominal" theory to "Nominal".
berghofe
parents: 19489
diff changeset
  1396
          cterm_of thy9 (Const ("Nominal.supp", fastype_of f')))
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1397
        end) fresh_fs) induct_aux;
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1398
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1399
    val induct = Goal.prove_global thy9 []
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1400
      (map (augment_sort thy9 fs_cp_sort) ind_prems)
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1401
      (augment_sort thy9 fs_cp_sort ind_concl)
26711
3a478bfa1650 prove_global: pass context;
wenzelm
parents: 26689
diff changeset
  1402
      (fn {prems, ...} => EVERY
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1403
         [rtac induct_aux' 1,
25951
6ebe26bfed18 Reimplemented proof of strong induction theorem.
berghofe
parents: 25823
diff changeset
  1404
          REPEAT (resolve_tac fs_atoms 1),
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1405
          REPEAT ((resolve_tac prems THEN_ALL_NEW
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19985
diff changeset
  1406
            (etac meta_spec ORELSE' full_simp_tac (HOL_basic_ss addsimps [fresh_def]))) 1)])
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1407
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1408
    val (_, thy10) = thy9 |>
24712
64ed05609568 proper Sign operations instead of Theory aliases;
wenzelm
parents: 24459
diff changeset
  1409
      Sign.add_path big_name |>
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29389
diff changeset
  1410
      PureThy.add_thms [((Binding.name "strong_induct'", induct_aux), [])] ||>>
c23295521af5 binding replaces bstring
haftmann
parents: 29389
diff changeset
  1411
      PureThy.add_thms [((Binding.name "strong_induct", induct), [case_names_induct])] ||>>
c23295521af5 binding replaces bstring
haftmann
parents: 29389
diff changeset
  1412
      PureThy.add_thmss [((Binding.name "strong_inducts", projections induct), [case_names_induct])];
18658
317a6f0ef8b9 Implemented proof of (strong) induction rule.
berghofe
parents: 18582
diff changeset
  1413
19322
bf84bdf05f14 Replaced iteration combinator by recursion combinator.
berghofe
parents: 19275
diff changeset
  1414
    (**** recursion combinator ****)
19251
6bc0dda66f32 First version of function for defining graph of iteration combinator.
berghofe
parents: 19134
diff changeset
  1415
19322
bf84bdf05f14 Replaced iteration combinator by recursion combinator.
berghofe
parents: 19275
diff changeset
  1416
    val _ = warning "defining recursion combinator ...";
19251
6bc0dda66f32 First version of function for defining graph of iteration combinator.
berghofe
parents: 19134
diff changeset
  1417
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29585
diff changeset
  1418
    val used = List.foldr OldTerm.add_typ_tfree_names [] recTs;
19251
6bc0dda66f32 First version of function for defining graph of iteration combinator.
berghofe
parents: 19134
diff changeset
  1419
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1420
    val (rec_result_Ts', rec_fn_Ts') = DatatypeProp.make_primrec_Ts descr' sorts used;
19985
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1421
21365
4ee8e2702241 InductivePackage.add_inductive_i: canonical argument order;
wenzelm
parents: 21291
diff changeset
  1422
    val rec_sort = if null dt_atomTs then HOLogic.typeS else
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1423
      Sign.certify_sort thy10 pt_cp_sort;
19985
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1424
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1425
    val rec_result_Ts = map (fn TFree (s, _) => TFree (s, rec_sort)) rec_result_Ts';
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1426
    val rec_fn_Ts = map (typ_subst_atomic (rec_result_Ts' ~~ rec_result_Ts)) rec_fn_Ts';
19251
6bc0dda66f32 First version of function for defining graph of iteration combinator.
berghofe
parents: 19134
diff changeset
  1427
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  1428
    val rec_set_Ts = map (fn (T1, T2) =>
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  1429
      rec_fn_Ts @ [T1, T2] ---> HOLogic.boolT) (recTs ~~ rec_result_Ts);
19251
6bc0dda66f32 First version of function for defining graph of iteration combinator.
berghofe
parents: 19134
diff changeset
  1430
19322
bf84bdf05f14 Replaced iteration combinator by recursion combinator.
berghofe
parents: 19275
diff changeset
  1431
    val big_rec_name = big_name ^ "_rec_set";
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  1432
    val rec_set_names' =
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  1433
      if length descr'' = 1 then [big_rec_name] else
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  1434
        map ((curry (op ^) (big_rec_name ^ "_")) o string_of_int)
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  1435
          (1 upto (length descr''));
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28736
diff changeset
  1436
    val rec_set_names =  map (Sign.full_bname thy10) rec_set_names';
19251
6bc0dda66f32 First version of function for defining graph of iteration combinator.
berghofe
parents: 19134
diff changeset
  1437
19322
bf84bdf05f14 Replaced iteration combinator by recursion combinator.
berghofe
parents: 19275
diff changeset
  1438
    val rec_fns = map (uncurry (mk_Free "f"))
bf84bdf05f14 Replaced iteration combinator by recursion combinator.
berghofe
parents: 19275
diff changeset
  1439
      (rec_fn_Ts ~~ (1 upto (length rec_fn_Ts)));
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  1440
    val rec_sets' = map (fn c => list_comb (Free c, rec_fns))
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  1441
      (rec_set_names' ~~ rec_set_Ts);
19322
bf84bdf05f14 Replaced iteration combinator by recursion combinator.
berghofe
parents: 19275
diff changeset
  1442
    val rec_sets = map (fn c => list_comb (Const c, rec_fns))
bf84bdf05f14 Replaced iteration combinator by recursion combinator.
berghofe
parents: 19275
diff changeset
  1443
      (rec_set_names ~~ rec_set_Ts);
19251
6bc0dda66f32 First version of function for defining graph of iteration combinator.
berghofe
parents: 19134
diff changeset
  1444
19322
bf84bdf05f14 Replaced iteration combinator by recursion combinator.
berghofe
parents: 19275
diff changeset
  1445
    (* introduction rules for graph of recursion function *)
19251
6bc0dda66f32 First version of function for defining graph of iteration combinator.
berghofe
parents: 19134
diff changeset
  1446
20145
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1447
    val rec_preds = map (fn (a, T) =>
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1448
      Free (a, T --> HOLogic.boolT)) (pnames ~~ rec_result_Ts);
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1449
20267
1154363129be Additional freshness constraints for FCB.
berghofe
parents: 20179
diff changeset
  1450
    fun mk_fresh3 rs [] = []
1154363129be Additional freshness constraints for FCB.
berghofe
parents: 20179
diff changeset
  1451
      | mk_fresh3 rs ((p as (ys, z)) :: yss) = List.concat (map (fn y as (_, T) =>
1154363129be Additional freshness constraints for FCB.
berghofe
parents: 20179
diff changeset
  1452
            List.mapPartial (fn ((_, (_, x)), r as (_, U)) => if z = x then NONE
1154363129be Additional freshness constraints for FCB.
berghofe
parents: 20179
diff changeset
  1453
              else SOME (HOLogic.mk_Trueprop
25823
5d75f4b179e2 Added function fresh_const.
berghofe
parents: 25674
diff changeset
  1454
                (fresh_const T U $ Free y $ Free r))) rs) ys) @
20267
1154363129be Additional freshness constraints for FCB.
berghofe
parents: 20179
diff changeset
  1455
          mk_fresh3 rs yss;
1154363129be Additional freshness constraints for FCB.
berghofe
parents: 20179
diff changeset
  1456
21088
13348ab97f5a Added freshness context to FCBs.
berghofe
parents: 21073
diff changeset
  1457
    (* FIXME: avoid collisions with other variable names? *)
13348ab97f5a Added freshness context to FCBs.
berghofe
parents: 21073
diff changeset
  1458
    val rec_ctxt = Free ("z", fsT');
13348ab97f5a Added freshness context to FCBs.
berghofe
parents: 21073
diff changeset
  1459
20397
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  1460
    fun make_rec_intr T p rec_set ((rec_intr_ts, rec_prems, rec_prems',
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  1461
          rec_eq_prems, l), ((cname, cargs), idxs)) =
19251
6bc0dda66f32 First version of function for defining graph of iteration combinator.
berghofe
parents: 19134
diff changeset
  1462
      let
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1463
        val Ts = map (typ_of_dtyp descr'' sorts) cargs;
19851
10162c01bd78 Completely rewrote code for defining graph of recursion combinator.
berghofe
parents: 19833
diff changeset
  1464
        val frees = map (fn i => "x" ^ string_of_int i) (1 upto length Ts) ~~ Ts;
10162c01bd78 Completely rewrote code for defining graph of recursion combinator.
berghofe
parents: 19833
diff changeset
  1465
        val frees' = partition_cargs idxs frees;
21088
13348ab97f5a Added freshness context to FCBs.
berghofe
parents: 21073
diff changeset
  1466
        val binders = List.concat (map fst frees');
20411
dd8a1cda2eaf Added premises concerning finite support of recursion results to FCBs.
berghofe
parents: 20397
diff changeset
  1467
        val atomTs = distinct op = (maps (map snd o fst) frees');
19851
10162c01bd78 Completely rewrote code for defining graph of recursion combinator.
berghofe
parents: 19833
diff changeset
  1468
        val recs = List.mapPartial
20145
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1469
          (fn ((_, DtRec i), p) => SOME (i, p) | _ => NONE)
19851
10162c01bd78 Completely rewrote code for defining graph of recursion combinator.
berghofe
parents: 19833
diff changeset
  1470
          (partition_cargs idxs cargs ~~ frees');
10162c01bd78 Completely rewrote code for defining graph of recursion combinator.
berghofe
parents: 19833
diff changeset
  1471
        val frees'' = map (fn i => "y" ^ string_of_int i) (1 upto length recs) ~~
10162c01bd78 Completely rewrote code for defining graph of recursion combinator.
berghofe
parents: 19833
diff changeset
  1472
          map (fn (i, _) => List.nth (rec_result_Ts, i)) recs;
20145
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1473
        val prems1 = map (fn ((i, (_, x)), y) => HOLogic.mk_Trueprop
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  1474
          (List.nth (rec_sets', i) $ Free x $ Free y)) (recs ~~ frees'');
20145
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1475
        val prems2 =
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1476
          map (fn f => map (fn p as (_, T) => HOLogic.mk_Trueprop
25823
5d75f4b179e2 Added function fresh_const.
berghofe
parents: 25674
diff changeset
  1477
            (fresh_const T (fastype_of f) $ Free p $ f)) binders) rec_fns;
21088
13348ab97f5a Added freshness context to FCBs.
berghofe
parents: 21073
diff changeset
  1478
        val prems3 = mk_fresh1 [] binders @ mk_fresh2 [] frees';
20145
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1479
        val prems4 = map (fn ((i, _), y) =>
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1480
          HOLogic.mk_Trueprop (List.nth (rec_preds, i) $ Free y)) (recs ~~ frees'');
20267
1154363129be Additional freshness constraints for FCB.
berghofe
parents: 20179
diff changeset
  1481
        val prems5 = mk_fresh3 (recs ~~ frees'') frees';
20411
dd8a1cda2eaf Added premises concerning finite support of recursion results to FCBs.
berghofe
parents: 20397
diff changeset
  1482
        val prems6 = maps (fn aT => map (fn y as (_, T) => HOLogic.mk_Trueprop
22274
ce1459004c8d Adapted to changes in Finite_Set theory.
berghofe
parents: 22245
diff changeset
  1483
          (Const ("Finite_Set.finite", HOLogic.mk_setT aT --> HOLogic.boolT) $
ce1459004c8d Adapted to changes in Finite_Set theory.
berghofe
parents: 22245
diff changeset
  1484
             (Const ("Nominal.supp", T --> HOLogic.mk_setT aT) $ Free y)))
20411
dd8a1cda2eaf Added premises concerning finite support of recursion results to FCBs.
berghofe
parents: 20397
diff changeset
  1485
               frees'') atomTs;
21088
13348ab97f5a Added freshness context to FCBs.
berghofe
parents: 21073
diff changeset
  1486
        val prems7 = map (fn x as (_, T) => HOLogic.mk_Trueprop
25823
5d75f4b179e2 Added function fresh_const.
berghofe
parents: 25674
diff changeset
  1487
          (fresh_const T fsT' $ Free x $ rec_ctxt)) binders;
20145
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1488
        val result = list_comb (List.nth (rec_fns, l), map Free (frees @ frees''));
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1489
        val result_freshs = map (fn p as (_, T) =>
25823
5d75f4b179e2 Added function fresh_const.
berghofe
parents: 25674
diff changeset
  1490
          fresh_const T (fastype_of result) $ Free p $ result) binders;
20145
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1491
        val P = HOLogic.mk_Trueprop (p $ result)
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1492
      in
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1493
        (rec_intr_ts @ [Logic.list_implies (List.concat prems2 @ prems3 @ prems1,
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  1494
           HOLogic.mk_Trueprop (rec_set $
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  1495
             list_comb (Const (cname, Ts ---> T), map Free frees) $ result))],
20145
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1496
         rec_prems @ [list_all_free (frees @ frees'', Logic.list_implies (prems4, P))],
21054
6048c085c3ae Split up FCBs into separate formulae for each binder.
berghofe
parents: 21021
diff changeset
  1497
         rec_prems' @ map (fn fr => list_all_free (frees @ frees'',
21088
13348ab97f5a Added freshness context to FCBs.
berghofe
parents: 21073
diff changeset
  1498
           Logic.list_implies (List.nth (prems2, l) @ prems3 @ prems5 @ prems7 @ prems6 @ [P],
21054
6048c085c3ae Split up FCBs into separate formulae for each binder.
berghofe
parents: 21021
diff changeset
  1499
             HOLogic.mk_Trueprop fr))) result_freshs,
20397
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  1500
         rec_eq_prems @ [List.concat prems2 @ prems3],
20145
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1501
         l + 1)
19251
6bc0dda66f32 First version of function for defining graph of iteration combinator.
berghofe
parents: 19134
diff changeset
  1502
      end;
6bc0dda66f32 First version of function for defining graph of iteration combinator.
berghofe
parents: 19134
diff changeset
  1503
20397
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  1504
    val (rec_intr_ts, rec_prems, rec_prems', rec_eq_prems, _) =
20145
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1505
      Library.foldl (fn (x, ((((d, d'), T), p), rec_set)) =>
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1506
        Library.foldl (make_rec_intr T p rec_set) (x, #3 (snd d) ~~ snd d'))
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  1507
          (([], [], [], [], 0), descr'' ~~ ndescr ~~ recTs ~~ rec_preds ~~ rec_sets');
19251
6bc0dda66f32 First version of function for defining graph of iteration combinator.
berghofe
parents: 19134
diff changeset
  1508
21365
4ee8e2702241 InductivePackage.add_inductive_i: canonical argument order;
wenzelm
parents: 21291
diff changeset
  1509
    val ({intrs = rec_intrs, elims = rec_elims, raw_induct = rec_induct, ...}, thy11) =
21055
e053811d680e Induction rule for graph of recursion combinator
berghofe
parents: 21054
diff changeset
  1510
      thy10 |>
26475
3cc1e48d0ce1 eliminated quiet_mode ref of some packages (avoid CRITICAL setmp!);
wenzelm
parents: 26359
diff changeset
  1511
        InductivePackage.add_inductive_global (serial_string ())
3cc1e48d0ce1 eliminated quiet_mode ref of some packages (avoid CRITICAL setmp!);
wenzelm
parents: 26359
diff changeset
  1512
          {quiet_mode = ! quiet_mode, verbose = false, kind = Thm.internalK,
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28736
diff changeset
  1513
           alt_name = Binding.name big_rec_name, coind = false, no_elim = false, no_ind = false,
29389
0a49f940d729 inductive: added fork_mono flag;
wenzelm
parents: 29270
diff changeset
  1514
           skip_mono = true, fork_mono = false}
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28736
diff changeset
  1515
          (map (fn (s, T) => ((Binding.name s, T), NoSyn)) (rec_set_names' ~~ rec_set_Ts))
26128
fe2d24c26e0c inductive package: simplified group handling;
wenzelm
parents: 26067
diff changeset
  1516
          (map dest_Free rec_fns)
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28736
diff changeset
  1517
          (map (fn x => (Attrib.empty_binding, x)) rec_intr_ts) [] ||>
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30345
diff changeset
  1518
      PureThy.hide_fact true (Long_Name.append (Sign.full_bname thy10 big_rec_name) "induct");
19251
6bc0dda66f32 First version of function for defining graph of iteration combinator.
berghofe
parents: 19134
diff changeset
  1519
19985
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1520
    (** equivariance **)
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1521
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
  1522
    val fresh_bij = PureThy.get_thms thy11 "fresh_bij";
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
  1523
    val perm_bij = PureThy.get_thms thy11 "perm_bij";
19985
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1524
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1525
    val (rec_equiv_thms, rec_equiv_thms') = ListPair.unzip (map (fn aT =>
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1526
      let
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1527
        val permT = mk_permT aT;
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1528
        val pi = Free ("pi", permT);
22311
ebcd44cb8d61 Curried and exported mk_perm.
berghofe
parents: 22274
diff changeset
  1529
        val rec_fns_pi = map (mk_perm [] pi o uncurry (mk_Free "f"))
19985
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1530
          (rec_fn_Ts ~~ (1 upto (length rec_fn_Ts)));
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1531
        val rec_sets_pi = map (fn c => list_comb (Const c, rec_fns_pi))
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1532
          (rec_set_names ~~ rec_set_Ts);
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1533
        val ps = map (fn ((((T, U), R), R'), i) =>
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1534
          let
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1535
            val x = Free ("x" ^ string_of_int i, T);
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1536
            val y = Free ("y" ^ string_of_int i, U)
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1537
          in
22311
ebcd44cb8d61 Curried and exported mk_perm.
berghofe
parents: 22274
diff changeset
  1538
            (R $ x $ y, R' $ mk_perm [] pi x $ mk_perm [] pi y)
19985
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1539
          end) (recTs ~~ rec_result_Ts ~~ rec_sets ~~ rec_sets_pi ~~ (1 upto length recTs));
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1540
        val ths = map (fn th => standard (th RS mp)) (split_conj_thm
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19985
diff changeset
  1541
          (Goal.prove_global thy11 [] []
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1542
            (augment_sort thy1 pt_cp_sort
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1543
              (HOLogic.mk_Trueprop (foldr1 HOLogic.mk_conj (map HOLogic.mk_imp ps))))
19985
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1544
            (fn _ => rtac rec_induct 1 THEN REPEAT
27450
d45d2850aaed Replaced all but one occurrence of perm_simp_tac by perm_simproc_app,
berghofe
parents: 27300
diff changeset
  1545
               (simp_tac (Simplifier.theory_context thy11 HOL_basic_ss
d45d2850aaed Replaced all but one occurrence of perm_simp_tac by perm_simproc_app,
berghofe
parents: 27300
diff changeset
  1546
                  addsimps flat perm_simps'
d45d2850aaed Replaced all but one occurrence of perm_simp_tac by perm_simproc_app,
berghofe
parents: 27300
diff changeset
  1547
                  addsimprocs [NominalPermeq.perm_simproc_app]) 1 THEN
19985
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1548
                (resolve_tac rec_intrs THEN_ALL_NEW
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1549
                 asm_simp_tac (HOL_ss addsimps (fresh_bij @ perm_bij))) 1))))
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19985
diff changeset
  1550
        val ths' = map (fn ((P, Q), th) =>
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19985
diff changeset
  1551
          Goal.prove_global thy11 [] []
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1552
            (augment_sort thy1 pt_cp_sort
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1553
              (Logic.mk_implies (HOLogic.mk_Trueprop Q, HOLogic.mk_Trueprop P)))
19985
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1554
            (fn _ => dtac (Thm.instantiate ([],
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1555
                 [(cterm_of thy11 (Var (("pi", 0), permT)),
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1556
                   cterm_of thy11 (Const ("List.rev", permT --> permT) $ pi))]) th) 1 THEN
20046
9c8909fc5865 Goal.prove_global;
wenzelm
parents: 19985
diff changeset
  1557
               NominalPermeq.perm_simp_tac HOL_ss 1)) (ps ~~ ths)
19985
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1558
      in (ths, ths') end) dt_atomTs);
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1559
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1560
    (** finite support **)
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1561
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1562
    val rec_fin_supp_thms = map (fn aT =>
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1563
      let
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30345
diff changeset
  1564
        val name = Long_Name.base_name (fst (dest_Type aT));
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
  1565
        val fs_name = PureThy.get_thm thy11 ("fs_" ^ name ^ "1");
19985
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1566
        val aset = HOLogic.mk_setT aT;
22274
ce1459004c8d Adapted to changes in Finite_Set theory.
berghofe
parents: 22245
diff changeset
  1567
        val finite = Const ("Finite_Set.finite", aset --> HOLogic.boolT);
ce1459004c8d Adapted to changes in Finite_Set theory.
berghofe
parents: 22245
diff changeset
  1568
        val fins = map (fn (f, T) => HOLogic.mk_Trueprop
ce1459004c8d Adapted to changes in Finite_Set theory.
berghofe
parents: 22245
diff changeset
  1569
          (finite $ (Const ("Nominal.supp", T --> aset) $ f)))
19985
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1570
            (rec_fns ~~ rec_fn_Ts)
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1571
      in
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1572
        map (fn th => standard (th RS mp)) (split_conj_thm
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1573
          (Goal.prove_global thy11 []
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1574
            (map (augment_sort thy11 fs_cp_sort) fins)
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1575
            (augment_sort thy11 fs_cp_sort
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1576
              (HOLogic.mk_Trueprop (foldr1 HOLogic.mk_conj
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1577
                (map (fn (((T, U), R), i) =>
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1578
                   let
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1579
                     val x = Free ("x" ^ string_of_int i, T);
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1580
                     val y = Free ("y" ^ string_of_int i, U)
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1581
                   in
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1582
                     HOLogic.mk_imp (R $ x $ y,
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1583
                       finite $ (Const ("Nominal.supp", U --> aset) $ y))
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1584
                   end) (recTs ~~ rec_result_Ts ~~ rec_sets ~~
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1585
                     (1 upto length recTs))))))
26711
3a478bfa1650 prove_global: pass context;
wenzelm
parents: 26689
diff changeset
  1586
            (fn {prems = fins, ...} =>
3a478bfa1650 prove_global: pass context;
wenzelm
parents: 26689
diff changeset
  1587
              (rtac rec_induct THEN_ALL_NEW cut_facts_tac fins) 1 THEN REPEAT
19985
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1588
               (NominalPermeq.finite_guess_tac (HOL_ss addsimps [fs_name]) 1))))
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1589
      end) dt_atomTs;
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  1590
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1591
    (** freshness **)
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1592
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1593
    val finite_premss = map (fn aT =>
22274
ce1459004c8d Adapted to changes in Finite_Set theory.
berghofe
parents: 22245
diff changeset
  1594
      map (fn (f, T) => HOLogic.mk_Trueprop
ce1459004c8d Adapted to changes in Finite_Set theory.
berghofe
parents: 22245
diff changeset
  1595
        (Const ("Finite_Set.finite", HOLogic.mk_setT aT --> HOLogic.boolT) $
ce1459004c8d Adapted to changes in Finite_Set theory.
berghofe
parents: 22245
diff changeset
  1596
           (Const ("Nominal.supp", T --> HOLogic.mk_setT aT) $ f)))
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1597
           (rec_fns ~~ rec_fn_Ts)) dt_atomTs;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1598
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1599
    val rec_fns' = map (augment_sort thy11 fs_cp_sort) rec_fns;
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1600
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1601
    val rec_fresh_thms = map (fn ((aT, eqvt_ths), finite_prems) =>
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1602
      let
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30345
diff changeset
  1603
        val name = Long_Name.base_name (fst (dest_Type aT));
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26337
diff changeset
  1604
        val fs_name = PureThy.get_thm thy11 ("fs_" ^ name ^ "1");
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1605
        val a = Free ("a", aT);
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1606
        val freshs = map (fn (f, fT) => HOLogic.mk_Trueprop
25823
5d75f4b179e2 Added function fresh_const.
berghofe
parents: 25674
diff changeset
  1607
          (fresh_const aT fT $ a $ f)) (rec_fns ~~ rec_fn_Ts)
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1608
      in
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1609
        map (fn (((T, U), R), eqvt_th) =>
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1610
          let
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1611
            val x = Free ("x", augment_sort_typ thy11 fs_cp_sort T);
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1612
            val y = Free ("y", U);
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1613
            val y' = Free ("y'", U)
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1614
          in
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1615
            standard (Goal.prove (ProofContext.init thy11) []
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1616
              (map (augment_sort thy11 fs_cp_sort)
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1617
                (finite_prems @
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1618
                   [HOLogic.mk_Trueprop (R $ x $ y),
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1619
                    HOLogic.mk_Trueprop (HOLogic.mk_all ("y'", U,
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1620
                      HOLogic.mk_imp (R $ x $ y', HOLogic.mk_eq (y', y)))),
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1621
                    HOLogic.mk_Trueprop (fresh_const aT T $ a $ x)] @
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1622
                 freshs))
25823
5d75f4b179e2 Added function fresh_const.
berghofe
parents: 25674
diff changeset
  1623
              (HOLogic.mk_Trueprop (fresh_const aT U $ a $ y))
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1624
              (fn {prems, context} =>
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1625
                 let
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1626
                   val (finite_prems, rec_prem :: unique_prem ::
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1627
                     fresh_prems) = chop (length finite_prems) prems;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1628
                   val unique_prem' = unique_prem RS spec RS mp;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1629
                   val unique = [unique_prem', unique_prem' RS sym] MRS trans;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1630
                   val _ $ (_ $ (_ $ S $ _)) $ _ = prop_of supports_fresh;
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1631
                   val tuple = foldr1 HOLogic.mk_prod (x :: rec_fns')
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1632
                 in EVERY
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1633
                   [rtac (Drule.cterm_instantiate
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1634
                      [(cterm_of thy11 S,
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1635
                        cterm_of thy11 (Const ("Nominal.supp",
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1636
                          fastype_of tuple --> HOLogic.mk_setT aT) $ tuple))]
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1637
                      supports_fresh) 1,
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1638
                    simp_tac (HOL_basic_ss addsimps
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1639
                      [supports_def, symmetric fresh_def, fresh_prod]) 1,
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1640
                    REPEAT_DETERM (resolve_tac [allI, impI] 1),
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1641
                    REPEAT_DETERM (etac conjE 1),
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1642
                    rtac unique 1,
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1643
                    SUBPROOF (fn {prems = prems', params = [a, b], ...} => EVERY
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1644
                      [cut_facts_tac [rec_prem] 1,
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1645
                       rtac (Thm.instantiate ([],
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1646
                         [(cterm_of thy11 (Var (("pi", 0), mk_permT aT)),
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1647
                           cterm_of thy11 (perm_of_pair (term_of a, term_of b)))]) eqvt_th) 1,
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1648
                       asm_simp_tac (HOL_ss addsimps
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1649
                         (prems' @ perm_swap @ perm_fresh_fresh)) 1]) context 1,
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1650
                    rtac rec_prem 1,
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1651
                    simp_tac (HOL_ss addsimps (fs_name ::
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1652
                      supp_prod :: finite_Un :: finite_prems)) 1,
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1653
                    simp_tac (HOL_ss addsimps (symmetric fresh_def ::
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1654
                      fresh_prod :: fresh_prems)) 1]
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1655
                 end))
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1656
          end) (recTs ~~ rec_result_Ts ~~ rec_sets ~~ eqvt_ths)
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1657
      end) (dt_atomTs ~~ rec_equiv_thms' ~~ finite_premss);
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1658
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1659
    (** uniqueness **)
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1660
21088
13348ab97f5a Added freshness context to FCBs.
berghofe
parents: 21073
diff changeset
  1661
    val fun_tuple = foldr1 HOLogic.mk_prod (rec_ctxt :: rec_fns);
20145
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1662
    val fun_tupleT = fastype_of fun_tuple;
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1663
    val rec_unique_frees =
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1664
      DatatypeProp.indexify_names (replicate (length recTs) "x") ~~ recTs;
20397
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  1665
    val rec_unique_frees'' = map (fn (s, T) => (s ^ "'", T)) rec_unique_frees;
20267
1154363129be Additional freshness constraints for FCB.
berghofe
parents: 20179
diff changeset
  1666
    val rec_unique_frees' =
1154363129be Additional freshness constraints for FCB.
berghofe
parents: 20179
diff changeset
  1667
      DatatypeProp.indexify_names (replicate (length recTs) "y") ~~ rec_result_Ts;
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  1668
    val rec_unique_concls = map (fn ((x, U), R) =>
20145
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1669
        Const ("Ex1", (U --> HOLogic.boolT) --> HOLogic.boolT) $
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  1670
          Abs ("y", U, R $ Free x $ Bound 0))
20145
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1671
      (rec_unique_frees ~~ rec_result_Ts ~~ rec_sets);
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1672
20145
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1673
    val induct_aux_rec = Drule.cterm_instantiate
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1674
      (map (pairself (cterm_of thy11) o apsnd (augment_sort thy11 fs_cp_sort))
20145
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1675
         (map (fn (aT, f) => (Logic.varify f, Abs ("z", HOLogic.unitT,
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1676
            Const ("Nominal.supp", fun_tupleT --> HOLogic.mk_setT aT) $ fun_tuple)))
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1677
              fresh_fs @
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1678
          map (fn (((P, T), (x, U)), Q) =>
26067
728f2c325ed6 Fixed typing problem that caused instantiation of induct_aux_rec to go wrong.
berghofe
parents: 25998
diff changeset
  1679
           (Var ((P, 0), Logic.varifyT (fsT' --> T --> HOLogic.boolT)),
20145
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1680
            Abs ("z", HOLogic.unitT, absfree (x, U, Q))))
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1681
              (pnames ~~ recTs ~~ rec_unique_frees ~~ rec_unique_concls) @
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1682
          map (fn (s, T) => (Var ((s, 0), Logic.varifyT T), Free (s, T)))
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1683
            rec_unique_frees)) induct_aux;
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  1684
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1685
    fun obtain_fresh_name vs ths rec_fin_supp T (freshs1, freshs2, ctxt) =
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1686
      let
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1687
        val p = foldr1 HOLogic.mk_prod (vs @ freshs1);
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1688
        val ex = Goal.prove ctxt [] [] (HOLogic.mk_Trueprop
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1689
            (HOLogic.exists_const T $ Abs ("x", T,
25823
5d75f4b179e2 Added function fresh_const.
berghofe
parents: 25674
diff changeset
  1690
              fresh_const T (fastype_of p) $ Bound 0 $ p)))
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1691
          (fn _ => EVERY
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1692
            [cut_facts_tac ths 1,
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1693
             REPEAT_DETERM (dresolve_tac (the (AList.lookup op = rec_fin_supp T)) 1),
21377
c29146dc14f1 replaced exists_fresh lemma with a version formulated with obtains;
urbanc
parents: 21365
diff changeset
  1694
             resolve_tac exists_fresh' 1,
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1695
             asm_simp_tac (HOL_ss addsimps (supp_prod :: finite_Un :: fs_atoms)) 1]);
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1696
        val (([cx], ths), ctxt') = Obtain.result
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1697
          (fn _ => EVERY
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1698
            [etac exE 1,
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1699
             full_simp_tac (HOL_ss addsimps (fresh_prod :: fresh_atm)) 1,
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1700
             REPEAT (etac conjE 1)])
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1701
          [ex] ctxt
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1702
      in (freshs1 @ [term_of cx], freshs2 @ ths, ctxt') end;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1703
21088
13348ab97f5a Added freshness context to FCBs.
berghofe
parents: 21073
diff changeset
  1704
    val finite_ctxt_prems = map (fn aT =>
22274
ce1459004c8d Adapted to changes in Finite_Set theory.
berghofe
parents: 22245
diff changeset
  1705
      HOLogic.mk_Trueprop
ce1459004c8d Adapted to changes in Finite_Set theory.
berghofe
parents: 22245
diff changeset
  1706
        (Const ("Finite_Set.finite", HOLogic.mk_setT aT --> HOLogic.boolT) $
ce1459004c8d Adapted to changes in Finite_Set theory.
berghofe
parents: 22245
diff changeset
  1707
           (Const ("Nominal.supp", fsT' --> HOLogic.mk_setT aT) $ rec_ctxt))) dt_atomTs;
21088
13348ab97f5a Added freshness context to FCBs.
berghofe
parents: 21073
diff changeset
  1708
20397
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  1709
    val rec_unique_thms = split_conj_thm (Goal.prove
21516
c2a116a2c4fd ProofContext.init;
wenzelm
parents: 21377
diff changeset
  1710
      (ProofContext.init thy11) (map fst rec_unique_frees)
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1711
      (map (augment_sort thy11 fs_cp_sort)
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1712
        (List.concat finite_premss @ finite_ctxt_prems @ rec_prems @ rec_prems'))
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1713
      (augment_sort thy11 fs_cp_sort
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1714
        (HOLogic.mk_Trueprop (foldr1 HOLogic.mk_conj rec_unique_concls)))
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1715
      (fn {prems, context} =>
20267
1154363129be Additional freshness constraints for FCB.
berghofe
parents: 20179
diff changeset
  1716
         let
1154363129be Additional freshness constraints for FCB.
berghofe
parents: 20179
diff changeset
  1717
           val k = length rec_fns;
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1718
           val (finite_thss, ths1) = fold_map (fn T => fn xs =>
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1719
             apfst (pair T) (chop k xs)) dt_atomTs prems;
21088
13348ab97f5a Added freshness context to FCBs.
berghofe
parents: 21073
diff changeset
  1720
           val (finite_ctxt_ths, ths2) = chop (length dt_atomTs) ths1;
13348ab97f5a Added freshness context to FCBs.
berghofe
parents: 21073
diff changeset
  1721
           val (P_ind_ths, fcbs) = chop k ths2;
20267
1154363129be Additional freshness constraints for FCB.
berghofe
parents: 20179
diff changeset
  1722
           val P_ths = map (fn th => th RS mp) (split_conj_thm
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1723
             (Goal.prove context
20397
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  1724
               (map fst (rec_unique_frees'' @ rec_unique_frees')) []
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1725
               (augment_sort thy11 fs_cp_sort
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1726
                 (HOLogic.mk_Trueprop (foldr1 HOLogic.mk_conj
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1727
                    (map (fn (((x, y), S), P) => HOLogic.mk_imp
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1728
                      (S $ Free x $ Free y, P $ (Free y)))
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1729
                        (rec_unique_frees'' ~~ rec_unique_frees' ~~
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1730
                           rec_sets ~~ rec_preds)))))
20267
1154363129be Additional freshness constraints for FCB.
berghofe
parents: 20179
diff changeset
  1731
               (fn _ =>
1154363129be Additional freshness constraints for FCB.
berghofe
parents: 20179
diff changeset
  1732
                  rtac rec_induct 1 THEN
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1733
                  REPEAT ((resolve_tac P_ind_ths THEN_ALL_NEW assume_tac) 1))));
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1734
           val rec_fin_supp_thms' = map
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1735
             (fn (ths, (T, fin_ths)) => (T, map (curry op MRS fin_ths) ths))
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1736
             (rec_fin_supp_thms ~~ finite_thss);
20267
1154363129be Additional freshness constraints for FCB.
berghofe
parents: 20179
diff changeset
  1737
         in EVERY
1154363129be Additional freshness constraints for FCB.
berghofe
parents: 20179
diff changeset
  1738
           ([rtac induct_aux_rec 1] @
21088
13348ab97f5a Added freshness context to FCBs.
berghofe
parents: 21073
diff changeset
  1739
            maps (fn ((_, finite_ths), finite_th) =>
13348ab97f5a Added freshness context to FCBs.
berghofe
parents: 21073
diff changeset
  1740
              [cut_facts_tac (finite_th :: finite_ths) 1,
13348ab97f5a Added freshness context to FCBs.
berghofe
parents: 21073
diff changeset
  1741
               asm_simp_tac (HOL_ss addsimps [supp_prod, finite_Un]) 1])
13348ab97f5a Added freshness context to FCBs.
berghofe
parents: 21073
diff changeset
  1742
                (finite_thss ~~ finite_ctxt_ths) @
20397
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  1743
            maps (fn ((_, idxss), elim) => maps (fn idxs =>
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  1744
              [full_simp_tac (HOL_ss addsimps [symmetric fresh_def, supp_prod, Un_iff]) 1,
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  1745
               REPEAT_DETERM (eresolve_tac [conjE, ex1E] 1),
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  1746
               rtac ex1I 1,
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  1747
               (resolve_tac rec_intrs THEN_ALL_NEW atac) 1,
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  1748
               rotate_tac ~1 1,
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  1749
               ((DETERM o etac elim) THEN_ALL_NEW full_simp_tac
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  1750
                  (HOL_ss addsimps List.concat distinct_thms)) 1] @
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  1751
               (if null idxs then [] else [hyp_subst_tac 1,
20397
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  1752
                SUBPROOF (fn {asms, concl, prems = prems', params, context = context', ...} =>
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1753
                  let
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  1754
                    val SOME prem = find_first (can (HOLogic.dest_eq o
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  1755
                      HOLogic.dest_Trueprop o prop_of)) prems';
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1756
                    val _ $ (_ $ lhs $ rhs) = prop_of prem;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1757
                    val _ $ (_ $ lhs' $ rhs') = term_of concl;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1758
                    val rT = fastype_of lhs';
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1759
                    val (c, cargsl) = strip_comb lhs;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1760
                    val cargsl' = partition_cargs idxs cargsl;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1761
                    val boundsl = List.concat (map fst cargsl');
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1762
                    val (_, cargsr) = strip_comb rhs;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1763
                    val cargsr' = partition_cargs idxs cargsr;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1764
                    val boundsr = List.concat (map fst cargsr');
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1765
                    val (params1, _ :: params2) =
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1766
                      chop (length params div 2) (map term_of params);
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1767
                    val params' = params1 @ params2;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1768
                    val rec_prems = filter (fn th => case prop_of th of
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1769
                        _ $ p => (case head_of p of
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1770
                          Const (s, _) => s mem rec_set_names
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1771
                        | _ => false)
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1772
                      | _ => false) prems';
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1773
                    val fresh_prems = filter (fn th => case prop_of th of
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1774
                        _ $ (Const ("Nominal.fresh", _) $ _ $ _) => true
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1775
                      | _ $ (Const ("Not", _) $ _) => true
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1776
                      | _ => false) prems';
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1777
                    val Ts = map fastype_of boundsl;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1778
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1779
                    val _ = warning "step 1: obtaining fresh names";
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1780
                    val (freshs1, freshs2, context'') = fold
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1781
                      (obtain_fresh_name (rec_ctxt :: rec_fns' @ params')
21088
13348ab97f5a Added freshness context to FCBs.
berghofe
parents: 21073
diff changeset
  1782
                         (List.concat (map snd finite_thss) @
13348ab97f5a Added freshness context to FCBs.
berghofe
parents: 21073
diff changeset
  1783
                            finite_ctxt_ths @ rec_prems)
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1784
                         rec_fin_supp_thms')
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1785
                      Ts ([], [], context');
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1786
                    val pi1 = map perm_of_pair (boundsl ~~ freshs1);
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1787
                    val rpi1 = rev pi1;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1788
                    val pi2 = map perm_of_pair (boundsr ~~ freshs1);
21073
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1789
                    val rpi2 = rev pi2;
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1790
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1791
                    val fresh_prems' = mk_not_sym fresh_prems;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1792
                    val freshs2' = mk_not_sym freshs2;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1793
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1794
                    (** as, bs, cs # K as ts, K bs us **)
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1795
                    val _ = warning "step 2: as, bs, cs # K as ts, K bs us";
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1796
                    val prove_fresh_ss = HOL_ss addsimps
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1797
                      (finite_Diff :: List.concat fresh_thms @
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1798
                       fs_atoms @ abs_fresh @ abs_supp @ fresh_atm);
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1799
                    (* FIXME: avoid asm_full_simp_tac ? *)
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1800
                    fun prove_fresh ths y x = Goal.prove context'' [] []
25823
5d75f4b179e2 Added function fresh_const.
berghofe
parents: 25674
diff changeset
  1801
                      (HOLogic.mk_Trueprop (fresh_const
5d75f4b179e2 Added function fresh_const.
berghofe
parents: 25674
diff changeset
  1802
                         (fastype_of x) (fastype_of y) $ x $ y))
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1803
                      (fn _ => cut_facts_tac ths 1 THEN asm_full_simp_tac prove_fresh_ss 1);
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1804
                    val constr_fresh_thms =
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1805
                      map (prove_fresh fresh_prems lhs) boundsl @
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1806
                      map (prove_fresh fresh_prems rhs) boundsr @
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1807
                      map (prove_fresh freshs2 lhs) freshs1 @
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1808
                      map (prove_fresh freshs2 rhs) freshs1;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1809
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1810
                    (** pi1 o (K as ts) = pi2 o (K bs us) **)
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1811
                    val _ = warning "step 3: pi1 o (K as ts) = pi2 o (K bs us)";
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1812
                    val pi1_pi2_eq = Goal.prove context'' [] []
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1813
                      (HOLogic.mk_Trueprop (HOLogic.mk_eq
22311
ebcd44cb8d61 Curried and exported mk_perm.
berghofe
parents: 22274
diff changeset
  1814
                        (fold_rev (mk_perm []) pi1 lhs, fold_rev (mk_perm []) pi2 rhs)))
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1815
                      (fn _ => EVERY
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1816
                         [cut_facts_tac constr_fresh_thms 1,
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1817
                          asm_simp_tac (HOL_basic_ss addsimps perm_fresh_fresh) 1,
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1818
                          rtac prem 1]);
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1819
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1820
                    (** pi1 o ts = pi2 o us **)
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1821
                    val _ = warning "step 4: pi1 o ts = pi2 o us";
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1822
                    val pi1_pi2_eqs = map (fn (t, u) =>
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1823
                      Goal.prove context'' [] []
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1824
                        (HOLogic.mk_Trueprop (HOLogic.mk_eq
22311
ebcd44cb8d61 Curried and exported mk_perm.
berghofe
parents: 22274
diff changeset
  1825
                          (fold_rev (mk_perm []) pi1 t, fold_rev (mk_perm []) pi2 u)))
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1826
                        (fn _ => EVERY
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1827
                           [cut_facts_tac [pi1_pi2_eq] 1,
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1828
                            asm_full_simp_tac (HOL_ss addsimps
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1829
                              (calc_atm @ List.concat perm_simps' @
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1830
                               fresh_prems' @ freshs2' @ abs_perm @
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1831
                               alpha @ List.concat inject_thms)) 1]))
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1832
                        (map snd cargsl' ~~ map snd cargsr');
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1833
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1834
                    (** pi1^-1 o pi2 o us = ts **)
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1835
                    val _ = warning "step 5: pi1^-1 o pi2 o us = ts";
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1836
                    val rpi1_pi2_eqs = map (fn ((t, u), eq) =>
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1837
                      Goal.prove context'' [] []
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1838
                        (HOLogic.mk_Trueprop (HOLogic.mk_eq
22311
ebcd44cb8d61 Curried and exported mk_perm.
berghofe
parents: 22274
diff changeset
  1839
                          (fold_rev (mk_perm []) (rpi1 @ pi2) u, t)))
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1840
                        (fn _ => simp_tac (HOL_ss addsimps
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1841
                           ((eq RS sym) :: perm_swap)) 1))
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1842
                        (map snd cargsl' ~~ map snd cargsr' ~~ pi1_pi2_eqs);
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1843
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1844
                    val (rec_prems1, rec_prems2) =
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1845
                      chop (length rec_prems div 2) rec_prems;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1846
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1847
                    (** (ts, pi1^-1 o pi2 o vs) in rec_set **)
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1848
                    val _ = warning "step 6: (ts, pi1^-1 o pi2 o vs) in rec_set";
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1849
                    val rec_prems' = map (fn th =>
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1850
                      let
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  1851
                        val _ $ (S $ x $ y) = prop_of th;
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1852
                        val Const (s, _) = head_of S;
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  1853
                        val k = find_index (equal s) rec_set_names;
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1854
                        val pi = rpi1 @ pi2;
22311
ebcd44cb8d61 Curried and exported mk_perm.
berghofe
parents: 22274
diff changeset
  1855
                        fun mk_pi z = fold_rev (mk_perm []) pi z;
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1856
                        fun eqvt_tac p =
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1857
                          let
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1858
                            val U as Type (_, [Type (_, [T, _])]) = fastype_of p;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1859
                            val l = find_index (equal T) dt_atomTs;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1860
                            val th = List.nth (List.nth (rec_equiv_thms', l), k);
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1861
                            val th' = Thm.instantiate ([],
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1862
                              [(cterm_of thy11 (Var (("pi", 0), U)),
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1863
                                cterm_of thy11 p)]) th;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1864
                          in rtac th' 1 end;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1865
                        val th' = Goal.prove context'' [] []
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  1866
                          (HOLogic.mk_Trueprop (S $ mk_pi x $ mk_pi y))
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1867
                          (fn _ => EVERY
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1868
                             (map eqvt_tac pi @
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1869
                              [simp_tac (HOL_ss addsimps (fresh_prems' @ freshs2' @
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1870
                                 perm_swap @ perm_fresh_fresh)) 1,
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1871
                               rtac th 1]))
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1872
                      in
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1873
                        Simplifier.simplify
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1874
                          (HOL_basic_ss addsimps rpi1_pi2_eqs) th'
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1875
                      end) rec_prems2;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1876
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1877
                    val ihs = filter (fn th => case prop_of th of
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1878
                      _ $ (Const ("All", _) $ _) => true | _ => false) prems';
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1879
21073
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1880
                    (** pi1 o rs = pi2 o vs , rs = pi1^-1 o pi2 o vs **)
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1881
                    val _ = warning "step 7: pi1 o rs = pi2 o vs , rs = pi1^-1 o pi2 o vs";
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1882
                    val rec_eqns = map (fn (th, ih) =>
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1883
                      let
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1884
                        val th' = th RS (ih RS spec RS mp) RS sym;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1885
                        val _ $ (_ $ lhs $ rhs) = prop_of th';
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1886
                        fun strip_perm (_ $ _ $ t) = strip_perm t
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1887
                          | strip_perm t = t;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1888
                      in
21073
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1889
                        Goal.prove context'' [] []
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1890
                           (HOLogic.mk_Trueprop (HOLogic.mk_eq
22311
ebcd44cb8d61 Curried and exported mk_perm.
berghofe
parents: 22274
diff changeset
  1891
                              (fold_rev (mk_perm []) pi1 lhs,
ebcd44cb8d61 Curried and exported mk_perm.
berghofe
parents: 22274
diff changeset
  1892
                               fold_rev (mk_perm []) pi2 (strip_perm rhs))))
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1893
                           (fn _ => simp_tac (HOL_basic_ss addsimps
21073
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1894
                              (th' :: perm_swap)) 1)
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1895
                      end) (rec_prems' ~~ ihs);
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1896
21073
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1897
                    (** as # rs **)
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1898
                    val _ = warning "step 8: as # rs";
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1899
                    val rec_freshs = List.concat
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1900
                      (map (fn (rec_prem, ih) =>
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1901
                        let
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  1902
                          val _ $ (S $ x $ (y as Free (_, T))) =
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1903
                            prop_of rec_prem;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1904
                          val k = find_index (equal S) rec_sets;
21073
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1905
                          val atoms = List.concat (List.mapPartial (fn (bs, z) =>
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1906
                            if z = x then NONE else SOME bs) cargsl')
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1907
                        in
21073
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1908
                          map (fn a as Free (_, aT) =>
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1909
                            let val l = find_index (equal aT) dt_atomTs;
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1910
                            in
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1911
                              Goal.prove context'' [] []
25823
5d75f4b179e2 Added function fresh_const.
berghofe
parents: 25674
diff changeset
  1912
                                (HOLogic.mk_Trueprop (fresh_const aT T $ a $ y))
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1913
                                (fn _ => EVERY
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1914
                                   (rtac (List.nth (List.nth (rec_fresh_thms, l), k)) 1 ::
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1915
                                    map (fn th => rtac th 1)
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1916
                                      (snd (List.nth (finite_thss, l))) @
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1917
                                    [rtac rec_prem 1, rtac ih 1,
21073
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1918
                                     REPEAT_DETERM (resolve_tac fresh_prems 1)]))
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1919
                            end) atoms
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1920
                        end) (rec_prems1 ~~ ihs));
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1921
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1922
                    (** as # fK as ts rs , bs # fK bs us vs **)
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1923
                    val _ = warning "step 9: as # fK as ts rs , bs # fK bs us vs";
21073
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1924
                    fun prove_fresh_result (a as Free (_, aT)) =
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1925
                      Goal.prove context'' [] []
25823
5d75f4b179e2 Added function fresh_const.
berghofe
parents: 25674
diff changeset
  1926
                        (HOLogic.mk_Trueprop (fresh_const aT rT $ a $ rhs'))
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1927
                        (fn _ => EVERY
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1928
                           [resolve_tac fcbs 1,
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1929
                            REPEAT_DETERM (resolve_tac
21073
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1930
                              (fresh_prems @ rec_freshs) 1),
20411
dd8a1cda2eaf Added premises concerning finite support of recursion results to FCBs.
berghofe
parents: 20397
diff changeset
  1931
                            REPEAT_DETERM (resolve_tac (maps snd rec_fin_supp_thms') 1
dd8a1cda2eaf Added premises concerning finite support of recursion results to FCBs.
berghofe
parents: 20397
diff changeset
  1932
                              THEN resolve_tac rec_prems 1),
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1933
                            resolve_tac P_ind_ths 1,
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1934
                            REPEAT_DETERM (resolve_tac (P_ths @ rec_prems) 1)]);
21365
4ee8e2702241 InductivePackage.add_inductive_i: canonical argument order;
wenzelm
parents: 21291
diff changeset
  1935
21073
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1936
                    val fresh_results'' = map prove_fresh_result boundsl;
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1937
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1938
                    fun prove_fresh_result'' ((a as Free (_, aT), b), th) =
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1939
                      let val th' = Goal.prove context'' [] []
25823
5d75f4b179e2 Added function fresh_const.
berghofe
parents: 25674
diff changeset
  1940
                        (HOLogic.mk_Trueprop (fresh_const aT rT $
22311
ebcd44cb8d61 Curried and exported mk_perm.
berghofe
parents: 22274
diff changeset
  1941
                            fold_rev (mk_perm []) (rpi2 @ pi1) a $
ebcd44cb8d61 Curried and exported mk_perm.
berghofe
parents: 22274
diff changeset
  1942
                            fold_rev (mk_perm []) (rpi2 @ pi1) rhs'))
21073
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1943
                        (fn _ => simp_tac (HOL_ss addsimps fresh_bij) 1 THEN
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1944
                           rtac th 1)
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1945
                      in
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1946
                        Goal.prove context'' [] []
25823
5d75f4b179e2 Added function fresh_const.
berghofe
parents: 25674
diff changeset
  1947
                          (HOLogic.mk_Trueprop (fresh_const aT rT $ b $ lhs'))
21073
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1948
                          (fn _ => EVERY
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1949
                             [cut_facts_tac [th'] 1,
25998
f38dc602a926 Tuned uniqueness proof for recursion combinator.
berghofe
parents: 25985
diff changeset
  1950
                              full_simp_tac (Simplifier.theory_context thy11 HOL_ss
f38dc602a926 Tuned uniqueness proof for recursion combinator.
berghofe
parents: 25985
diff changeset
  1951
                                addsimps rec_eqns @ pi1_pi2_eqs @ perm_swap
f38dc602a926 Tuned uniqueness proof for recursion combinator.
berghofe
parents: 25985
diff changeset
  1952
                                addsimprocs [NominalPermeq.perm_simproc_app]) 1,
21073
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1953
                              full_simp_tac (HOL_ss addsimps (calc_atm @
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1954
                                fresh_prems' @ freshs2' @ perm_fresh_fresh)) 1])
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1955
                      end;
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1956
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1957
                    val fresh_results = fresh_results'' @ map prove_fresh_result''
be0a17371ba6 Proof of "bs # fK bs us vs" no longer depends on FCBs.
berghofe
parents: 21055
diff changeset
  1958
                      (boundsl ~~ boundsr ~~ fresh_results'');
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1959
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1960
                    (** cs # fK as ts rs , cs # fK bs us vs **)
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1961
                    val _ = warning "step 10: cs # fK as ts rs , cs # fK bs us vs";
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1962
                    fun prove_fresh_result' recs t (a as Free (_, aT)) =
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1963
                      Goal.prove context'' [] []
25823
5d75f4b179e2 Added function fresh_const.
berghofe
parents: 25674
diff changeset
  1964
                        (HOLogic.mk_Trueprop (fresh_const aT rT $ a $ t))
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1965
                        (fn _ => EVERY
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1966
                          [cut_facts_tac recs 1,
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1967
                           REPEAT_DETERM (dresolve_tac
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1968
                             (the (AList.lookup op = rec_fin_supp_thms' aT)) 1),
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1969
                           NominalPermeq.fresh_guess_tac
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1970
                             (HOL_ss addsimps (freshs2 @
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1971
                                fs_atoms @ fresh_atm @
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1972
                                List.concat (map snd finite_thss))) 1]);
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1973
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1974
                    val fresh_results' =
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1975
                      map (prove_fresh_result' rec_prems1 rhs') freshs1 @
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1976
                      map (prove_fresh_result' rec_prems2 lhs') freshs1;
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1977
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1978
                    (** pi1 o (fK as ts rs) = pi2 o (fK bs us vs) **)
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1979
                    val _ = warning "step 11: pi1 o (fK as ts rs) = pi2 o (fK bs us vs)";
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1980
                    val pi1_pi2_result = Goal.prove context'' [] []
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1981
                      (HOLogic.mk_Trueprop (HOLogic.mk_eq
22311
ebcd44cb8d61 Curried and exported mk_perm.
berghofe
parents: 22274
diff changeset
  1982
                        (fold_rev (mk_perm []) pi1 rhs', fold_rev (mk_perm []) pi2 lhs')))
27450
d45d2850aaed Replaced all but one occurrence of perm_simp_tac by perm_simproc_app,
berghofe
parents: 27300
diff changeset
  1983
                      (fn _ => simp_tac (Simplifier.context context'' HOL_ss
d45d2850aaed Replaced all but one occurrence of perm_simp_tac by perm_simproc_app,
berghofe
parents: 27300
diff changeset
  1984
                           addsimps pi1_pi2_eqs @ rec_eqns
d45d2850aaed Replaced all but one occurrence of perm_simp_tac by perm_simproc_app,
berghofe
parents: 27300
diff changeset
  1985
                           addsimprocs [NominalPermeq.perm_simproc_app]) 1 THEN
20376
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1986
                         TRY (simp_tac (HOL_ss addsimps
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1987
                           (fresh_prems' @ freshs2' @ calc_atm @ perm_fresh_fresh)) 1));
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1988
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1989
                    val _ = warning "final result";
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1990
                    val final = Goal.prove context'' [] [] (term_of concl)
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1991
                      (fn _ => cut_facts_tac [pi1_pi2_result RS sym] 1 THEN
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1992
                        full_simp_tac (HOL_basic_ss addsimps perm_fresh_fresh @
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1993
                          fresh_results @ fresh_results') 1);
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1994
                    val final' = ProofContext.export context'' context' [final];
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1995
                    val _ = warning "finished!"
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1996
                  in
53b31f7c1d87 Finished implementation of uniqueness proof for recursion combinator.
berghofe
parents: 20267
diff changeset
  1997
                    resolve_tac final' 1
20397
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  1998
                  end) context 1])) idxss) (ndescr ~~ rec_elims))
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  1999
         end));
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2000
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2001
    val rec_total_thms = map (fn r => r RS theI') rec_unique_thms;
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2002
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2003
    (* define primrec combinators *)
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2004
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2005
    val big_reccomb_name = (space_implode "_" new_type_names) ^ "_rec";
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28736
diff changeset
  2006
    val reccomb_names = map (Sign.full_bname thy11)
20397
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2007
      (if length descr'' = 1 then [big_reccomb_name] else
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2008
        (map ((curry (op ^) (big_reccomb_name ^ "_")) o string_of_int)
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2009
          (1 upto (length descr''))));
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2010
    val reccombs = map (fn ((name, T), T') => list_comb
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2011
      (Const (name, rec_fn_Ts @ [T] ---> T'), rec_fns))
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2012
        (reccomb_names ~~ recTs ~~ rec_result_Ts);
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2013
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2014
    val (reccomb_defs, thy12) =
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2015
      thy11
24712
64ed05609568 proper Sign operations instead of Theory aliases;
wenzelm
parents: 24459
diff changeset
  2016
      |> 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
  2017
          (Binding.name (Long_Name.base_name name), rec_fn_Ts @ [T] ---> T', NoSyn))
20397
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2018
          (reccomb_names ~~ recTs ~~ rec_result_Ts))
27691
ce171cbd4b93 PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents: 27450
diff changeset
  2019
      |> (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
  2020
          (Binding.name (Long_Name.base_name name ^ "_def"), Logic.mk_equals (comb, absfree ("x", T,
20397
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2021
           Const ("The", (T' --> HOLogic.boolT) --> T') $ absfree ("y", T',
21021
6f19e5eb3a44 Adapted to new inductive definition package.
berghofe
parents: 20548
diff changeset
  2022
             set $ Free ("x", T) $ Free ("y", T'))))))
20397
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2023
               (reccomb_names ~~ reccombs ~~ rec_sets ~~ recTs ~~ rec_result_Ts));
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2024
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2025
    (* prove characteristic equations for primrec combinators *)
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2026
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2027
    val rec_thms = map (fn (prems, concl) =>
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2028
      let
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2029
        val _ $ (_ $ (_ $ x) $ _) = concl;
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2030
        val (_, cargs) = strip_comb x;
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2031
        val ps = map (fn (x as Free (_, T), i) =>
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2032
          (Free ("x" ^ string_of_int i, T), x)) (cargs ~~ (1 upto length cargs));
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2033
        val concl' = subst_atomic_types (rec_result_Ts' ~~ rec_result_Ts) concl;
21088
13348ab97f5a Added freshness context to FCBs.
berghofe
parents: 21073
diff changeset
  2034
        val prems' = List.concat finite_premss @ finite_ctxt_prems @
13348ab97f5a Added freshness context to FCBs.
berghofe
parents: 21073
diff changeset
  2035
          rec_prems @ rec_prems' @ map (subst_atomic ps) prems;
20397
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2036
        fun solve rules prems = resolve_tac rules THEN_ALL_NEW
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2037
          (resolve_tac prems THEN_ALL_NEW atac)
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2038
      in
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  2039
        Goal.prove_global thy12 []
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  2040
          (map (augment_sort thy12 fs_cp_sort) prems')
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  2041
          (augment_sort thy12 fs_cp_sort concl')
26711
3a478bfa1650 prove_global: pass context;
wenzelm
parents: 26689
diff changeset
  2042
          (fn {prems, ...} => EVERY
20397
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2043
            [rewrite_goals_tac reccomb_defs,
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2044
             rtac the1_equality 1,
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2045
             solve rec_unique_thms prems 1,
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2046
             resolve_tac rec_intrs 1,
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2047
             REPEAT (solve (prems @ rec_total_thms) prems 1)])
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2048
      end) (rec_eq_prems ~~
28731
c60ac7923a06 Added support for parametric datatypes.
berghofe
parents: 28662
diff changeset
  2049
        DatatypeProp.make_primrecs new_type_names descr' sorts thy12);
21365
4ee8e2702241 InductivePackage.add_inductive_i: canonical argument order;
wenzelm
parents: 21291
diff changeset
  2050
22433
400fa18e951f - Changed format of descriptor contained in nominal_datatype_info
berghofe
parents: 22311
diff changeset
  2051
    val dt_infos = map (make_dt_info pdescr sorts induct reccomb_names rec_thms)
21540
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
  2052
      ((0 upto length descr1 - 1) ~~ descr1 ~~ distinct_thms ~~ inject_thms);
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
  2053
19985
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  2054
    (* FIXME: theorems are stored in database for testing only *)
20397
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2055
    val (_, thy13) = thy12 |>
20145
922b4e7b8efd Started implementing uniqueness proof for recursion
berghofe
parents: 20071
diff changeset
  2056
      PureThy.add_thmss
29585
c23295521af5 binding replaces bstring
haftmann
parents: 29389
diff changeset
  2057
        [((Binding.name "rec_equiv", List.concat rec_equiv_thms), []),
c23295521af5 binding replaces bstring
haftmann
parents: 29389
diff changeset
  2058
         ((Binding.name "rec_equiv'", List.concat rec_equiv_thms'), []),
c23295521af5 binding replaces bstring
haftmann
parents: 29389
diff changeset
  2059
         ((Binding.name "rec_fin_supp", List.concat rec_fin_supp_thms), []),
c23295521af5 binding replaces bstring
haftmann
parents: 29389
diff changeset
  2060
         ((Binding.name "rec_fresh", List.concat rec_fresh_thms), []),
c23295521af5 binding replaces bstring
haftmann
parents: 29389
diff changeset
  2061
         ((Binding.name "rec_unique", map standard rec_unique_thms), []),
c23295521af5 binding replaces bstring
haftmann
parents: 29389
diff changeset
  2062
         ((Binding.name "recs", rec_thms), [])] ||>
24712
64ed05609568 proper Sign operations instead of Theory aliases;
wenzelm
parents: 24459
diff changeset
  2063
      Sign.parent_path ||>
21540
f3faed8276e6 Additional information about nominal datatypes (descriptor,
berghofe
parents: 21516
diff changeset
  2064
      map_nominal_datatypes (fold Symtab.update dt_infos);
19985
d39c554cf750 Implemented proofs of equivariance and finite support
berghofe
parents: 19874
diff changeset
  2065
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2066
  in
20397
243293620225 - Fixed bug that caused uniqueness proof for recursion
berghofe
parents: 20376
diff changeset
  2067
    thy13
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2068
  end;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2069
27275
f54aa7c4ff32 removed duplicate of DatatypePackage.read_typ;
wenzelm
parents: 27228
diff changeset
  2070
val add_nominal_datatype = gen_add_nominal_datatype DatatypePackage.read_typ true;
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2071
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2072
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2073
(* FIXME: The following stuff should be exported by DatatypePackage *)
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2074
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2075
local structure P = OuterParse and K = OuterKeyword in
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2076
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2077
val datatype_decl =
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2078
  Scan.option (P.$$$ "(" |-- P.name --| P.$$$ ")") -- P.type_args -- P.name -- P.opt_infix --
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2079
    (P.$$$ "=" |-- P.enum1 "|" (P.name -- Scan.repeat P.typ -- P.opt_mixfix));
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2080
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2081
fun mk_datatype args =
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2082
  let
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2083
    val names = map (fn ((((NONE, _), t), _), _) => t | ((((SOME t, _), _), _), _) => t) args;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2084
    val specs = map (fn ((((_, vs), t), mx), cons) =>
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2085
      (vs, t, mx, map (fn ((x, y), z) => (x, y, z)) cons)) args;
18068
e8c3d371594e Moved atom stuff to new file nominal_atoms.ML
berghofe
parents: 18067
diff changeset
  2086
  in add_nominal_datatype false names specs end;
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2087
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24814
diff changeset
  2088
val _ =
17870
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2089
  OuterSyntax.command "nominal_datatype" "define inductive datatypes" K.thy_decl
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2090
    (P.and_list1 datatype_decl >> (Toplevel.theory o mk_datatype));
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2091
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2092
end;
c35381811d5c Initial revision.
berghofe
parents:
diff changeset
  2093
18261
1318955d57ac Corrected treatment of non-recursive abstraction types.
berghofe
parents: 18246
diff changeset
  2094
end