src/HOLCF/Tools/Domain/domain_theorems.ML
author huffman
Sat, 27 Feb 2010 08:30:11 -0800
changeset 35457 d63655b88369
parent 35456 5356534f880e
child 35458 deaf221c4a59
permissions -rw-r--r--
move proofs of casedist into domain_constructors.ML
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
32126
a5042f260440 obey captialized directory names convention
haftmann
parents: 31288
diff changeset
     1
(*  Title:      HOLCF/Tools/Domain/domain_theorems.ML
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
     2
    Author:     David von Oheimb
32740
9dd0a2f83429 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32172
diff changeset
     3
    Author:     Brian Huffman
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
     4
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
     5
Proof generator for domain command.
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
     6
*)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
     7
26342
0f65fa163304 more antiquotations;
wenzelm
parents: 26336
diff changeset
     8
val HOLCF_ss = @{simpset};
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
     9
31005
e55eed7d9b55 add module signature for domain_theorems.ML
huffman
parents: 31004
diff changeset
    10
signature DOMAIN_THEOREMS =
e55eed7d9b55 add module signature for domain_theorems.ML
huffman
parents: 31004
diff changeset
    11
sig
35444
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
    12
  val theorems:
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
    13
    Domain_Library.eq * Domain_Library.eq list
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
    14
    -> typ * (binding * (bool * binding option * typ) list * mixfix) list
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
    15
    -> theory -> thm list * theory;
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
    16
31005
e55eed7d9b55 add module signature for domain_theorems.ML
huffman
parents: 31004
diff changeset
    17
  val comp_theorems: bstring * Domain_Library.eq list -> theory -> thm list * theory;
32740
9dd0a2f83429 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32172
diff changeset
    18
  val quiet_mode: bool Unsynchronized.ref;
9dd0a2f83429 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32172
diff changeset
    19
  val trace_domain: bool Unsynchronized.ref;
31005
e55eed7d9b55 add module signature for domain_theorems.ML
huffman
parents: 31004
diff changeset
    20
end;
e55eed7d9b55 add module signature for domain_theorems.ML
huffman
parents: 31004
diff changeset
    21
31023
d027411c9a38 use opaque ascription for all HOLCF code
huffman
parents: 31005
diff changeset
    22
structure Domain_Theorems :> DOMAIN_THEOREMS =
31005
e55eed7d9b55 add module signature for domain_theorems.ML
huffman
parents: 31004
diff changeset
    23
struct
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    24
32740
9dd0a2f83429 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32172
diff changeset
    25
val quiet_mode = Unsynchronized.ref false;
9dd0a2f83429 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32172
diff changeset
    26
val trace_domain = Unsynchronized.ref false;
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
    27
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
    28
fun message s = if !quiet_mode then () else writeln s;
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
    29
fun trace s = if !trace_domain then tracing s else ();
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
    30
25805
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    31
val adm_impl_admw = @{thm adm_impl_admw};
25895
0eaadfa8889e converted adm_all and adm_ball to rule_format; cleaned up
huffman
parents: 25805
diff changeset
    32
val adm_all = @{thm adm_all};
25805
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    33
val adm_conj = @{thm adm_conj};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    34
val adm_subst = @{thm adm_subst};
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31023
diff changeset
    35
val antisym_less_inverse = @{thm below_antisym_inverse};
25805
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    36
val beta_cfun = @{thm beta_cfun};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    37
val cfun_arg_cong = @{thm cfun_arg_cong};
33396
45c5c3c51918 domain package no longer uses cfst/csnd/cpair
huffman
parents: 33317
diff changeset
    38
val ch2ch_fst = @{thm ch2ch_fst};
45c5c3c51918 domain package no longer uses cfst/csnd/cpair
huffman
parents: 33317
diff changeset
    39
val ch2ch_snd = @{thm ch2ch_snd};
25805
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    40
val ch2ch_Rep_CFunL = @{thm ch2ch_Rep_CFunL};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    41
val ch2ch_Rep_CFunR = @{thm ch2ch_Rep_CFunR};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    42
val chain_iterate = @{thm chain_iterate};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    43
val compact_ONE = @{thm compact_ONE};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    44
val compact_sinl = @{thm compact_sinl};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    45
val compact_sinr = @{thm compact_sinr};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    46
val compact_spair = @{thm compact_spair};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    47
val compact_up = @{thm compact_up};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    48
val contlub_cfun_arg = @{thm contlub_cfun_arg};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    49
val contlub_cfun_fun = @{thm contlub_cfun_fun};
33396
45c5c3c51918 domain package no longer uses cfst/csnd/cpair
huffman
parents: 33317
diff changeset
    50
val contlub_fst = @{thm contlub_fst};
45c5c3c51918 domain package no longer uses cfst/csnd/cpair
huffman
parents: 33317
diff changeset
    51
val contlub_snd = @{thm contlub_snd};
45c5c3c51918 domain package no longer uses cfst/csnd/cpair
huffman
parents: 33317
diff changeset
    52
val contlubE = @{thm contlubE};
45c5c3c51918 domain package no longer uses cfst/csnd/cpair
huffman
parents: 33317
diff changeset
    53
val cont_const = @{thm cont_const};
45c5c3c51918 domain package no longer uses cfst/csnd/cpair
huffman
parents: 33317
diff changeset
    54
val cont_id = @{thm cont_id};
45c5c3c51918 domain package no longer uses cfst/csnd/cpair
huffman
parents: 33317
diff changeset
    55
val cont2cont_fst = @{thm cont2cont_fst};
45c5c3c51918 domain package no longer uses cfst/csnd/cpair
huffman
parents: 33317
diff changeset
    56
val cont2cont_snd = @{thm cont2cont_snd};
45c5c3c51918 domain package no longer uses cfst/csnd/cpair
huffman
parents: 33317
diff changeset
    57
val cont2cont_Rep_CFun = @{thm cont2cont_Rep_CFun};
25805
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    58
val fix_def2 = @{thm fix_def2};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    59
val injection_eq = @{thm injection_eq};
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31023
diff changeset
    60
val injection_less = @{thm injection_below};
25805
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    61
val lub_equal = @{thm lub_equal};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    62
val monofun_cfun_arg = @{thm monofun_cfun_arg};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    63
val retraction_strict = @{thm retraction_strict};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    64
val spair_eq = @{thm spair_eq};
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31023
diff changeset
    65
val spair_less = @{thm spair_below};
25805
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    66
val sscase1 = @{thm sscase1};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    67
val ssplit1 = @{thm ssplit1};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    68
val strictify1 = @{thm strictify1};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    69
val wfix_ind = @{thm wfix_ind};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    70
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    71
val iso_intro       = @{thm iso.intro};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    72
val iso_abs_iso     = @{thm iso.abs_iso};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    73
val iso_rep_iso     = @{thm iso.rep_iso};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    74
val iso_abs_strict  = @{thm iso.abs_strict};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    75
val iso_rep_strict  = @{thm iso.rep_strict};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    76
val iso_abs_defin'  = @{thm iso.abs_defin'};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    77
val iso_rep_defin'  = @{thm iso.rep_defin'};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    78
val iso_abs_defined = @{thm iso.abs_defined};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    79
val iso_rep_defined = @{thm iso.rep_defined};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    80
val iso_compact_abs = @{thm iso.compact_abs};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    81
val iso_compact_rep = @{thm iso.compact_rep};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    82
val iso_iso_swap    = @{thm iso.iso_swap};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    83
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    84
val exh_start = @{thm exh_start};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    85
val ex_defined_iffs = @{thms ex_defined_iffs};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    86
val exh_casedist0 = @{thm exh_casedist0};
5df82bb5b982 new-style theorem references
huffman
parents: 25132
diff changeset
    87
val exh_casedists = @{thms exh_casedists};
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    88
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    89
open Domain_Library;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    90
infixr 0 ===>;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    91
infixr 0 ==>;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    92
infix 0 == ; 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    93
infix 1 ===;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    94
infix 1 ~= ;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    95
infix 1 <<;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    96
infix 1 ~<<;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    97
infix 9 `   ;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    98
infix 9 `% ;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    99
infix 9 `%%;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   100
infixr 9 oo;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   101
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   102
(* ----- general proof facilities ------------------------------------------- *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   103
24503
2439587f516b legacy_infer_term: ProofContext.mode_schematic;
wenzelm
parents: 23894
diff changeset
   104
fun legacy_infer_term thy t =
2439587f516b legacy_infer_term: ProofContext.mode_schematic;
wenzelm
parents: 23894
diff changeset
   105
  let val ctxt = ProofContext.set_mode ProofContext.mode_schematic (ProofContext.init thy)
2439587f516b legacy_infer_term: ProofContext.mode_schematic;
wenzelm
parents: 23894
diff changeset
   106
  in singleton (Syntax.check_terms ctxt) (Sign.intern_term thy t) end;
2439587f516b legacy_infer_term: ProofContext.mode_schematic;
wenzelm
parents: 23894
diff changeset
   107
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   108
fun pg'' thy defs t tacs =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   109
  let
24503
2439587f516b legacy_infer_term: ProofContext.mode_schematic;
wenzelm
parents: 23894
diff changeset
   110
    val t' = legacy_infer_term thy t;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   111
    val asms = Logic.strip_imp_prems t';
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   112
    val prop = Logic.strip_imp_concl t';
26711
3a478bfa1650 prove_global: pass context;
wenzelm
parents: 26343
diff changeset
   113
    fun tac {prems, context} =
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   114
      rewrite_goals_tac defs THEN
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   115
      EVERY (tacs {prems = map (rewrite_rule defs) prems, context = context})
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   116
  in Goal.prove_global thy [] asms prop tac end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   117
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   118
fun pg' thy defs t tacsf =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   119
  let
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   120
    fun tacs {prems, context} =
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   121
      if null prems then tacsf context
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   122
      else cut_facts_tac prems 1 :: tacsf context;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   123
  in pg'' thy defs t tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   124
35443
2e0f9516947e change domain package's treatment of variable names in theorems to be like datatype package
huffman
parents: 35288
diff changeset
   125
(* FIXME!!!!!!!!! *)
2e0f9516947e change domain package's treatment of variable names in theorems to be like datatype package
huffman
parents: 35288
diff changeset
   126
(* We should NEVER re-parse variable names as strings! *)
2e0f9516947e change domain package's treatment of variable names in theorems to be like datatype package
huffman
parents: 35288
diff changeset
   127
(* The names can conflict with existing constants or other syntax! *)
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   128
fun case_UU_tac ctxt rews i v =
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   129
  InductTacs.case_tac ctxt (v^"=UU") i THEN
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   130
  asm_simp_tac (HOLCF_ss addsimps rews) i;
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 chain_tac =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   133
  REPEAT_DETERM o resolve_tac 
33396
45c5c3c51918 domain package no longer uses cfst/csnd/cpair
huffman
parents: 33317
diff changeset
   134
    [chain_iterate, ch2ch_Rep_CFunR, ch2ch_Rep_CFunL, ch2ch_fst, ch2ch_snd];
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   135
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   136
(* ----- general proofs ----------------------------------------------------- *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   137
29064
70a61d58460e more antiquotations;
wenzelm
parents: 28965
diff changeset
   138
val all2E = @{lemma "!x y . P x y ==> (P x y ==> R) ==> R" by simp}
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   139
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31023
diff changeset
   140
val dist_eqI = @{lemma "!!x::'a::po. ~ x << y ==> x ~= y" by (blast dest!: below_antisym_inverse)}
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   141
35444
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   142
fun theorems
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   143
    (((dname, _), cons) : eq, eqs : eq list)
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   144
    (dom_eqn : typ * (binding * (bool * binding option * typ) list * mixfix) list)
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   145
    (thy : theory) =
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   146
let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   147
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   148
val _ = message ("Proving isomorphism properties of domain "^dname^" ...");
33801
e8535acd302c copy_of_dtyp uses map table from theory data
huffman
parents: 33504
diff changeset
   149
val map_tab = Domain_Isomorphism.get_map_tab thy;
e8535acd302c copy_of_dtyp uses map table from theory data
huffman
parents: 33504
diff changeset
   150
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   151
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   152
(* ----- getting the axioms and definitions --------------------------------- *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   153
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   154
local
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26342
diff changeset
   155
  fun ga s dn = PureThy.get_thm thy (dn ^ "." ^ s);
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   156
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   157
  val ax_abs_iso  = ga "abs_iso"  dname;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   158
  val ax_rep_iso  = ga "rep_iso"  dname;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   159
  val ax_when_def = ga "when_def" dname;
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   160
  fun get_def mk_name (con, _, _) = ga (mk_name con^"_def") dname;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   161
  val axs_dis_def = map (get_def dis_name) cons;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   162
  val axs_mat_def = map (get_def mat_name) cons;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   163
  val axs_pat_def = map (get_def pat_name) cons;
35446
b719dad322fa rewrite domain package code for selector functions
huffman
parents: 35444
diff changeset
   164
(*
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   165
  val axs_sel_def =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   166
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   167
      fun def_of_sel sel = ga (sel^"_def") dname;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   168
      fun def_of_arg arg = Option.map def_of_sel (sel_of arg);
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   169
      fun defs_of_con (_, _, args) = map_filter def_of_arg args;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   170
    in
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26012
diff changeset
   171
      maps defs_of_con cons
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   172
    end;
35446
b719dad322fa rewrite domain package code for selector functions
huffman
parents: 35444
diff changeset
   173
*)
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   174
  val ax_copy_def = ga "copy_def" dname;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   175
end; (* local *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   176
35444
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   177
(* ----- define constructors ------------------------------------------------ *)
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   178
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   179
val lhsT = fst dom_eqn;
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   180
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   181
val rhsT =
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   182
  let
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   183
    fun mk_arg_typ (lazy, sel, T) = if lazy then mk_uT T else T;
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   184
    fun mk_con_typ (bind, args, mx) =
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   185
        if null args then oneT else foldr1 mk_sprodT (map mk_arg_typ args);
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   186
    fun mk_eq_typ (_, cons) = foldr1 mk_ssumT (map mk_con_typ cons);
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   187
  in
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   188
    mk_eq_typ dom_eqn
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   189
  end;
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   190
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   191
val rep_const = Const(dname^"_rep", lhsT ->> rhsT);
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   192
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   193
val abs_const = Const(dname^"_abs", rhsT ->> lhsT);
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   194
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   195
val (result, thy) =
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   196
  Domain_Constructors.add_domain_constructors
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   197
    (Long_Name.base_name dname) dom_eqn
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   198
    (rep_const, abs_const) (ax_rep_iso, ax_abs_iso) thy;
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   199
35451
a726a033b313 don't bother returning con_defs
huffman
parents: 35448
diff changeset
   200
val con_appls = #con_betas result;
35457
d63655b88369 move proofs of casedist into domain_constructors.ML
huffman
parents: 35456
diff changeset
   201
val {exhaust, casedist, ...} = result;
d63655b88369 move proofs of casedist into domain_constructors.ML
huffman
parents: 35456
diff changeset
   202
val {con_compacts, con_rews, inverts, injects, ...} = result;
d63655b88369 move proofs of casedist into domain_constructors.ML
huffman
parents: 35456
diff changeset
   203
val {sel_rews, ...} = result;
d63655b88369 move proofs of casedist into domain_constructors.ML
huffman
parents: 35456
diff changeset
   204
35444
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   205
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   206
(* ----- theorems concerning the isomorphism -------------------------------- *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   207
35444
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   208
val pg = pg' thy;
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   209
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   210
val dc_abs  = %%:(dname^"_abs");
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   211
val dc_rep  = %%:(dname^"_rep");
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   212
val dc_copy = %%:(dname^"_copy");
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   213
val x_name = "x";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   214
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   215
val iso_locale = iso_intro OF [ax_abs_iso, ax_rep_iso];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   216
val abs_strict = ax_rep_iso RS (allI RS retraction_strict);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   217
val rep_strict = ax_abs_iso RS (allI RS retraction_strict);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   218
val abs_defin' = iso_locale RS iso_abs_defin';
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   219
val rep_defin' = iso_locale RS iso_rep_defin';
35021
c839a4c670c6 renamed old-style Drule.standard to Drule.export_without_context, to emphasize that this is in no way a standard operation;
wenzelm
parents: 34974
diff changeset
   220
val iso_rews = map Drule.export_without_context [ax_abs_iso, ax_rep_iso, abs_strict, rep_strict];
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   221
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   222
(* ----- generating beta reduction rules from definitions-------------------- *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   223
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   224
val _ = trace " Proving beta reduction rules...";
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   225
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   226
local
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   227
  fun arglist (Const _ $ Abs (s, _, t)) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   228
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   229
      val (vars,body) = arglist t;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   230
    in (s :: vars, body) end
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   231
    | arglist t = ([], t);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   232
  fun bind_fun vars t = Library.foldr mk_All (vars, t);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   233
  fun bound_vars 0 = []
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   234
    | bound_vars i = Bound (i-1) :: bound_vars (i - 1);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   235
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   236
  fun appl_of_def def =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   237
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   238
      val (_ $ con $ lam) = concl_of def;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   239
      val (vars, rhs) = arglist lam;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   240
      val lhs = list_ccomb (con, bound_vars (length vars));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   241
      val appl = bind_fun vars (lhs == rhs);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   242
      val cs = ContProc.cont_thms lam;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   243
      val betas = map (fn c => mk_meta_eq (c RS beta_cfun)) cs;
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   244
    in pg (def::betas) appl (K [rtac reflexive_thm 1]) end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   245
end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   246
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   247
val _ = trace "Proving when_appl...";
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   248
val when_appl = appl_of_def ax_when_def;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   249
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   250
local 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   251
  fun bind_fun t = Library.foldr mk_All (when_funs cons, t);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   252
  fun bound_fun i _ = Bound (length cons - i);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   253
  val when_app = list_ccomb (%%:(dname^"_when"), mapn bound_fun 1 cons);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   254
in
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   255
  val _ = trace " Proving when_strict...";
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   256
  val when_strict =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   257
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   258
      val axs = [when_appl, mk_meta_eq rep_strict];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   259
      val goal = bind_fun (mk_trp (strict when_app));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   260
      val tacs = [resolve_tac [sscase1, ssplit1, strictify1] 1];
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   261
    in pg axs goal (K tacs) end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   262
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   263
  val _ = trace " Proving when_apps...";
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   264
  val when_apps =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   265
    let
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   266
      fun one_when n (con, _, args) =
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   267
        let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   268
          val axs = when_appl :: con_appls;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   269
          val goal = bind_fun (lift_defined %: (nonlazy args, 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   270
                mk_trp (when_app`(con_app con args) ===
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   271
                       list_ccomb (bound_fun n 0, map %# args))));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   272
          val tacs = [asm_simp_tac (HOLCF_ss addsimps [ax_abs_iso]) 1];
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   273
        in pg axs goal (K tacs) end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   274
    in mapn one_when 1 cons end;
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
val when_rews = when_strict :: when_apps;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   277
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   278
(* ----- theorems concerning the constructors, discriminators and selectors - *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   279
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   280
local
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   281
  fun dis_strict (con, _, _) =
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   282
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   283
      val goal = mk_trp (strict (%%:(dis_name con)));
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   284
    in pg axs_dis_def goal (K [rtac when_strict 1]) end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   285
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   286
  fun dis_app c (con, _, args) =
23152
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 = %%:(dis_name c) ` con_app con args;
26012
f6917792f8a4 new term-building combinators
huffman
parents: 25895
diff changeset
   289
      val rhs = if con = c then TT else FF;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   290
      val goal = lift_defined %: (nonlazy args, mk_trp (lhs === rhs));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   291
      val tacs = [asm_simp_tac (HOLCF_ss addsimps when_rews) 1];
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   292
    in pg axs_dis_def goal (K tacs) end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   293
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   294
  val _ = trace " Proving dis_apps...";
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   295
  val dis_apps = maps (fn (c,_,_) => map (dis_app c) cons) cons;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   296
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   297
  fun dis_defin (con, _, args) =
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   298
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   299
      val goal = defined (%:x_name) ==> defined (%%:(dis_name con) `% x_name);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   300
      val tacs =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   301
        [rtac casedist 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   302
         contr_tac 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   303
         DETERM_UNTIL_SOLVED (CHANGED
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   304
          (asm_simp_tac (HOLCF_ss addsimps dis_apps) 1))];
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   305
    in pg [] goal (K tacs) end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   306
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   307
  val _ = trace " Proving dis_stricts...";
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   308
  val dis_stricts = map dis_strict cons;
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   309
  val _ = trace " Proving dis_defins...";
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   310
  val dis_defins = map dis_defin cons;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   311
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   312
  val dis_rews = dis_stricts @ dis_defins @ dis_apps;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   313
end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   314
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   315
local
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   316
  fun mat_strict (con, _, _) =
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   317
    let
30912
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30911
diff changeset
   318
      val goal = mk_trp (%%:(mat_name con) ` UU ` %:"rhs" === UU);
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30911
diff changeset
   319
      val tacs = [asm_simp_tac (HOLCF_ss addsimps [when_strict]) 1];
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   320
    in pg axs_mat_def goal (K tacs) end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   321
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   322
  val _ = trace " Proving mat_stricts...";
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   323
  val mat_stricts = map mat_strict cons;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   324
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   325
  fun one_mat c (con, _, args) =
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   326
    let
30912
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30911
diff changeset
   327
      val lhs = %%:(mat_name c) ` con_app con args ` %:"rhs";
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   328
      val rhs =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   329
        if con = c
30912
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30911
diff changeset
   330
        then list_ccomb (%:"rhs", map %# args)
26012
f6917792f8a4 new term-building combinators
huffman
parents: 25895
diff changeset
   331
        else mk_fail;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   332
      val goal = lift_defined %: (nonlazy args, mk_trp (lhs === rhs));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   333
      val tacs = [asm_simp_tac (HOLCF_ss addsimps when_rews) 1];
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   334
    in pg axs_mat_def goal (K tacs) end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   335
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   336
  val _ = trace " Proving mat_apps...";
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   337
  val mat_apps =
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   338
    maps (fn (c,_,_) => map (one_mat c) cons) cons;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   339
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   340
  val mat_rews = mat_stricts @ mat_apps;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   341
end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   342
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   343
local
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   344
  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
   345
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   346
  fun pat_lhs (con,_,args) = mk_branch (list_comb (%%:(pat_name con), ps args));
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   347
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   348
  fun pat_rhs (con,_,[]) = mk_return ((%:"rhs") ` HOLogic.unit)
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   349
    | pat_rhs (con,_,args) =
26012
f6917792f8a4 new term-building combinators
huffman
parents: 25895
diff changeset
   350
        (mk_branch (mk_ctuple_pat (ps args)))
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   351
          `(%:"rhs")`(mk_ctuple (map %# args));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   352
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   353
  fun pat_strict c =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   354
    let
25132
dffe405b090d removed obsolete ML bindings;
wenzelm
parents: 24712
diff changeset
   355
      val axs = @{thm branch_def} :: axs_pat_def;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   356
      val goal = mk_trp (strict (pat_lhs c ` (%:"rhs")));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   357
      val tacs = [simp_tac (HOLCF_ss addsimps [when_strict]) 1];
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   358
    in pg axs goal (K tacs) end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   359
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   360
  fun pat_app c (con, _, args) =
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   361
    let
25132
dffe405b090d removed obsolete ML bindings;
wenzelm
parents: 24712
diff changeset
   362
      val axs = @{thm branch_def} :: axs_pat_def;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   363
      val lhs = (pat_lhs c)`(%:"rhs")`(con_app con args);
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   364
      val rhs = if con = first c then pat_rhs c else mk_fail;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   365
      val goal = lift_defined %: (nonlazy args, mk_trp (lhs === rhs));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   366
      val tacs = [asm_simp_tac (HOLCF_ss addsimps when_rews) 1];
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   367
    in pg axs goal (K tacs) end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   368
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   369
  val _ = trace " Proving pat_stricts...";
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   370
  val pat_stricts = map pat_strict cons;
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   371
  val _ = trace " Proving pat_apps...";
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26012
diff changeset
   372
  val pat_apps = maps (fn c => map (pat_app c) cons) cons;
23152
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 pat_rews = pat_stricts @ pat_apps;
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
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   377
val _ = trace " Proving dist_les...";
35117
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   378
val dist_les =
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   379
  let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   380
    fun dist (con1, args1) (con2, args2) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   381
      let
35117
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   382
        fun iff_disj (t, []) = HOLogic.mk_not t
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   383
          | iff_disj (t, ts) = t === foldr1 HOLogic.mk_disj ts;
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   384
        val lhs = con_app con1 args1 << con_app con2 args2;
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   385
        val rhss = map (fn x => %:x === UU) (nonlazy args1);
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   386
        val goal = mk_trp (iff_disj (lhs, rhss));
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   387
        val rule1 = iso_locale RS @{thm iso.abs_below};
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   388
        val rules = rule1 :: @{thms con_below_iff_rules};
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   389
        val tacs = [simp_tac (HOL_ss addsimps rules) 1];
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   390
      in pg con_appls goal (K tacs) end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   391
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   392
    fun distinct (con1, _, args1) (con2, _, args2) =
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   393
        let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   394
          val arg1 = (con1, args1);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   395
          val arg2 =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   396
            (con2, ListPair.map (fn (arg,vn) => upd_vname (K vn) arg)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   397
              (args2, Name.variant_list (map vname args1) (map vname args2)));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   398
        in [dist arg1 arg2, dist arg2 arg1] end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   399
    fun distincts []      = []
35117
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   400
      | distincts (c::cs) = maps (distinct c) cs @ distincts cs;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   401
  in distincts cons end;
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   403
val _ = trace " Proving dist_eqs...";
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   404
val dist_eqs =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   405
  let
35117
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   406
    fun dist (con1, args1) (con2, args2) =
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   407
      let
35117
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   408
        fun iff_disj (t, [], us) = HOLogic.mk_not t
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   409
          | iff_disj (t, ts, []) = HOLogic.mk_not t
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   410
          | iff_disj (t, ts, us) =
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   411
            let
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   412
              val disj1 = foldr1 HOLogic.mk_disj ts;
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   413
              val disj2 = foldr1 HOLogic.mk_disj us;
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   414
            in t === HOLogic.mk_conj (disj1, disj2) end;
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   415
        val lhs = con_app con1 args1 === con_app con2 args2;
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   416
        val rhss1 = map (fn x => %:x === UU) (nonlazy args1);
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   417
        val rhss2 = map (fn x => %:x === UU) (nonlazy args2);
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   418
        val goal = mk_trp (iff_disj (lhs, rhss1, rhss2));
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   419
        val rule1 = iso_locale RS @{thm iso.abs_eq};
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   420
        val rules = rule1 :: @{thms con_eq_iff_rules};
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   421
        val tacs = [simp_tac (HOL_ss addsimps rules) 1];
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   422
      in pg con_appls goal (K tacs) end;
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   423
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   424
    fun distinct (con1, _, args1) (con2, _, args2) =
35117
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   425
        let
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   426
          val arg1 = (con1, args1);
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   427
          val arg2 =
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   428
            (con2, ListPair.map (fn (arg,vn) => upd_vname (K vn) arg)
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   429
              (args2, Name.variant_list (map vname args1) (map vname args2)));
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   430
        in [dist arg1 arg2, dist arg2 arg1] end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   431
    fun distincts []      = []
35117
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   432
      | distincts (c::cs) = maps (distinct c) cs @ distincts cs;
eeec2a320a77 change generated lemmas dist_eqs and dist_les to iff-style
huffman
parents: 35060
diff changeset
   433
  in distincts cons end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   434
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   435
(* ----- theorems concerning one induction step ----------------------------- *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   436
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   437
val copy_strict =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   438
  let
31232
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   439
    val _ = trace " Proving copy_strict...";
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   440
    val goal = mk_trp (strict (dc_copy `% "f"));
33504
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 33427
diff changeset
   441
    val rules = [abs_strict, rep_strict] @ @{thms domain_map_stricts};
31232
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   442
    val tacs = [asm_simp_tac (HOLCF_ss addsimps rules) 1];
35058
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   443
  in
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   444
    SOME (pg [ax_copy_def] goal (K tacs))
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   445
    handle
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   446
      THM (s, _, _) => (trace s; NONE)
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   447
    | ERROR s => (trace s; NONE)
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   448
  end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   449
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   450
local
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   451
  fun copy_app (con, _, args) =
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   452
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   453
      val lhs = dc_copy`%"f"`(con_app con args);
31232
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   454
      fun one_rhs arg =
33971
9c7fa7f76950 modernized structure Datatype_Aux
haftmann
parents: 33810
diff changeset
   455
          if Datatype_Aux.is_rec_type (dtyp_of arg)
33801
e8535acd302c copy_of_dtyp uses map table from theory data
huffman
parents: 33504
diff changeset
   456
          then Domain_Axioms.copy_of_dtyp map_tab
e8535acd302c copy_of_dtyp uses map table from theory data
huffman
parents: 33504
diff changeset
   457
                 (proj (%:"f") eqs) (dtyp_of arg) ` (%# arg)
31232
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   458
          else (%# arg);
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   459
      val rhs = con_app2 con one_rhs args;
35059
acbc346e5310 correct definedness side conditions for copy_apps and take_apps
huffman
parents: 35058
diff changeset
   460
      fun is_rec arg = Datatype_Aux.is_rec_type (dtyp_of arg);
acbc346e5310 correct definedness side conditions for copy_apps and take_apps
huffman
parents: 35058
diff changeset
   461
      fun is_nonlazy_rec arg = is_rec arg andalso not (is_lazy arg);
acbc346e5310 correct definedness side conditions for copy_apps and take_apps
huffman
parents: 35058
diff changeset
   462
      fun nonlazy_rec args = map vname (filter is_nonlazy_rec args);
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   463
      val goal = lift_defined %: (nonlazy_rec args, mk_trp (lhs === rhs));
33317
b4534348b8fd standardized filter/filter_out;
wenzelm
parents: 32957
diff changeset
   464
      val args' = filter_out (fn a => is_rec a orelse is_lazy a) args;
33504
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 33427
diff changeset
   465
      val stricts = abs_strict :: rep_strict :: @{thms domain_map_stricts};
35443
2e0f9516947e change domain package's treatment of variable names in theorems to be like datatype package
huffman
parents: 35288
diff changeset
   466
                        (* FIXME! case_UU_tac *)
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   467
      fun tacs1 ctxt = map (case_UU_tac ctxt stricts 1 o vname) args';
33504
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 33427
diff changeset
   468
      val rules = [ax_abs_iso] @ @{thms domain_map_simps};
31232
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   469
      val tacs2 = [asm_simp_tac (HOLCF_ss addsimps rules) 1];
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   470
    in pg (ax_copy_def::con_appls) goal (fn ctxt => (tacs1 ctxt @ tacs2)) end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   471
in
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   472
  val _ = trace " Proving copy_apps...";
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   473
  val copy_apps = map copy_app cons;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   474
end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   475
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   476
local
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   477
  fun one_strict (con, _, args) = 
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   478
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   479
      val goal = mk_trp (dc_copy`UU`(con_app con args) === UU);
35058
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   480
      val rews = the_list copy_strict @ copy_apps @ con_rews;
35443
2e0f9516947e change domain package's treatment of variable names in theorems to be like datatype package
huffman
parents: 35288
diff changeset
   481
                        (* FIXME! case_UU_tac *)
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   482
      fun tacs ctxt = map (case_UU_tac ctxt rews 1) (nonlazy args) @
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   483
        [asm_simp_tac (HOLCF_ss addsimps rews) 1];
35058
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   484
    in
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   485
      SOME (pg [] goal tacs)
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   486
      handle
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   487
        THM (s, _, _) => (trace s; NONE)
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   488
      | ERROR s => (trace s; NONE)
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   489
    end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   490
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   491
  fun has_nonlazy_rec (_, _, args) = exists is_nonlazy_rec args;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   492
in
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   493
  val _ = trace " Proving copy_stricts...";
35058
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   494
  val copy_stricts = map_filter one_strict (filter has_nonlazy_rec cons);
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   495
end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   496
35058
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   497
val copy_rews = the_list copy_strict @ copy_apps @ copy_stricts;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   498
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
  thy
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30280
diff changeset
   501
    |> Sign.add_path (Long_Name.base_name dname)
31004
ac7e90792089 declare take_rews as simp rules
huffman
parents: 30913
diff changeset
   502
    |> snd o PureThy.add_thmss [
ac7e90792089 declare take_rews as simp rules
huffman
parents: 30913
diff changeset
   503
        ((Binding.name "iso_rews"  , iso_rews    ), [Simplifier.simp_add]),
ac7e90792089 declare take_rews as simp rules
huffman
parents: 30913
diff changeset
   504
        ((Binding.name "exhaust"   , [exhaust]   ), []),
ac7e90792089 declare take_rews as simp rules
huffman
parents: 30913
diff changeset
   505
        ((Binding.name "casedist"  , [casedist]  ), [Induct.cases_type dname]),
ac7e90792089 declare take_rews as simp rules
huffman
parents: 30913
diff changeset
   506
        ((Binding.name "when_rews" , when_rews   ), [Simplifier.simp_add]),
ac7e90792089 declare take_rews as simp rules
huffman
parents: 30913
diff changeset
   507
        ((Binding.name "compacts"  , con_compacts), [Simplifier.simp_add]),
33427
3182812d33ed domain package registers fixrec_simp lemmas
huffman
parents: 33396
diff changeset
   508
        ((Binding.name "con_rews"  , con_rews    ),
3182812d33ed domain package registers fixrec_simp lemmas
huffman
parents: 33396
diff changeset
   509
         [Simplifier.simp_add, Fixrec.fixrec_simp_add]),
31004
ac7e90792089 declare take_rews as simp rules
huffman
parents: 30913
diff changeset
   510
        ((Binding.name "sel_rews"  , sel_rews    ), [Simplifier.simp_add]),
ac7e90792089 declare take_rews as simp rules
huffman
parents: 30913
diff changeset
   511
        ((Binding.name "dis_rews"  , dis_rews    ), [Simplifier.simp_add]),
ac7e90792089 declare take_rews as simp rules
huffman
parents: 30913
diff changeset
   512
        ((Binding.name "pat_rews"  , pat_rews    ), [Simplifier.simp_add]),
ac7e90792089 declare take_rews as simp rules
huffman
parents: 30913
diff changeset
   513
        ((Binding.name "dist_les"  , dist_les    ), [Simplifier.simp_add]),
ac7e90792089 declare take_rews as simp rules
huffman
parents: 30913
diff changeset
   514
        ((Binding.name "dist_eqs"  , dist_eqs    ), [Simplifier.simp_add]),
ac7e90792089 declare take_rews as simp rules
huffman
parents: 30913
diff changeset
   515
        ((Binding.name "inverts"   , inverts     ), [Simplifier.simp_add]),
ac7e90792089 declare take_rews as simp rules
huffman
parents: 30913
diff changeset
   516
        ((Binding.name "injects"   , injects     ), [Simplifier.simp_add]),
ac7e90792089 declare take_rews as simp rules
huffman
parents: 30913
diff changeset
   517
        ((Binding.name "copy_rews" , copy_rews   ), [Simplifier.simp_add]),
33427
3182812d33ed domain package registers fixrec_simp lemmas
huffman
parents: 33396
diff changeset
   518
        ((Binding.name "match_rews", mat_rews    ),
3182812d33ed domain package registers fixrec_simp lemmas
huffman
parents: 33396
diff changeset
   519
         [Simplifier.simp_add, Fixrec.fixrec_simp_add])]
24712
64ed05609568 proper Sign operations instead of Theory aliases;
wenzelm
parents: 24503
diff changeset
   520
    |> Sign.parent_path
28536
8dccb6035d0f established canonical argument order
haftmann
parents: 27239
diff changeset
   521
    |> pair (iso_rews @ when_rews @ con_rews @ sel_rews @ dis_rews @
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   522
        pat_rews @ dist_les @ dist_eqs @ copy_rews)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   523
end; (* let *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   524
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   525
fun comp_theorems (comp_dnam, eqs: eq list) thy =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   526
let
27232
7cd256da0a36 atomize: proper context;
wenzelm
parents: 27208
diff changeset
   527
val global_ctxt = ProofContext.init thy;
33801
e8535acd302c copy_of_dtyp uses map table from theory data
huffman
parents: 33504
diff changeset
   528
val map_tab = Domain_Isomorphism.get_map_tab thy;
27232
7cd256da0a36 atomize: proper context;
wenzelm
parents: 27208
diff changeset
   529
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   530
val dnames = map (fst o fst) eqs;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   531
val conss  = map  snd        eqs;
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28536
diff changeset
   532
val comp_dname = Sign.full_bname thy comp_dnam;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   533
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   534
val _ = message ("Proving induction properties of domain "^comp_dname^" ...");
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   535
val pg = pg' thy;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   536
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   537
(* ----- getting the composite axiom and definitions ------------------------ *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   538
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   539
local
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26342
diff changeset
   540
  fun ga s dn = PureThy.get_thm thy (dn ^ "." ^ s);
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   541
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   542
  val axs_reach      = map (ga "reach"     ) dnames;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   543
  val axs_take_def   = map (ga "take_def"  ) dnames;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   544
  val axs_finite_def = map (ga "finite_def") dnames;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   545
  val ax_copy2_def   =      ga "copy_def"  comp_dnam;
35444
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   546
(* TEMPORARILY DISABLED
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   547
  val ax_bisim_def   =      ga "bisim_def" comp_dnam;
35444
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   548
TEMPORARILY DISABLED *)
23152
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
local
26343
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26342
diff changeset
   552
  fun gt  s dn = PureThy.get_thm  thy (dn ^ "." ^ s);
0dd2eab7b296 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26342
diff changeset
   553
  fun gts s dn = PureThy.get_thms thy (dn ^ "." ^ s);
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   554
in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   555
  val cases = map (gt  "casedist" ) dnames;
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26012
diff changeset
   556
  val con_rews  = maps (gts "con_rews" ) dnames;
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26012
diff changeset
   557
  val copy_rews = maps (gts "copy_rews") dnames;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   558
end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   559
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   560
fun dc_take dn = %%:(dn^"_take");
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   561
val x_name = idx_name dnames "x"; 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   562
val P_name = idx_name dnames "P";
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   563
val n_eqs = length eqs;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   564
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   565
(* ----- theorems concerning finite approximation and finite induction ------ *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   566
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   567
local
32149
ef59550a55d3 renamed simpset_of to global_simpset_of, and local_simpset_of to simpset_of -- same for claset and clasimpset;
wenzelm
parents: 32126
diff changeset
   568
  val iterate_Cprod_ss = global_simpset_of @{theory Fix};
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   569
  val copy_con_rews  = copy_rews @ con_rews;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   570
  val copy_take_defs =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   571
    (if n_eqs = 1 then [] else [ax_copy2_def]) @ axs_take_def;
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   572
  val _ = trace " Proving take_stricts...";
35057
03d023236fcd rewrite proof script for take_stricts
huffman
parents: 34974
diff changeset
   573
  fun one_take_strict ((dn, args), _) =
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   574
    let
35057
03d023236fcd rewrite proof script for take_stricts
huffman
parents: 34974
diff changeset
   575
      val goal = mk_trp (strict (dc_take dn $ %:"n"));
03d023236fcd rewrite proof script for take_stricts
huffman
parents: 34974
diff changeset
   576
      val rules = [
03d023236fcd rewrite proof script for take_stricts
huffman
parents: 34974
diff changeset
   577
        @{thm monofun_fst [THEN monofunE]},
03d023236fcd rewrite proof script for take_stricts
huffman
parents: 34974
diff changeset
   578
        @{thm monofun_snd [THEN monofunE]}];
03d023236fcd rewrite proof script for take_stricts
huffman
parents: 34974
diff changeset
   579
      val tacs = [
03d023236fcd rewrite proof script for take_stricts
huffman
parents: 34974
diff changeset
   580
        rtac @{thm UU_I} 1,
03d023236fcd rewrite proof script for take_stricts
huffman
parents: 34974
diff changeset
   581
        rtac @{thm below_eq_trans} 1,
03d023236fcd rewrite proof script for take_stricts
huffman
parents: 34974
diff changeset
   582
        resolve_tac axs_reach 2,
03d023236fcd rewrite proof script for take_stricts
huffman
parents: 34974
diff changeset
   583
        rtac @{thm monofun_cfun_fun} 1,
03d023236fcd rewrite proof script for take_stricts
huffman
parents: 34974
diff changeset
   584
        REPEAT (resolve_tac rules 1),
03d023236fcd rewrite proof script for take_stricts
huffman
parents: 34974
diff changeset
   585
        rtac @{thm iterate_below_fix} 1];
03d023236fcd rewrite proof script for take_stricts
huffman
parents: 34974
diff changeset
   586
    in pg axs_take_def goal (K tacs) end;
03d023236fcd rewrite proof script for take_stricts
huffman
parents: 34974
diff changeset
   587
  val take_stricts = map one_take_strict eqs;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   588
  fun take_0 n dn =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   589
    let
35058
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   590
      val goal = mk_trp ((dc_take dn $ @{term "0::nat"}) `% x_name n === UU);
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   591
    in pg axs_take_def goal (K [simp_tac iterate_Cprod_ss 1]) end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   592
  val take_0s = mapn take_0 1 dnames;
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   593
  val _ = trace " Proving take_apps...";
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   594
  fun one_take_app dn (con, _, args) =
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   595
    let
35058
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   596
      fun mk_take n = dc_take (List.nth (dnames, n)) $ %:"n";
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   597
      fun one_rhs arg =
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   598
          if Datatype_Aux.is_rec_type (dtyp_of arg)
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   599
          then Domain_Axioms.copy_of_dtyp map_tab
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   600
                 mk_take (dtyp_of arg) ` (%# arg)
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   601
          else (%# arg);
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   602
      val lhs = (dc_take dn $ (%%:"Suc" $ %:"n"))`(con_app con args);
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   603
      val rhs = con_app2 con one_rhs args;
35059
acbc346e5310 correct definedness side conditions for copy_apps and take_apps
huffman
parents: 35058
diff changeset
   604
      fun is_rec arg = Datatype_Aux.is_rec_type (dtyp_of arg);
acbc346e5310 correct definedness side conditions for copy_apps and take_apps
huffman
parents: 35058
diff changeset
   605
      fun is_nonlazy_rec arg = is_rec arg andalso not (is_lazy arg);
acbc346e5310 correct definedness side conditions for copy_apps and take_apps
huffman
parents: 35058
diff changeset
   606
      fun nonlazy_rec args = map vname (filter is_nonlazy_rec args);
acbc346e5310 correct definedness side conditions for copy_apps and take_apps
huffman
parents: 35058
diff changeset
   607
      val goal = lift_defined %: (nonlazy_rec args, mk_trp (lhs === rhs));
acbc346e5310 correct definedness side conditions for copy_apps and take_apps
huffman
parents: 35058
diff changeset
   608
      val tacs = [asm_simp_tac (HOLCF_ss addsimps copy_con_rews) 1];
acbc346e5310 correct definedness side conditions for copy_apps and take_apps
huffman
parents: 35058
diff changeset
   609
    in pg copy_take_defs goal (K tacs) end;
35058
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   610
  fun one_take_apps ((dn, _), cons) = map (one_take_app dn) cons;
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   611
  val take_apps = maps one_take_apps eqs;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   612
in
35021
c839a4c670c6 renamed old-style Drule.standard to Drule.export_without_context, to emphasize that this is in no way a standard operation;
wenzelm
parents: 34974
diff changeset
   613
  val take_rews = map Drule.export_without_context
35058
d0cc1650b378 handle case where copy_stricts cannot be proven; rewrite proof script for take_apps
huffman
parents: 35057
diff changeset
   614
    (take_stricts @ take_0s @ take_apps);
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   615
end; (* local *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   616
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   617
local
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   618
  fun one_con p (con, _, args) =
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   619
    let
35443
2e0f9516947e change domain package's treatment of variable names in theorems to be like datatype package
huffman
parents: 35288
diff changeset
   620
      val P_names = map P_name (1 upto (length dnames));
2e0f9516947e change domain package's treatment of variable names in theorems to be like datatype package
huffman
parents: 35288
diff changeset
   621
      val vns = Name.variant_list P_names (map vname args);
2e0f9516947e change domain package's treatment of variable names in theorems to be like datatype package
huffman
parents: 35288
diff changeset
   622
      val nonlazy_vns = map snd (filter_out (is_lazy o fst) (args ~~ vns));
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   623
      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
   624
      val t1 = mk_trp (%:p $ con_app2 con (bound_arg args) args);
33317
b4534348b8fd standardized filter/filter_out;
wenzelm
parents: 32957
diff changeset
   625
      val t2 = lift ind_hyp (filter is_rec args, t1);
35443
2e0f9516947e change domain package's treatment of variable names in theorems to be like datatype package
huffman
parents: 35288
diff changeset
   626
      val t3 = lift_defined (bound_arg vns) (nonlazy_vns, t2);
2e0f9516947e change domain package's treatment of variable names in theorems to be like datatype package
huffman
parents: 35288
diff changeset
   627
    in Library.foldr mk_All (vns, t3) end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   628
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   629
  fun one_eq ((p, cons), concl) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   630
    mk_trp (%:p $ UU) ===> Logic.list_implies (map (one_con p) cons, concl);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   631
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   632
  fun ind_term concf = Library.foldr one_eq
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   633
    (mapn (fn n => fn x => (P_name n, x)) 1 conss,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   634
     mk_trp (foldr1 mk_conj (mapn concf 1 dnames)));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   635
  val take_ss = HOL_ss addsimps take_rews;
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   636
  fun quant_tac ctxt i = EVERY
27239
f2f42f9fa09d pervasive RuleInsts;
wenzelm
parents: 27232
diff changeset
   637
    (mapn (fn n => fn _ => res_inst_tac ctxt [(("x", 0), x_name n)] spec i) 1 dnames);
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   638
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   639
  fun ind_prems_tac prems = EVERY
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26012
diff changeset
   640
    (maps (fn cons =>
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   641
      (resolve_tac prems 1 ::
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   642
        maps (fn (_,_,args) => 
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   643
          resolve_tac prems 1 ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   644
          map (K(atac 1)) (nonlazy args) @
33317
b4534348b8fd standardized filter/filter_out;
wenzelm
parents: 32957
diff changeset
   645
          map (K(atac 1)) (filter is_rec args))
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26012
diff changeset
   646
        cons))
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26012
diff changeset
   647
      conss);
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   648
  local 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   649
    (* check whether every/exists constructor of the n-th part of the equation:
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   650
       it has a possibly indirectly recursive argument that isn't/is possibly 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   651
       indirectly lazy *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   652
    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
   653
          is_rec arg andalso not(rec_of arg mem ns) andalso
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   654
          ((rec_of arg =  n andalso nfn(lazy_rec orelse is_lazy arg)) orelse 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   655
            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
   656
              (lazy_rec orelse is_lazy arg) (n, (List.nth(conss,rec_of arg))))
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   657
          ) o third) cons;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   658
    fun all_rec_to ns  = rec_to forall not all_rec_to  ns;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   659
    fun warn (n,cons) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   660
      if all_rec_to [] false (n,cons)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   661
      then (warning ("domain "^List.nth(dnames,n)^" is empty!"); true)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   662
      else false;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   663
    fun lazy_rec_to ns = rec_to exists I  lazy_rec_to ns;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   664
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   665
  in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   666
    val n__eqs = mapn (fn n => fn (_,cons) => (n,cons)) 0 eqs;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   667
    val is_emptys = map warn n__eqs;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   668
    val is_finite = forall (not o lazy_rec_to [] false) n__eqs;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   669
  end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   670
in (* local *)
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   671
  val _ = trace " Proving finite_ind...";
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   672
  val finite_ind =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   673
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   674
      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
   675
      val goal = ind_term concf;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   676
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   677
      fun tacf {prems, context} =
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   678
        let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   679
          val tacs1 = [
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   680
            quant_tac context 1,
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   681
            simp_tac HOL_ss 1,
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   682
            InductTacs.induct_tac context [[SOME "n"]] 1,
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   683
            simp_tac (take_ss addsimps prems) 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   684
            TRY (safe_tac HOL_cs)];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   685
          fun arg_tac arg =
35443
2e0f9516947e change domain package's treatment of variable names in theorems to be like datatype package
huffman
parents: 35288
diff changeset
   686
                        (* FIXME! case_UU_tac *)
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   687
            case_UU_tac context (prems @ con_rews) 1
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   688
              (List.nth (dnames, rec_of arg) ^ "_take n$" ^ vname arg);
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   689
          fun con_tacs (con, _, args) = 
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   690
            asm_simp_tac take_ss 1 ::
33317
b4534348b8fd standardized filter/filter_out;
wenzelm
parents: 32957
diff changeset
   691
            map arg_tac (filter is_nonlazy_rec args) @
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   692
            [resolve_tac prems 1] @
33317
b4534348b8fd standardized filter/filter_out;
wenzelm
parents: 32957
diff changeset
   693
            map (K (atac 1)) (nonlazy args) @
b4534348b8fd standardized filter/filter_out;
wenzelm
parents: 32957
diff changeset
   694
            map (K (etac spec 1)) (filter is_rec args);
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   695
          fun cases_tacs (cons, cases) =
27239
f2f42f9fa09d pervasive RuleInsts;
wenzelm
parents: 27232
diff changeset
   696
            res_inst_tac context [(("x", 0), "x")] cases 1 ::
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   697
            asm_simp_tac (take_ss addsimps prems) 1 ::
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26012
diff changeset
   698
            maps con_tacs cons;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   699
        in
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26012
diff changeset
   700
          tacs1 @ maps cases_tacs (conss ~~ cases)
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   701
        end;
31232
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   702
    in pg'' thy [] goal tacf
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   703
       handle ERROR _ => (warning "Proof of finite_ind failed."; TrueI)
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   704
    end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   705
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   706
  val _ = trace " Proving take_lemmas...";
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   707
  val take_lemmas =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   708
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   709
      fun take_lemma n (dn, ax_reach) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   710
        let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   711
          val lhs = dc_take dn $ Bound 0 `%(x_name n);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   712
          val rhs = dc_take dn $ Bound 0 `%(x_name n^"'");
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   713
          val concl = mk_trp (%:(x_name n) === %:(x_name n^"'"));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   714
          val goal = mk_All ("n", mk_trp (lhs === rhs)) ===> concl;
33396
45c5c3c51918 domain package no longer uses cfst/csnd/cpair
huffman
parents: 33317
diff changeset
   715
          val rules = [contlub_fst RS contlubE RS ssubst,
45c5c3c51918 domain package no longer uses cfst/csnd/cpair
huffman
parents: 33317
diff changeset
   716
                       contlub_snd RS contlubE RS ssubst];
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   717
          fun tacf {prems, context} = [
27239
f2f42f9fa09d pervasive RuleInsts;
wenzelm
parents: 27232
diff changeset
   718
            res_inst_tac context [(("t", 0), x_name n    )] (ax_reach RS subst) 1,
f2f42f9fa09d pervasive RuleInsts;
wenzelm
parents: 27232
diff changeset
   719
            res_inst_tac context [(("t", 0), x_name n^"'")] (ax_reach RS subst) 1,
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   720
            stac fix_def2 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   721
            REPEAT (CHANGED
33396
45c5c3c51918 domain package no longer uses cfst/csnd/cpair
huffman
parents: 33317
diff changeset
   722
              (resolve_tac rules 1 THEN chain_tac 1)),
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   723
            stac contlub_cfun_fun 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   724
            stac contlub_cfun_fun 2,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   725
            rtac lub_equal 3,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   726
            chain_tac 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   727
            rtac allI 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   728
            resolve_tac prems 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   729
        in pg'' thy axs_take_def goal tacf end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   730
    in mapn take_lemma 1 (dnames ~~ axs_reach) end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   731
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   732
(* ----- theorems concerning finiteness and induction ----------------------- *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   733
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   734
  val _ = trace " Proving finites, ind...";
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   735
  val (finites, ind) =
31232
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   736
  (
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   737
    if is_finite
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   738
    then (* finite case *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   739
      let 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   740
        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
   741
        fun dname_lemma dn =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   742
          let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   743
            val prem1 = mk_trp (defined (%:"x"));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   744
            val disj1 = mk_all ("n", dc_take dn $ Bound 0 ` %:"x" === UU);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   745
            val prem2 = mk_trp (mk_disj (disj1, take_enough dn));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   746
            val concl = mk_trp (take_enough dn);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   747
            val goal = prem1 ===> prem2 ===> concl;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   748
            val tacs = [
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   749
              etac disjE 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   750
              etac notE 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   751
              resolve_tac take_lemmas 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   752
              asm_simp_tac take_ss 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   753
              atac 1];
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   754
          in pg [] goal (K tacs) end;
31232
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   755
        val _ = trace " Proving finite_lemmas1a";
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   756
        val finite_lemmas1a = map dname_lemma dnames;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   757
 
31232
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   758
        val _ = trace " Proving finite_lemma1b";
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   759
        val finite_lemma1b =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   760
          let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   761
            fun mk_eqn n ((dn, args), _) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   762
              let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   763
                val disj1 = dc_take dn $ Bound 1 ` Bound 0 === UU;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   764
                val disj2 = dc_take dn $ Bound 1 ` Bound 0 === Bound 0;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   765
              in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   766
                mk_constrainall
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   767
                  (x_name n, Type (dn,args), mk_disj (disj1, disj2))
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   768
              end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   769
            val goal =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   770
              mk_trp (mk_all ("n", foldr1 mk_conj (mapn mk_eqn 1 eqs)));
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   771
            fun arg_tacs ctxt vn = [
27239
f2f42f9fa09d pervasive RuleInsts;
wenzelm
parents: 27232
diff changeset
   772
              eres_inst_tac ctxt [(("x", 0), vn)] all_dupE 1,
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   773
              etac disjE 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   774
              asm_simp_tac (HOL_ss addsimps con_rews) 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   775
              asm_simp_tac take_ss 1];
35288
aa7da51ae1ef add mixfix field to type Domain_Library.cons
huffman
parents: 35287
diff changeset
   776
            fun con_tacs ctxt (con, _, args) =
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   777
              asm_simp_tac take_ss 1 ::
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   778
              maps (arg_tacs ctxt) (nonlazy_rec args);
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   779
            fun foo_tacs ctxt n (cons, cases) =
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   780
              simp_tac take_ss 1 ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   781
              rtac allI 1 ::
27239
f2f42f9fa09d pervasive RuleInsts;
wenzelm
parents: 27232
diff changeset
   782
              res_inst_tac ctxt [(("x", 0), x_name n)] cases 1 ::
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   783
              asm_simp_tac take_ss 1 ::
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   784
              maps (con_tacs ctxt) cons;
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   785
            fun tacs ctxt =
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   786
              rtac allI 1 ::
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   787
              InductTacs.induct_tac ctxt [[SOME "n"]] 1 ::
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   788
              simp_tac take_ss 1 ::
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   789
              TRY (safe_tac (empty_cs addSEs [conjE] addSIs [conjI])) ::
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   790
              flat (mapn (foo_tacs ctxt) 1 (conss ~~ cases));
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   791
          in pg [] goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   792
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   793
        fun one_finite (dn, l1b) =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   794
          let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   795
            val goal = mk_trp (%%:(dn^"_finite") $ %:"x");
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   796
            fun tacs ctxt = [
35443
2e0f9516947e change domain package's treatment of variable names in theorems to be like datatype package
huffman
parents: 35288
diff changeset
   797
                        (* FIXME! case_UU_tac *)
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   798
              case_UU_tac ctxt take_rews 1 "x",
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   799
              eresolve_tac finite_lemmas1a 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   800
              step_tac HOL_cs 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   801
              step_tac HOL_cs 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   802
              cut_facts_tac [l1b] 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   803
              fast_tac HOL_cs 1];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   804
          in pg axs_finite_def goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   805
31232
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   806
        val _ = trace " Proving finites";
27232
7cd256da0a36 atomize: proper context;
wenzelm
parents: 27208
diff changeset
   807
        val finites = map one_finite (dnames ~~ atomize global_ctxt finite_lemma1b);
31232
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   808
        val _ = trace " Proving ind";
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   809
        val ind =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   810
          let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   811
            fun concf n dn = %:(P_name n) $ %:(x_name n);
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   812
            fun tacf {prems, context} =
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   813
              let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   814
                fun finite_tacs (finite, fin_ind) = [
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   815
                  rtac(rewrite_rule axs_finite_def finite RS exE)1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   816
                  etac subst 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   817
                  rtac fin_ind 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   818
                  ind_prems_tac prems];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   819
              in
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   820
                TRY (safe_tac HOL_cs) ::
27232
7cd256da0a36 atomize: proper context;
wenzelm
parents: 27208
diff changeset
   821
                maps finite_tacs (finites ~~ atomize global_ctxt finite_ind)
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   822
              end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   823
          in pg'' thy [] (ind_term concf) tacf end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   824
      in (finites, ind) end (* let *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   825
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   826
    else (* infinite case *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   827
      let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   828
        fun one_finite n dn =
27239
f2f42f9fa09d pervasive RuleInsts;
wenzelm
parents: 27232
diff changeset
   829
          read_instantiate global_ctxt [(("P", 0), dn ^ "_finite " ^ x_name n)] excluded_middle;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   830
        val finites = mapn one_finite 1 dnames;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   831
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   832
        val goal =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   833
          let
26012
f6917792f8a4 new term-building combinators
huffman
parents: 25895
diff changeset
   834
            fun one_adm n _ = mk_trp (mk_adm (%:(P_name n)));
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   835
            fun concf n dn = %:(P_name n) $ %:(x_name n);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   836
          in Logic.list_implies (mapn one_adm 1 dnames, ind_term concf) end;
33396
45c5c3c51918 domain package no longer uses cfst/csnd/cpair
huffman
parents: 33317
diff changeset
   837
        val cont_rules =
45c5c3c51918 domain package no longer uses cfst/csnd/cpair
huffman
parents: 33317
diff changeset
   838
            [cont_id, cont_const, cont2cont_Rep_CFun,
45c5c3c51918 domain package no longer uses cfst/csnd/cpair
huffman
parents: 33317
diff changeset
   839
             cont2cont_fst, cont2cont_snd];
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   840
        fun tacf {prems, context} =
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   841
          map (fn ax_reach => rtac (ax_reach RS subst) 1) axs_reach @ [
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   842
          quant_tac context 1,
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   843
          rtac (adm_impl_admw RS wfix_ind) 1,
25895
0eaadfa8889e converted adm_all and adm_ball to rule_format; cleaned up
huffman
parents: 25805
diff changeset
   844
          REPEAT_DETERM (rtac adm_all 1),
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   845
          REPEAT_DETERM (
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   846
            TRY (rtac adm_conj 1) THEN 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   847
            rtac adm_subst 1 THEN 
33396
45c5c3c51918 domain package no longer uses cfst/csnd/cpair
huffman
parents: 33317
diff changeset
   848
            REPEAT (resolve_tac cont_rules 1) THEN
45c5c3c51918 domain package no longer uses cfst/csnd/cpair
huffman
parents: 33317
diff changeset
   849
            resolve_tac prems 1),
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   850
          strip_tac 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   851
          rtac (rewrite_rule axs_take_def finite_ind) 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   852
          ind_prems_tac prems];
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   853
        val ind = (pg'' thy [] goal tacf
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   854
          handle ERROR _ =>
33396
45c5c3c51918 domain package no longer uses cfst/csnd/cpair
huffman
parents: 33317
diff changeset
   855
            (warning "Cannot prove infinite induction rule"; TrueI));
31232
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   856
      in (finites, ind) end
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   857
  )
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   858
      handle THM _ =>
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   859
             (warning "Induction proofs failed (THM raised)."; ([], TrueI))
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   860
           | ERROR _ =>
33810
38375b16ffd9 nicer warning message for indirect-recursive domain definitions
huffman
parents: 33801
diff changeset
   861
             (warning "Cannot prove induction rule"; ([], TrueI));
31232
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   862
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   863
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   864
end; (* local *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   865
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   866
(* ----- theorem concerning coinduction ------------------------------------- *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   867
35444
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   868
(* COINDUCTION TEMPORARILY DISABLED
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   869
local
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   870
  val xs = mapn (fn n => K (x_name n)) 1 dnames;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   871
  fun bnd_arg n i = Bound(2*(n_eqs - n)-i-1);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   872
  val take_ss = HOL_ss addsimps take_rews;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   873
  val sproj = prj (fn s => K("fst("^s^")")) (fn s => K("snd("^s^")"));
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   874
  val _ = trace " Proving coind_lemma...";
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   875
  val coind_lemma =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   876
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   877
      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
   878
      fun mk_eqn n dn =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   879
        (dc_take dn $ %:"n" ` bnd_arg n 0) ===
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   880
        (dc_take dn $ %:"n" ` bnd_arg n 1);
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   881
      fun mk_all2 (x,t) = mk_all (x, mk_all (x^"'", t));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   882
      val goal =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   883
        mk_trp (mk_imp (%%:(comp_dname^"_bisim") $ %:"R",
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   884
          Library.foldr mk_all2 (xs,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   885
            Library.foldr mk_imp (mapn mk_prj 0 dnames,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   886
              foldr1 mk_conj (mapn mk_eqn 0 dnames)))));
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   887
      fun x_tacs ctxt n x = [
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   888
        rotate_tac (n+1) 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   889
        etac all2E 1,
27239
f2f42f9fa09d pervasive RuleInsts;
wenzelm
parents: 27232
diff changeset
   890
        eres_inst_tac ctxt [(("P", 1), sproj "R" eqs n^" "^x^" "^x^"'")] (mp RS disjE) 1,
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   891
        TRY (safe_tac HOL_cs),
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   892
        REPEAT (CHANGED (asm_simp_tac take_ss 1))];
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   893
      fun tacs ctxt = [
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   894
        rtac impI 1,
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   895
        InductTacs.induct_tac ctxt [[SOME "n"]] 1,
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   896
        simp_tac take_ss 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   897
        safe_tac HOL_cs] @
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   898
        flat (mapn (x_tacs ctxt) 0 xs);
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   899
    in pg [ax_bisim_def] goal tacs end;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   900
in
29402
9610f3870d64 add tracing for domain package proofs
huffman
parents: 29064
diff changeset
   901
  val _ = trace " Proving coind...";
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   902
  val coind = 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   903
    let
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   904
      fun mk_prj n x = mk_trp (proj (%:"R") eqs n $ %:x $ %:(x^"'"));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   905
      fun mk_eqn x = %:x === %:(x^"'");
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   906
      val goal =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   907
        mk_trp (%%:(comp_dname^"_bisim") $ %:"R") ===>
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   908
          Logic.list_implies (mapn mk_prj 0 xs,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   909
            mk_trp (foldr1 mk_conj (map mk_eqn xs)));
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   910
      val tacs =
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   911
        TRY (safe_tac HOL_cs) ::
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26012
diff changeset
   912
        maps (fn take_lemma => [
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   913
          rtac take_lemma 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   914
          cut_facts_tac [coind_lemma] 1,
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   915
          fast_tac HOL_cs 1])
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26012
diff changeset
   916
        take_lemmas;
27208
5fe899199f85 proper context for tactics derived from res_inst_tac;
wenzelm
parents: 27153
diff changeset
   917
    in pg [] goal (K tacs) end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   918
end; (* local *)
35444
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   919
COINDUCTION TEMPORARILY DISABLED *)
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   920
32172
c4e55f30d527 renamed functor ProjectRuleFun to Project_Rule;
wenzelm
parents: 32149
diff changeset
   921
val inducts = Project_Rule.projections (ProofContext.init thy) ind;
30829
d64a293f23ba domain package registers induction rules
huffman
parents: 30807
diff changeset
   922
fun ind_rule (dname, rule) = ((Binding.empty, [rule]), [Induct.induct_type dname]);
31232
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   923
val induct_failed = (Thm.prop_of ind = Thm.prop_of TrueI);
30829
d64a293f23ba domain package registers induction rules
huffman
parents: 30807
diff changeset
   924
24712
64ed05609568 proper Sign operations instead of Theory aliases;
wenzelm
parents: 24503
diff changeset
   925
in thy |> Sign.add_path comp_dnam
31004
ac7e90792089 declare take_rews as simp rules
huffman
parents: 30913
diff changeset
   926
       |> snd o PureThy.add_thmss [
ac7e90792089 declare take_rews as simp rules
huffman
parents: 30913
diff changeset
   927
           ((Binding.name "take_rews"  , take_rews   ), [Simplifier.simp_add]),
ac7e90792089 declare take_rews as simp rules
huffman
parents: 30913
diff changeset
   928
           ((Binding.name "take_lemmas", take_lemmas ), []),
ac7e90792089 declare take_rews as simp rules
huffman
parents: 30913
diff changeset
   929
           ((Binding.name "finites"    , finites     ), []),
ac7e90792089 declare take_rews as simp rules
huffman
parents: 30913
diff changeset
   930
           ((Binding.name "finite_ind" , [finite_ind]), []),
35444
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   931
           ((Binding.name "ind"        , [ind]       ), [])(*,
73f645fdd4ff reorganizing domain package code (in progress)
huffman
parents: 35443
diff changeset
   932
           ((Binding.name "coind"      , [coind]     ), [])*)]
31232
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   933
       |> (if induct_failed then I
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31160
diff changeset
   934
           else snd o PureThy.add_thmss (map ind_rule (dnames ~~ inducts)))
28536
8dccb6035d0f established canonical argument order
haftmann
parents: 27239
diff changeset
   935
       |> Sign.parent_path |> pair take_rews
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   936
end; (* let *)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   937
end; (* struct *)