src/HOLCF/Tools/domain/domain_theorems.ML
author wenzelm
Sat, 21 Jul 2007 23:25:00 +0200
changeset 23894 1a4167d761ac
parent 23152 9497234a2743
child 24503 2439587f516b
permissions -rw-r--r--
tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
     1
(*  Title:      HOLCF/Tools/domain/domain_theorems.ML
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
     3
    Author:     David von Oheimb
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
     4
                New proofs/tactics by Brian Huffman
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
     5
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
     6
Proof generator for domain command.
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
     7
*)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
     8
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
     9
val HOLCF_ss = simpset();
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    10
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    11
structure Domain_Theorems = struct
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    12
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    13
local
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    14
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    15
val adm_impl_admw = thm "adm_impl_admw";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    16
val antisym_less_inverse = thm "antisym_less_inverse";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    17
val beta_cfun = thm "beta_cfun";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    18
val cfun_arg_cong = thm "cfun_arg_cong";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    19
val ch2ch_Rep_CFunL = thm "ch2ch_Rep_CFunL";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    20
val ch2ch_Rep_CFunR = thm "ch2ch_Rep_CFunR";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    21
val chain_iterate = thm "chain_iterate";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    22
val compact_ONE = thm "compact_ONE";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    23
val compact_sinl = thm "compact_sinl";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    24
val compact_sinr = thm "compact_sinr";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    25
val compact_spair = thm "compact_spair";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    26
val compact_up = thm "compact_up";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    27
val contlub_cfun_arg = thm "contlub_cfun_arg";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    28
val contlub_cfun_fun = thm "contlub_cfun_fun";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    29
val fix_def2 = thm "fix_def2";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    30
val injection_eq = thm "injection_eq";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    31
val injection_less = thm "injection_less";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    32
val lub_equal = thm "lub_equal";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    33
val monofun_cfun_arg = thm "monofun_cfun_arg";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    34
val retraction_strict = thm "retraction_strict";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    35
val spair_eq = thm "spair_eq";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    36
val spair_less = thm "spair_less";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    37
val sscase1 = thm "sscase1";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    38
val ssplit1 = thm "ssplit1";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    39
val strictify1 = thm "strictify1";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    40
val wfix_ind = thm "wfix_ind";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    41
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    42
open Domain_Library;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    43
infixr 0 ===>;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    44
infixr 0 ==>;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    45
infix 0 == ; 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    46
infix 1 ===;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    47
infix 1 ~= ;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    48
infix 1 <<;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    49
infix 1 ~<<;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    50
infix 9 `   ;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    51
infix 9 `% ;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    52
infix 9 `%%;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    53
infixr 9 oo;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    54
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    55
(* ----- general proof facilities ------------------------------------------- *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    56
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    57
fun pg'' thy defs t tacs =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    58
  let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    59
    val t' = FixrecPackage.legacy_infer_term thy t;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    60
    val asms = Logic.strip_imp_prems t';
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    61
    val prop = Logic.strip_imp_concl t';
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    62
    fun tac prems =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    63
      rewrite_goals_tac defs THEN
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    64
      EVERY (tacs (map (rewrite_rule defs) prems));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    65
  in Goal.prove_global thy [] asms prop tac end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    66
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    67
fun pg' thy defs t tacsf =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    68
  let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    69
    fun tacs [] = tacsf
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    70
      | tacs prems = cut_facts_tac prems 1 :: tacsf;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    71
  in pg'' thy defs t tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    72
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    73
fun case_UU_tac rews i v =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    74
  case_tac (v^"=UU") i THEN
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    75
  asm_simp_tac (HOLCF_ss addsimps rews) i;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    76
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    77
val chain_tac =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    78
  REPEAT_DETERM o resolve_tac 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    79
    [chain_iterate, ch2ch_Rep_CFunR, ch2ch_Rep_CFunL];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    80
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    81
(* ----- general proofs ----------------------------------------------------- *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    82
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    83
val all2E = prove_goal HOL.thy "[| !x y . P x y; P x y ==> R |] ==> R"
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    84
  (fn prems =>[
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    85
    resolve_tac prems 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    86
    cut_facts_tac prems 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    87
    fast_tac HOL_cs 1]);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    88
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    89
val dist_eqI = prove_goal (the_context ()) "!!x::'a::po. ~ x << y ==> x ~= y" 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    90
  (fn prems =>
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    91
    [blast_tac (claset () addDs [antisym_less_inverse]) 1]);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    92
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    93
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    94
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    95
fun theorems (((dname, _), cons) : eq, eqs : eq list) thy =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    96
let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    97
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    98
val dummy = writeln ("Proving isomorphism properties of domain "^dname^" ...");
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    99
val pg = pg' thy;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   100
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   101
(* ----- getting the axioms and definitions --------------------------------- *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   102
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   103
local
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   104
  fun ga s dn = get_thm thy (Name (dn ^ "." ^ s));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   105
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   106
  val ax_abs_iso  = ga "abs_iso"  dname;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   107
  val ax_rep_iso  = ga "rep_iso"  dname;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   108
  val ax_when_def = ga "when_def" dname;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   109
  fun get_def mk_name (con,_) = ga (mk_name con^"_def") dname;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   110
  val axs_con_def = map (get_def extern_name) cons;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   111
  val axs_dis_def = map (get_def dis_name) cons;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   112
  val axs_mat_def = map (get_def mat_name) cons;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   113
  val axs_pat_def = map (get_def pat_name) cons;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   114
  val axs_sel_def =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   115
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   116
      fun def_of_sel sel = ga (sel^"_def") dname;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   117
      fun def_of_arg arg = Option.map def_of_sel (sel_of arg);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   118
      fun defs_of_con (_, args) = List.mapPartial def_of_arg args;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   119
    in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   120
      List.concat (map defs_of_con cons)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   121
    end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   122
  val ax_copy_def = ga "copy_def" dname;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   123
end; (* local *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   124
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   125
(* ----- theorems concerning the isomorphism -------------------------------- *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   126
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   127
val dc_abs  = %%:(dname^"_abs");
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   128
val dc_rep  = %%:(dname^"_rep");
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   129
val dc_copy = %%:(dname^"_copy");
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   130
val x_name = "x";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   131
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   132
val iso_locale = iso_intro OF [ax_abs_iso, ax_rep_iso];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   133
val abs_strict = ax_rep_iso RS (allI RS retraction_strict);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   134
val rep_strict = ax_abs_iso RS (allI RS retraction_strict);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   135
val abs_defin' = iso_locale RS iso_abs_defin';
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   136
val rep_defin' = iso_locale RS iso_rep_defin';
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   137
val iso_rews = map standard [ax_abs_iso,ax_rep_iso,abs_strict,rep_strict];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   138
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   139
(* ----- generating beta reduction rules from definitions-------------------- *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   140
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   141
local
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   142
  fun arglist (Const _ $ Abs (s, _, t)) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   143
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   144
      val (vars,body) = arglist t;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   145
    in (s :: vars, body) end
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   146
    | arglist t = ([], t);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   147
  fun bind_fun vars t = Library.foldr mk_All (vars, t);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   148
  fun bound_vars 0 = []
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   149
    | bound_vars i = Bound (i-1) :: bound_vars (i - 1);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   150
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   151
  fun appl_of_def def =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   152
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   153
      val (_ $ con $ lam) = concl_of def;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   154
      val (vars, rhs) = arglist lam;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   155
      val lhs = list_ccomb (con, bound_vars (length vars));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   156
      val appl = bind_fun vars (lhs == rhs);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   157
      val cs = ContProc.cont_thms lam;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   158
      val betas = map (fn c => mk_meta_eq (c RS beta_cfun)) cs;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   159
    in pg (def::betas) appl [rtac reflexive_thm 1] end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   160
end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   161
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   162
val when_appl = appl_of_def ax_when_def;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   163
val con_appls = map appl_of_def axs_con_def;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   164
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   165
local
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   166
  fun arg2typ n arg =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   167
    let val t = TVar (("'a", n), pcpoS)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   168
    in (n + 1, if is_lazy arg then mk_uT t else t) end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   169
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   170
  fun args2typ n [] = (n, oneT)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   171
    | args2typ n [arg] = arg2typ n arg
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   172
    | args2typ n (arg::args) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   173
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   174
      val (n1, t1) = arg2typ n arg;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   175
      val (n2, t2) = args2typ n1 args
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   176
    in (n2, mk_sprodT (t1, t2)) end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   177
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   178
  fun cons2typ n [] = (n,oneT)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   179
    | cons2typ n [con] = args2typ n (snd con)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   180
    | cons2typ n (con::cons) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   181
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   182
      val (n1, t1) = args2typ n (snd con);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   183
      val (n2, t2) = cons2typ n1 cons
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   184
    in (n2, mk_ssumT (t1, t2)) end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   185
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   186
  fun cons2ctyp cons = ctyp_of thy (snd (cons2typ 1 cons));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   187
end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   188
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   189
local 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   190
  val iso_swap = iso_locale RS iso_iso_swap;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   191
  fun one_con (con, args) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   192
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   193
      val vns = map vname args;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   194
      val eqn = %:x_name === con_app2 con %: vns;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   195
      val conj = foldr1 mk_conj (eqn :: map (defined o %:) (nonlazy args));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   196
    in Library.foldr mk_ex (vns, conj) end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   197
23894
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23152
diff changeset
   198
  val conj_assoc = @{thm conj_assoc};
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   199
  val exh = foldr1 mk_disj ((%:x_name === UU) :: map one_con cons);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   200
  val thm1 = instantiate' [SOME (cons2ctyp cons)] [] exh_start;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   201
  val thm2 = rewrite_rule (map mk_meta_eq ex_defined_iffs) thm1;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   202
  val thm3 = rewrite_rule [mk_meta_eq conj_assoc] thm2;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   203
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   204
  (* first 3 rules replace "x = UU \/ P" with "rep$x = UU \/ P" *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   205
  val tacs = [
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   206
    rtac disjE 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   207
    etac (rep_defin' RS disjI1) 2,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   208
    etac disjI2 2,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   209
    rewrite_goals_tac [mk_meta_eq iso_swap],
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   210
    rtac thm3 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   211
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   212
  val exhaust = pg con_appls (mk_trp exh) tacs;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   213
  val casedist =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   214
    standard (rewrite_rule exh_casedists (exhaust RS exh_casedist0));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   215
end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   216
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   217
local 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   218
  fun bind_fun t = Library.foldr mk_All (when_funs cons, t);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   219
  fun bound_fun i _ = Bound (length cons - i);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   220
  val when_app = list_ccomb (%%:(dname^"_when"), mapn bound_fun 1 cons);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   221
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   222
  val when_strict =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   223
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   224
      val axs = [when_appl, mk_meta_eq rep_strict];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   225
      val goal = bind_fun (mk_trp (strict when_app));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   226
      val tacs = [resolve_tac [sscase1, ssplit1, strictify1] 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   227
    in pg axs goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   228
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   229
  val when_apps =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   230
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   231
      fun one_when n (con,args) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   232
        let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   233
          val axs = when_appl :: con_appls;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   234
          val goal = bind_fun (lift_defined %: (nonlazy args, 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   235
                mk_trp (when_app`(con_app con args) ===
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   236
                       list_ccomb (bound_fun n 0, map %# args))));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   237
          val tacs = [asm_simp_tac (HOLCF_ss addsimps [ax_abs_iso]) 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   238
        in pg axs goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   239
    in mapn one_when 1 cons end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   240
end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   241
val when_rews = when_strict :: when_apps;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   242
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   243
(* ----- theorems concerning the constructors, discriminators and selectors - *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   244
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   245
local
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   246
  fun dis_strict (con, _) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   247
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   248
      val goal = mk_trp (strict (%%:(dis_name con)));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   249
    in pg axs_dis_def goal [rtac when_strict 1] end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   250
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   251
  fun dis_app c (con, args) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   252
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   253
      val lhs = %%:(dis_name c) ` con_app con args;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   254
      val rhs = %%:(if con = c then TT_N else FF_N);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   255
      val goal = lift_defined %: (nonlazy args, mk_trp (lhs === rhs));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   256
      val tacs = [asm_simp_tac (HOLCF_ss addsimps when_rews) 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   257
    in pg axs_dis_def goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   258
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   259
  val dis_apps = List.concat (map (fn (c,_) => map (dis_app c) cons) cons);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   260
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   261
  fun dis_defin (con, args) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   262
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   263
      val goal = defined (%:x_name) ==> defined (%%:(dis_name con) `% x_name);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   264
      val tacs =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   265
        [rtac casedist 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   266
         contr_tac 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   267
         DETERM_UNTIL_SOLVED (CHANGED
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   268
          (asm_simp_tac (HOLCF_ss addsimps dis_apps) 1))];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   269
    in pg [] goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   270
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   271
  val dis_stricts = map dis_strict cons;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   272
  val dis_defins = map dis_defin cons;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   273
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   274
  val dis_rews = dis_stricts @ dis_defins @ dis_apps;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   275
end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   276
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   277
local
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   278
  fun mat_strict (con, _) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   279
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   280
      val goal = mk_trp (strict (%%:(mat_name con)));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   281
      val tacs = [rtac when_strict 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   282
    in pg axs_mat_def goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   283
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   284
  val mat_stricts = map mat_strict cons;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   285
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   286
  fun one_mat c (con, args) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   287
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   288
      val lhs = %%:(mat_name c) ` con_app con args;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   289
      val rhs =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   290
        if con = c
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   291
        then %%:returnN ` mk_ctuple (map %# args)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   292
        else %%:failN;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   293
      val goal = lift_defined %: (nonlazy args, mk_trp (lhs === rhs));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   294
      val tacs = [asm_simp_tac (HOLCF_ss addsimps when_rews) 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   295
    in pg axs_mat_def goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   296
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   297
  val mat_apps =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   298
    List.concat (map (fn (c,_) => map (one_mat c) cons) cons);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   299
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   300
  val mat_rews = mat_stricts @ mat_apps;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   301
end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   302
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   303
local
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   304
  fun ps args = mapn (fn n => fn _ => %:("pat" ^ string_of_int n)) 1 args;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   305
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   306
  fun pat_lhs (con,args) = %%:branchN $ list_comb (%%:(pat_name con), ps args);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   307
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   308
  fun pat_rhs (con,[]) = %%:returnN ` ((%:"rhs") ` HOLogic.unit)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   309
    | pat_rhs (con,args) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   310
        (%%:branchN $ foldr1 cpair_pat (ps args))
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   311
          `(%:"rhs")`(mk_ctuple (map %# args));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   312
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   313
  fun pat_strict c =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   314
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   315
      val axs = branch_def :: axs_pat_def;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   316
      val goal = mk_trp (strict (pat_lhs c ` (%:"rhs")));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   317
      val tacs = [simp_tac (HOLCF_ss addsimps [when_strict]) 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   318
    in pg axs goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   319
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   320
  fun pat_app c (con, args) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   321
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   322
      val axs = branch_def :: axs_pat_def;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   323
      val lhs = (pat_lhs c)`(%:"rhs")`(con_app con args);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   324
      val rhs = if con = fst c then pat_rhs c else %%:failN;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   325
      val goal = lift_defined %: (nonlazy args, mk_trp (lhs === rhs));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   326
      val tacs = [asm_simp_tac (HOLCF_ss addsimps when_rews) 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   327
    in pg axs goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   328
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   329
  val pat_stricts = map pat_strict cons;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   330
  val pat_apps = List.concat (map (fn c => map (pat_app c) cons) cons);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   331
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   332
  val pat_rews = pat_stricts @ pat_apps;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   333
end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   334
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   335
local
23894
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23152
diff changeset
   336
  val rev_contrapos = @{thm rev_contrapos};
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   337
  fun con_strict (con, args) = 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   338
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   339
      fun one_strict vn =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   340
        let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   341
          fun f arg = if vname arg = vn then UU else %# arg;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   342
          val goal = mk_trp (con_app2 con f args === UU);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   343
          val tacs = [asm_simp_tac (HOLCF_ss addsimps [abs_strict]) 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   344
        in pg con_appls goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   345
    in map one_strict (nonlazy args) end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   346
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   347
  fun con_defin (con, args) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   348
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   349
      val concl = mk_trp (defined (con_app con args));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   350
      val goal = lift_defined %: (nonlazy args, concl);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   351
      val tacs = [
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   352
        rtac rev_contrapos 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   353
        eres_inst_tac [("f",dis_name con)] cfun_arg_cong 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   354
        asm_simp_tac (HOLCF_ss addsimps dis_rews) 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   355
    in pg [] goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   356
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   357
  val con_stricts = List.concat (map con_strict cons);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   358
  val con_defins = map con_defin cons;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   359
  val con_rews = con_stricts @ con_defins;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   360
end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   361
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   362
local
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   363
  val rules =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   364
    [compact_sinl, compact_sinr, compact_spair, compact_up, compact_ONE];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   365
  fun con_compact (con, args) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   366
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   367
      val concl = mk_trp (%%:compactN $ con_app con args);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   368
      val goal = lift (fn x => %%:compactN $ %#x) (args, concl);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   369
      val tacs = [
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   370
        rtac (iso_locale RS iso_compact_abs) 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   371
        REPEAT (resolve_tac rules 1 ORELSE atac 1)];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   372
    in pg con_appls goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   373
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   374
  val con_compacts = map con_compact cons;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   375
end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   376
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   377
local
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   378
  fun one_sel sel =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   379
    pg axs_sel_def (mk_trp (strict (%%:sel)))
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   380
      [simp_tac (HOLCF_ss addsimps when_rews) 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   381
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   382
  fun sel_strict (_, args) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   383
    List.mapPartial (Option.map one_sel o sel_of) args;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   384
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   385
  val sel_stricts = List.concat (map sel_strict cons);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   386
end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   387
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   388
local
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   389
  fun sel_app_same c n sel (con, args) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   390
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   391
      val nlas = nonlazy args;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   392
      val vns = map vname args;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   393
      val vnn = List.nth (vns, n);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   394
      val nlas' = List.filter (fn v => v <> vnn) nlas;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   395
      val lhs = (%%:sel)`(con_app con args);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   396
      val goal = lift_defined %: (nlas', mk_trp (lhs === %:vnn));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   397
      val tacs1 =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   398
        if vnn mem nlas
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   399
        then [case_UU_tac (when_rews @ con_stricts) 1 vnn]
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   400
        else [];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   401
      val tacs2 = [asm_simp_tac (HOLCF_ss addsimps when_rews) 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   402
    in pg axs_sel_def goal (tacs1 @ tacs2) end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   403
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   404
  fun sel_app_diff c n sel (con, args) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   405
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   406
      val nlas = nonlazy args;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   407
      val goal = mk_trp (%%:sel ` con_app con args === UU);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   408
      val tacs1 = map (case_UU_tac (when_rews @ con_stricts) 1) nlas;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   409
      val tacs2 = [asm_simp_tac (HOLCF_ss addsimps when_rews) 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   410
    in pg axs_sel_def goal (tacs1 @ tacs2) end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   411
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   412
  fun sel_app c n sel (con, args) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   413
    if con = c
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   414
    then sel_app_same c n sel (con, args)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   415
    else sel_app_diff c n sel (con, args);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   416
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   417
  fun one_sel c n sel = map (sel_app c n sel) cons;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   418
  fun one_sel' c n arg = Option.map (one_sel c n) (sel_of arg);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   419
  fun one_con (c, args) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   420
    List.concat (List.mapPartial I (mapn (one_sel' c) 0 args));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   421
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   422
  val sel_apps = List.concat (map one_con cons);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   423
end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   424
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   425
local
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   426
  fun sel_defin sel =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   427
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   428
      val goal = defined (%:x_name) ==> defined (%%:sel`%x_name);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   429
      val tacs = [
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   430
        rtac casedist 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   431
        contr_tac 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   432
        DETERM_UNTIL_SOLVED (CHANGED
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   433
          (asm_simp_tac (HOLCF_ss addsimps sel_apps) 1))];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   434
    in pg [] goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   435
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   436
  val sel_defins =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   437
    if length cons = 1
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   438
    then List.mapPartial (fn arg => Option.map sel_defin (sel_of arg))
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   439
                 (filter_out is_lazy (snd (hd cons)))
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   440
    else [];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   441
end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   442
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   443
val sel_rews = sel_stricts @ sel_defins @ sel_apps;
23894
1a4167d761ac tactics: avoid dynamic reference to accidental theory context (via ML_Context.the_context etc.);
wenzelm
parents: 23152
diff changeset
   444
val rev_contrapos = @{thm rev_contrapos};
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   445
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   446
val distincts_le =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   447
  let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   448
    fun dist (con1, args1) (con2, args2) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   449
      let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   450
        val goal = lift_defined %: (nonlazy args1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   451
                        mk_trp (con_app con1 args1 ~<< con_app con2 args2));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   452
        val tacs = [
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   453
          rtac rev_contrapos 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   454
          eres_inst_tac [("f", dis_name con1)] monofun_cfun_arg 1]
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   455
          @ map (case_UU_tac (con_stricts @ dis_rews) 1) (nonlazy args2)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   456
          @ [asm_simp_tac (HOLCF_ss addsimps dis_rews) 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   457
      in pg [] goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   458
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   459
    fun distinct (con1, args1) (con2, args2) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   460
        let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   461
          val arg1 = (con1, args1);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   462
          val arg2 =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   463
            (con2, ListPair.map (fn (arg,vn) => upd_vname (K vn) arg)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   464
              (args2, Name.variant_list (map vname args1) (map vname args2)));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   465
        in [dist arg1 arg2, dist arg2 arg1] end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   466
    fun distincts []      = []
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   467
      | distincts (c::cs) = (map (distinct c) cs) :: distincts cs;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   468
  in distincts cons end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   469
val dist_les = List.concat (List.concat distincts_le);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   470
val dist_eqs =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   471
  let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   472
    fun distinct (_,args1) ((_,args2), leqs) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   473
      let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   474
        val (le1,le2) = (hd leqs, hd(tl leqs));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   475
        val (eq1,eq2) = (le1 RS dist_eqI, le2 RS dist_eqI)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   476
      in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   477
        if nonlazy args1 = [] then [eq1, eq1 RS not_sym] else
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   478
        if nonlazy args2 = [] then [eq2, eq2 RS not_sym] else
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   479
          [eq1, eq2]
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   480
      end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   481
    fun distincts []      = []
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   482
      | distincts ((c,leqs)::cs) = List.concat
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   483
	            (ListPair.map (distinct c) ((map #1 cs),leqs)) @
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   484
		    distincts cs;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   485
  in map standard (distincts (cons ~~ distincts_le)) end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   486
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   487
local 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   488
  fun pgterm rel con args =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   489
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   490
      fun append s = upd_vname (fn v => v^s);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   491
      val (largs, rargs) = (args, map (append "'") args);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   492
      val concl =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   493
        foldr1 mk_conj (ListPair.map rel (map %# largs, map %# rargs));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   494
      val prem = rel (con_app con largs, con_app con rargs);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   495
      val sargs = case largs of [_] => [] | _ => nonlazy args;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   496
      val prop = lift_defined %: (sargs, mk_trp (prem === concl));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   497
    in pg con_appls prop end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   498
  val cons' = List.filter (fn (_,args) => args<>[]) cons;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   499
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   500
  val inverts =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   501
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   502
      val abs_less = ax_abs_iso RS (allI RS injection_less);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   503
      val tacs =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   504
        [asm_full_simp_tac (HOLCF_ss addsimps [abs_less, spair_less]) 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   505
    in map (fn (con, args) => pgterm (op <<) con args tacs) cons' end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   506
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   507
  val injects =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   508
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   509
      val abs_eq = ax_abs_iso RS (allI RS injection_eq);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   510
      val tacs = [asm_full_simp_tac (HOLCF_ss addsimps [abs_eq, spair_eq]) 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   511
    in map (fn (con, args) => pgterm (op ===) con args tacs) cons' end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   512
end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   513
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   514
(* ----- theorems concerning one induction step ----------------------------- *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   515
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   516
val copy_strict =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   517
  let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   518
    val goal = mk_trp (strict (dc_copy `% "f"));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   519
    val tacs = [asm_simp_tac (HOLCF_ss addsimps [abs_strict, when_strict]) 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   520
  in pg [ax_copy_def] goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   521
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   522
local
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   523
  fun copy_app (con, args) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   524
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   525
      val lhs = dc_copy`%"f"`(con_app con args);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   526
      val rhs = con_app2 con (app_rec_arg (cproj (%:"f") eqs)) args;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   527
      val goal = lift_defined %: (nonlazy_rec args, mk_trp (lhs === rhs));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   528
      val args' = List.filter (fn a => not (is_rec a orelse is_lazy a)) args;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   529
      val stricts = abs_strict::when_strict::con_stricts;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   530
      val tacs1 = map (case_UU_tac stricts 1 o vname) args';
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   531
      val tacs2 = [asm_simp_tac (HOLCF_ss addsimps when_apps) 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   532
    in pg [ax_copy_def] goal (tacs1 @ tacs2) end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   533
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   534
  val copy_apps = map copy_app cons;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   535
end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   536
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   537
local
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   538
  fun one_strict (con, args) = 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   539
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   540
      val goal = mk_trp (dc_copy`UU`(con_app con args) === UU);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   541
      val rews = copy_strict :: copy_apps @ con_rews;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   542
      val tacs = map (case_UU_tac rews 1) (nonlazy args) @
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   543
        [asm_simp_tac (HOLCF_ss addsimps rews) 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   544
    in pg [] goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   545
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   546
  fun has_nonlazy_rec (_, args) = exists is_nonlazy_rec args;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   547
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   548
  val copy_stricts = map one_strict (List.filter has_nonlazy_rec cons);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   549
end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   550
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   551
val copy_rews = copy_strict :: copy_apps @ copy_stricts;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   552
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   553
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   554
  thy
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   555
    |> Theory.add_path (Sign.base_name dname)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   556
    |> (snd o (PureThy.add_thmss (map Thm.no_attributes [
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   557
        ("iso_rews" , iso_rews  ),
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   558
        ("exhaust"  , [exhaust] ),
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   559
        ("casedist" , [casedist]),
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   560
        ("when_rews", when_rews ),
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   561
        ("compacts", con_compacts),
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   562
        ("con_rews", con_rews),
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   563
        ("sel_rews", sel_rews),
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   564
        ("dis_rews", dis_rews),
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   565
        ("pat_rews", pat_rews),
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   566
        ("dist_les", dist_les),
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   567
        ("dist_eqs", dist_eqs),
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   568
        ("inverts" , inverts ),
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   569
        ("injects" , injects ),
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   570
        ("copy_rews", copy_rews)])))
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   571
    |> (snd o PureThy.add_thmss
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   572
        [(("match_rews", mat_rews), [Simplifier.simp_add])])
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   573
    |> Theory.parent_path
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   574
    |> rpair (iso_rews @ when_rews @ con_rews @ sel_rews @ dis_rews @
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   575
        pat_rews @ dist_les @ dist_eqs @ copy_rews)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   576
end; (* let *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   577
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   578
fun comp_theorems (comp_dnam, eqs: eq list) thy =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   579
let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   580
val dnames = map (fst o fst) eqs;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   581
val conss  = map  snd        eqs;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   582
val comp_dname = Sign.full_name thy comp_dnam;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   583
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   584
val d = writeln("Proving induction properties of domain "^comp_dname^" ...");
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   585
val pg = pg' thy;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   586
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   587
(* ----- getting the composite axiom and definitions ------------------------ *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   588
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   589
local
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   590
  fun ga s dn = get_thm thy (Name (dn ^ "." ^ s));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   591
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   592
  val axs_reach      = map (ga "reach"     ) dnames;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   593
  val axs_take_def   = map (ga "take_def"  ) dnames;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   594
  val axs_finite_def = map (ga "finite_def") dnames;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   595
  val ax_copy2_def   =      ga "copy_def"  comp_dnam;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   596
  val ax_bisim_def   =      ga "bisim_def" comp_dnam;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   597
end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   598
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   599
local
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   600
  fun gt  s dn = get_thm  thy (Name (dn ^ "." ^ s));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   601
  fun gts s dn = get_thms thy (Name (dn ^ "." ^ s));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   602
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   603
  val cases = map (gt  "casedist" ) dnames;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   604
  val con_rews  = List.concat (map (gts "con_rews" ) dnames);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   605
  val copy_rews = List.concat (map (gts "copy_rews") dnames);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   606
end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   607
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   608
fun dc_take dn = %%:(dn^"_take");
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   609
val x_name = idx_name dnames "x"; 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   610
val P_name = idx_name dnames "P";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   611
val n_eqs = length eqs;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   612
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   613
(* ----- theorems concerning finite approximation and finite induction ------ *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   614
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   615
local
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   616
  val iterate_Cprod_ss = simpset_of (theory "Fix");
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   617
  val copy_con_rews  = copy_rews @ con_rews;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   618
  val copy_take_defs =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   619
    (if n_eqs = 1 then [] else [ax_copy2_def]) @ axs_take_def;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   620
  val take_stricts =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   621
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   622
      fun one_eq ((dn, args), _) = strict (dc_take dn $ %:"n");
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   623
      val goal = mk_trp (foldr1 mk_conj (map one_eq eqs));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   624
      val tacs = [
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   625
        induct_tac "n" 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   626
        simp_tac iterate_Cprod_ss 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   627
        asm_simp_tac (iterate_Cprod_ss addsimps copy_rews) 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   628
    in pg copy_take_defs goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   629
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   630
  val take_stricts' = rewrite_rule copy_take_defs take_stricts;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   631
  fun take_0 n dn =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   632
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   633
      val goal = mk_trp ((dc_take dn $ %%:"HOL.zero") `% x_name n === UU);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   634
    in pg axs_take_def goal [simp_tac iterate_Cprod_ss 1] end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   635
  val take_0s = mapn take_0 1 dnames;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   636
  val c_UU_tac = case_UU_tac (take_stricts'::copy_con_rews) 1;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   637
  val take_apps =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   638
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   639
      fun mk_eqn dn (con, args) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   640
        let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   641
          fun mk_take n = dc_take (List.nth (dnames, n)) $ %:"n";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   642
          val lhs = (dc_take dn $ (%%:"Suc" $ %:"n"))`(con_app con args);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   643
          val rhs = con_app2 con (app_rec_arg mk_take) args;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   644
        in Library.foldr mk_all (map vname args, lhs === rhs) end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   645
      fun mk_eqns ((dn, _), cons) = map (mk_eqn dn) cons;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   646
      val goal = mk_trp (foldr1 mk_conj (List.concat (map mk_eqns eqs)));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   647
      val simps = List.filter (has_fewer_prems 1) copy_rews;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   648
      fun con_tac (con, args) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   649
        if nonlazy_rec args = []
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   650
        then all_tac
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   651
        else EVERY (map c_UU_tac (nonlazy_rec args)) THEN
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   652
          asm_full_simp_tac (HOLCF_ss addsimps copy_rews) 1;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   653
      fun eq_tacs ((dn, _), cons) = map con_tac cons;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   654
      val tacs =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   655
        simp_tac iterate_Cprod_ss 1 ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   656
        induct_tac "n" 1 ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   657
        simp_tac (iterate_Cprod_ss addsimps copy_con_rews) 1 ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   658
        asm_full_simp_tac (HOLCF_ss addsimps simps) 1 ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   659
        TRY (safe_tac HOL_cs) ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   660
        List.concat (map eq_tacs eqs);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   661
    in pg copy_take_defs goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   662
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   663
  val take_rews = map standard
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   664
    (atomize take_stricts @ take_0s @ atomize take_apps);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   665
end; (* local *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   666
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   667
local
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   668
  fun one_con p (con,args) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   669
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   670
      fun ind_hyp arg = %:(P_name (1 + rec_of arg)) $ bound_arg args arg;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   671
      val t1 = mk_trp (%:p $ con_app2 con (bound_arg args) args);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   672
      val t2 = lift ind_hyp (List.filter is_rec args, t1);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   673
      val t3 = lift_defined (bound_arg (map vname args)) (nonlazy args, t2);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   674
    in Library.foldr mk_All (map vname args, t3) end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   675
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   676
  fun one_eq ((p, cons), concl) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   677
    mk_trp (%:p $ UU) ===> Logic.list_implies (map (one_con p) cons, concl);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   678
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   679
  fun ind_term concf = Library.foldr one_eq
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   680
    (mapn (fn n => fn x => (P_name n, x)) 1 conss,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   681
     mk_trp (foldr1 mk_conj (mapn concf 1 dnames)));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   682
  val take_ss = HOL_ss addsimps take_rews;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   683
  fun quant_tac i = EVERY
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   684
    (mapn (fn n => fn _ => res_inst_tac [("x", x_name n)] spec i) 1 dnames);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   685
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   686
  fun ind_prems_tac prems = EVERY
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   687
    (List.concat (map (fn cons =>
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   688
      (resolve_tac prems 1 ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   689
        List.concat (map (fn (_,args) => 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   690
          resolve_tac prems 1 ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   691
          map (K(atac 1)) (nonlazy args) @
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   692
          map (K(atac 1)) (List.filter is_rec args))
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   693
        cons)))
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   694
      conss));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   695
  local 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   696
    (* check whether every/exists constructor of the n-th part of the equation:
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   697
       it has a possibly indirectly recursive argument that isn't/is possibly 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   698
       indirectly lazy *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   699
    fun rec_to quant nfn rfn ns lazy_rec (n,cons) = quant (exists (fn arg => 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   700
          is_rec arg andalso not(rec_of arg mem ns) andalso
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   701
          ((rec_of arg =  n andalso nfn(lazy_rec orelse is_lazy arg)) orelse 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   702
            rec_of arg <> n andalso rec_to quant nfn rfn (rec_of arg::ns) 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   703
              (lazy_rec orelse is_lazy arg) (n, (List.nth(conss,rec_of arg))))
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   704
          ) o snd) cons;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   705
    fun all_rec_to ns  = rec_to forall not all_rec_to  ns;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   706
    fun warn (n,cons) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   707
      if all_rec_to [] false (n,cons)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   708
      then (warning ("domain "^List.nth(dnames,n)^" is empty!"); true)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   709
      else false;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   710
    fun lazy_rec_to ns = rec_to exists I  lazy_rec_to ns;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   711
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   712
  in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   713
    val n__eqs = mapn (fn n => fn (_,cons) => (n,cons)) 0 eqs;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   714
    val is_emptys = map warn n__eqs;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   715
    val is_finite = forall (not o lazy_rec_to [] false) n__eqs;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   716
  end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   717
in (* local *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   718
  val finite_ind =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   719
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   720
      fun concf n dn = %:(P_name n) $ (dc_take dn $ %:"n" `%(x_name n));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   721
      val goal = ind_term concf;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   722
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   723
      fun tacf prems =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   724
        let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   725
          val tacs1 = [
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   726
            quant_tac 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   727
            simp_tac HOL_ss 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   728
            induct_tac "n" 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   729
            simp_tac (take_ss addsimps prems) 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   730
            TRY (safe_tac HOL_cs)];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   731
          fun arg_tac arg =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   732
            case_UU_tac (prems @ con_rews) 1
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   733
              (List.nth (dnames, rec_of arg) ^ "_take n$" ^ vname arg);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   734
          fun con_tacs (con, args) = 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   735
            asm_simp_tac take_ss 1 ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   736
            map arg_tac (List.filter is_nonlazy_rec args) @
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   737
            [resolve_tac prems 1] @
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   738
            map (K (atac 1))      (nonlazy args) @
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   739
            map (K (etac spec 1)) (List.filter is_rec args);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   740
          fun cases_tacs (cons, cases) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   741
            res_inst_tac [("x","x")] cases 1 ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   742
            asm_simp_tac (take_ss addsimps prems) 1 ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   743
            List.concat (map con_tacs cons);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   744
        in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   745
          tacs1 @ List.concat (map cases_tacs (conss ~~ cases))
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   746
        end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   747
    in pg'' thy [] goal tacf end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   748
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   749
  val take_lemmas =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   750
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   751
      fun take_lemma n (dn, ax_reach) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   752
        let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   753
          val lhs = dc_take dn $ Bound 0 `%(x_name n);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   754
          val rhs = dc_take dn $ Bound 0 `%(x_name n^"'");
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   755
          val concl = mk_trp (%:(x_name n) === %:(x_name n^"'"));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   756
          val goal = mk_All ("n", mk_trp (lhs === rhs)) ===> concl;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   757
          fun tacf prems = [
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   758
            res_inst_tac [("t", x_name n    )] (ax_reach RS subst) 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   759
            res_inst_tac [("t", x_name n^"'")] (ax_reach RS subst) 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   760
            stac fix_def2 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   761
            REPEAT (CHANGED
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   762
              (rtac (contlub_cfun_arg RS ssubst) 1 THEN chain_tac 1)),
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   763
            stac contlub_cfun_fun 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   764
            stac contlub_cfun_fun 2,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   765
            rtac lub_equal 3,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   766
            chain_tac 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   767
            rtac allI 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   768
            resolve_tac prems 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   769
        in pg'' thy axs_take_def goal tacf end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   770
    in mapn take_lemma 1 (dnames ~~ axs_reach) end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   771
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   772
(* ----- theorems concerning finiteness and induction ----------------------- *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   773
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   774
  val (finites, ind) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   775
    if is_finite
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   776
    then (* finite case *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   777
      let 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   778
        fun take_enough dn = mk_ex ("n",dc_take dn $ Bound 0 ` %:"x" === %:"x");
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   779
        fun dname_lemma dn =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   780
          let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   781
            val prem1 = mk_trp (defined (%:"x"));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   782
            val disj1 = mk_all ("n", dc_take dn $ Bound 0 ` %:"x" === UU);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   783
            val prem2 = mk_trp (mk_disj (disj1, take_enough dn));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   784
            val concl = mk_trp (take_enough dn);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   785
            val goal = prem1 ===> prem2 ===> concl;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   786
            val tacs = [
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   787
              etac disjE 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   788
              etac notE 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   789
              resolve_tac take_lemmas 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   790
              asm_simp_tac take_ss 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   791
              atac 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   792
          in pg [] goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   793
        val finite_lemmas1a = map dname_lemma dnames;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   794
 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   795
        val finite_lemma1b =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   796
          let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   797
            fun mk_eqn n ((dn, args), _) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   798
              let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   799
                val disj1 = dc_take dn $ Bound 1 ` Bound 0 === UU;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   800
                val disj2 = dc_take dn $ Bound 1 ` Bound 0 === Bound 0;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   801
              in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   802
                mk_constrainall
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   803
                  (x_name n, Type (dn,args), mk_disj (disj1, disj2))
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   804
              end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   805
            val goal =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   806
              mk_trp (mk_all ("n", foldr1 mk_conj (mapn mk_eqn 1 eqs)));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   807
            fun arg_tacs vn = [
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   808
              eres_inst_tac [("x", vn)] all_dupE 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   809
              etac disjE 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   810
              asm_simp_tac (HOL_ss addsimps con_rews) 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   811
              asm_simp_tac take_ss 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   812
            fun con_tacs (con, args) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   813
              asm_simp_tac take_ss 1 ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   814
              List.concat (map arg_tacs (nonlazy_rec args));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   815
            fun foo_tacs n (cons, cases) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   816
              simp_tac take_ss 1 ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   817
              rtac allI 1 ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   818
              res_inst_tac [("x",x_name n)] cases 1 ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   819
              asm_simp_tac take_ss 1 ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   820
              List.concat (map con_tacs cons);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   821
            val tacs =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   822
              rtac allI 1 ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   823
              induct_tac "n" 1 ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   824
              simp_tac take_ss 1 ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   825
              TRY (safe_tac (empty_cs addSEs [conjE] addSIs [conjI])) ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   826
              List.concat (mapn foo_tacs 1 (conss ~~ cases));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   827
          in pg [] goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   828
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   829
        fun one_finite (dn, l1b) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   830
          let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   831
            val goal = mk_trp (%%:(dn^"_finite") $ %:"x");
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   832
            val tacs = [
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   833
              case_UU_tac take_rews 1 "x",
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   834
              eresolve_tac finite_lemmas1a 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   835
              step_tac HOL_cs 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   836
              step_tac HOL_cs 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   837
              cut_facts_tac [l1b] 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   838
              fast_tac HOL_cs 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   839
          in pg axs_finite_def goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   840
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   841
        val finites = map one_finite (dnames ~~ atomize finite_lemma1b);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   842
        val ind =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   843
          let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   844
            fun concf n dn = %:(P_name n) $ %:(x_name n);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   845
            fun tacf prems =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   846
              let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   847
                fun finite_tacs (finite, fin_ind) = [
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   848
                  rtac(rewrite_rule axs_finite_def finite RS exE)1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   849
                  etac subst 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   850
                  rtac fin_ind 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   851
                  ind_prems_tac prems];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   852
              in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   853
                TRY (safe_tac HOL_cs) ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   854
                List.concat (map finite_tacs (finites ~~ atomize finite_ind))
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   855
              end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   856
          in pg'' thy [] (ind_term concf) tacf end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   857
      in (finites, ind) end (* let *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   858
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   859
    else (* infinite case *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   860
      let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   861
        fun one_finite n dn =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   862
          read_instantiate_sg thy
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   863
            [("P",dn^"_finite "^x_name n)] excluded_middle;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   864
        val finites = mapn one_finite 1 dnames;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   865
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   866
        val goal =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   867
          let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   868
            fun one_adm n _ = mk_trp (%%:admN $ %:(P_name n));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   869
            fun concf n dn = %:(P_name n) $ %:(x_name n);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   870
          in Logic.list_implies (mapn one_adm 1 dnames, ind_term concf) end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   871
        fun tacf prems =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   872
          map (fn ax_reach => rtac (ax_reach RS subst) 1) axs_reach @ [
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   873
          quant_tac 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   874
          rtac (adm_impl_admw RS wfix_ind) 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   875
          REPEAT_DETERM (rtac adm_all2 1),
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   876
          REPEAT_DETERM (
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   877
            TRY (rtac adm_conj 1) THEN 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   878
            rtac adm_subst 1 THEN 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   879
            cont_tacR 1 THEN resolve_tac prems 1),
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   880
          strip_tac 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   881
          rtac (rewrite_rule axs_take_def finite_ind) 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   882
          ind_prems_tac prems];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   883
        val ind = (pg'' thy [] goal tacf
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   884
          handle ERROR _ =>
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   885
            (warning "Cannot prove infinite induction rule"; refl));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   886
      in (finites, ind) end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   887
end; (* local *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   888
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   889
(* ----- theorem concerning coinduction ------------------------------------- *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   890
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   891
local
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   892
  val xs = mapn (fn n => K (x_name n)) 1 dnames;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   893
  fun bnd_arg n i = Bound(2*(n_eqs - n)-i-1);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   894
  val take_ss = HOL_ss addsimps take_rews;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   895
  val sproj = prj (fn s => K("fst("^s^")")) (fn s => K("snd("^s^")"));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   896
  val coind_lemma =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   897
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   898
      fun mk_prj n _ = proj (%:"R") eqs n $ bnd_arg n 0 $ bnd_arg n 1;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   899
      fun mk_eqn n dn =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   900
        (dc_take dn $ %:"n" ` bnd_arg n 0) ===
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   901
        (dc_take dn $ %:"n" ` bnd_arg n 1);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   902
      fun mk_all2 (x,t) = mk_all (x, mk_all (x^"'", t));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   903
      val goal =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   904
        mk_trp (mk_imp (%%:(comp_dname^"_bisim") $ %:"R",
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   905
          Library.foldr mk_all2 (xs,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   906
            Library.foldr mk_imp (mapn mk_prj 0 dnames,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   907
              foldr1 mk_conj (mapn mk_eqn 0 dnames)))));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   908
      fun x_tacs n x = [
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   909
        rotate_tac (n+1) 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   910
        etac all2E 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   911
        eres_inst_tac [("P1", sproj "R" eqs n^" "^x^" "^x^"'")] (mp RS disjE) 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   912
        TRY (safe_tac HOL_cs),
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   913
        REPEAT (CHANGED (asm_simp_tac take_ss 1))];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   914
      val tacs = [
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   915
        rtac impI 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   916
        induct_tac "n" 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   917
        simp_tac take_ss 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   918
        safe_tac HOL_cs] @
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   919
        List.concat (mapn x_tacs 0 xs);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   920
    in pg [ax_bisim_def] goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   921
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   922
  val coind = 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   923
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   924
      fun mk_prj n x = mk_trp (proj (%:"R") eqs n $ %:x $ %:(x^"'"));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   925
      fun mk_eqn x = %:x === %:(x^"'");
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   926
      val goal =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   927
        mk_trp (%%:(comp_dname^"_bisim") $ %:"R") ===>
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   928
          Logic.list_implies (mapn mk_prj 0 xs,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   929
            mk_trp (foldr1 mk_conj (map mk_eqn xs)));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   930
      val tacs =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   931
        TRY (safe_tac HOL_cs) ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   932
        List.concat (map (fn take_lemma => [
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   933
          rtac take_lemma 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   934
          cut_facts_tac [coind_lemma] 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   935
          fast_tac HOL_cs 1])
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   936
        take_lemmas);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   937
    in pg [] goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   938
end; (* local *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   939
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   940
in thy |> Theory.add_path comp_dnam
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   941
       |> (snd o (PureThy.add_thmss (map Thm.no_attributes [
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   942
		("take_rews"  , take_rews  ),
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   943
		("take_lemmas", take_lemmas),
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   944
		("finites"    , finites    ),
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   945
		("finite_ind", [finite_ind]),
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   946
		("ind"       , [ind       ]),
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   947
		("coind"     , [coind     ])])))
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   948
       |> Theory.parent_path |> rpair take_rews
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   949
end; (* let *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   950
end; (* local *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   951
end; (* struct *)