author | blanchet |
Fri, 07 Mar 2014 01:02:21 +0100 | |
changeset 55966 | 972f0aa7091b |
parent 55944 | 7ab8f003fe41 |
child 56245 | 84fc7dfa3cd4 |
permissions | -rw-r--r-- |
55061 | 1 |
(* Title: HOL/Tools/BNF/bnf_fp_def_sugar_tactics.ML |
49123
263b0e330d8b
more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents:
diff
changeset
|
2 |
Author: Jasmin Blanchette, TU Muenchen |
263b0e330d8b
more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents:
diff
changeset
|
3 |
Copyright 2012 |
263b0e330d8b
more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents:
diff
changeset
|
4 |
|
49389 | 5 |
Tactics for datatype and codatatype sugar. |
49123
263b0e330d8b
more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents:
diff
changeset
|
6 |
*) |
263b0e330d8b
more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents:
diff
changeset
|
7 |
|
49636 | 8 |
signature BNF_FP_DEF_SUGAR_TACTICS = |
49123
263b0e330d8b
more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents:
diff
changeset
|
9 |
sig |
55966 | 10 |
val sumprod_thms_map: thm list |
11 |
val sumprod_thms_set: thm list |
|
12 |
val sumprod_thms_rel: thm list |
|
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49542
diff
changeset
|
13 |
|
49591
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
14 |
val mk_coinduct_tac: Proof.context -> thm list -> int -> int list -> thm -> thm list -> |
55803
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
15 |
thm list -> thm list -> thm list -> thm list -> thm list list -> thm list list list -> |
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
16 |
thm list list list -> tactic |
55867 | 17 |
val mk_corec_tac: thm list -> thm list -> thm -> thm -> thm -> thm -> Proof.context -> tactic |
49501 | 18 |
val mk_ctor_iff_dtor_tac: Proof.context -> ctyp option list -> cterm -> cterm -> thm -> thm -> |
19 |
tactic |
|
55867 | 20 |
val mk_disc_corec_iff_tac: thm list -> thm list -> thm list -> Proof.context -> tactic |
49161
a8e74375d971
fixed (n + 1)st bug in "mk_exhaust_tac" -- arose with uncurried constructors
blanchet
parents:
49160
diff
changeset
|
21 |
val mk_exhaust_tac: Proof.context -> int -> thm list -> thm -> thm -> tactic |
55803
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
22 |
val mk_half_distinct_tac: Proof.context -> thm -> thm -> thm list -> tactic |
49590 | 23 |
val mk_induct_tac: Proof.context -> int -> int list -> int list list -> int list list list -> |
55803
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
24 |
thm list -> thm -> thm list -> thm list -> thm list -> thm list list -> tactic |
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
25 |
val mk_inject_tac: Proof.context -> thm -> thm -> thm -> tactic |
55867 | 26 |
val mk_rec_tac: thm list -> thm list -> thm list -> thm -> thm -> thm -> thm -> Proof.context -> |
55803
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
27 |
tactic |
49123
263b0e330d8b
more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents:
diff
changeset
|
28 |
end; |
263b0e330d8b
more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents:
diff
changeset
|
29 |
|
49636 | 30 |
structure BNF_FP_Def_Sugar_Tactics : BNF_FP_DEF_SUGAR_TACTICS = |
49123
263b0e330d8b
more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents:
diff
changeset
|
31 |
struct |
263b0e330d8b
more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents:
diff
changeset
|
32 |
|
49125 | 33 |
open BNF_Tactics |
49123
263b0e330d8b
more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents:
diff
changeset
|
34 |
open BNF_Util |
51850
106afdf5806c
renamed a few FP-related files, to make it clear that these are not the sum of LFP + GFP but rather shared basic libraries
blanchet
parents:
51843
diff
changeset
|
35 |
open BNF_FP_Util |
49123
263b0e330d8b
more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents:
diff
changeset
|
36 |
|
49590 | 37 |
val basic_simp_thms = @{thms simp_thms(7,8,12,14,22,24)}; |
38 |
val more_simp_thms = basic_simp_thms @ @{thms simp_thms(11,15,16,21)}; |
|
39 |
||
55966 | 40 |
val sumprod_thms_map = @{thms id_apply map_prod_simp prod.case sum.case map_sum.simps}; |
41 |
val sumprod_thms_set = |
|
55930
25a90cebbbe5
more careful simplification of sets (cf. abf91ebd0820)---yields smaller terms
traytel
parents:
55906
diff
changeset
|
42 |
@{thms UN_empty UN_insert Un_empty_left Un_empty_right Un_iff UN_simps(10) UN_iff |
55932 | 43 |
Union_Un_distrib image_iff o_apply map_prod_simp |
55931 | 44 |
mem_Collect_eq prod_set_simps map_sum.simps sum_set_simps}; |
55966 | 45 |
val sumprod_thms_rel = @{thms rel_prod_apply rel_sum_simps id_apply}; |
49368 | 46 |
|
49668 | 47 |
fun hhf_concl_conv cv ctxt ct = |
48 |
(case Thm.term_of ct of |
|
49 |
Const (@{const_name all}, _) $ Abs _ => |
|
50 |
Conv.arg_conv (Conv.abs_conv (hhf_concl_conv cv o snd) ctxt) ct |
|
51 |
| _ => Conv.concl_conv ~1 cv ct); |
|
52 |
||
54922 | 53 |
fun co_induct_inst_as_projs ctxt k thm = |
49368 | 54 |
let |
54922 | 55 |
val fs = Term.add_vars (prop_of thm) [] |
49368 | 56 |
|> filter (fn (_, Type (@{type_name fun}, [_, T'])) => T' <> HOLogic.boolT | _ => false); |
54923
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54922
diff
changeset
|
57 |
fun mk_cfp (f as (_, T)) = |
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54922
diff
changeset
|
58 |
(certify ctxt (Var f), certify ctxt (mk_proj T (num_binder_types T) k)); |
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54922
diff
changeset
|
59 |
val cfps = map mk_cfp fs; |
49368 | 60 |
in |
54923
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54922
diff
changeset
|
61 |
Drule.cterm_instantiate cfps thm |
49368 | 62 |
end; |
63 |
||
54922 | 64 |
val co_induct_inst_as_projs_tac = PRIMITIVE oo co_induct_inst_as_projs; |
49368 | 65 |
|
49501 | 66 |
fun mk_exhaust_tac ctxt n ctr_defs ctor_iff_dtor sumEN' = |
52324 | 67 |
unfold_thms_tac ctxt (ctor_iff_dtor :: ctr_defs) THEN HEADGOAL (rtac sumEN') THEN |
68 |
HEADGOAL (EVERY' (maps (fn k => [select_prem_tac n (rotate_tac 1) k, |
|
69 |
REPEAT_DETERM o dtac meta_spec, etac meta_mp, atac]) (1 upto n))); |
|
49125 | 70 |
|
49501 | 71 |
fun mk_ctor_iff_dtor_tac ctxt cTs cctor cdtor ctor_dtor dtor_ctor = |
52324 | 72 |
HEADGOAL (rtac iffI THEN' |
73 |
EVERY' (map3 (fn cTs => fn cx => fn th => |
|
74 |
dtac (Drule.instantiate' cTs [NONE, NONE, SOME cx] arg_cong) THEN' |
|
75 |
SELECT_GOAL (unfold_thms_tac ctxt [th]) THEN' |
|
76 |
atac) [rev cTs, cTs] [cdtor, cctor] [dtor_ctor, ctor_dtor])); |
|
49123
263b0e330d8b
more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents:
diff
changeset
|
77 |
|
55803
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
78 |
fun mk_half_distinct_tac ctxt ctor_inject abs_inject ctr_defs = |
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
79 |
unfold_thms_tac ctxt (ctor_inject :: abs_inject :: @{thms sum.inject} @ ctr_defs) THEN |
52324 | 80 |
HEADGOAL (rtac @{thm sum.distinct(1)}); |
49127 | 81 |
|
55803
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
82 |
fun mk_inject_tac ctxt ctr_def ctor_inject abs_inject = |
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
83 |
unfold_thms_tac ctxt [ctr_def] THEN |
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
84 |
HEADGOAL (rtac (ctor_inject RS ssubst)) THEN |
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
85 |
unfold_thms_tac ctxt (abs_inject :: @{thms sum.inject Pair_eq conj_assoc}) THEN |
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
86 |
HEADGOAL (rtac refl); |
49126 | 87 |
|
55867 | 88 |
val rec_unfold_thms = |
55414
eab03e9cee8a
renamed '{prod,sum,bool,unit}_case' to 'case_...'
blanchet
parents:
55083
diff
changeset
|
89 |
@{thms comp_def convol_def fst_conv id_def case_prod_Pair_iden snd_conv split_conv |
55966 | 90 |
case_unit_Unity} @ sumprod_thms_map; |
49205 | 91 |
|
55867 | 92 |
fun mk_rec_tac pre_map_defs map_idents rec_defs ctor_rec fp_abs_inverse abs_inverse ctr_def ctxt = |
93 |
unfold_thms_tac ctxt (ctr_def :: ctor_rec :: fp_abs_inverse :: abs_inverse :: rec_defs @ |
|
94 |
pre_map_defs @ map_idents @ rec_unfold_thms) THEN HEADGOAL (rtac refl); |
|
49205 | 95 |
|
55966 | 96 |
val corec_unfold_thms = @{thms id_def} @ sumprod_thms_map; |
49683 | 97 |
|
55867 | 98 |
fun mk_corec_tac corec_defs map_idents ctor_dtor_corec pre_map_def abs_inverse ctr_def ctxt = |
55803
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
99 |
let |
55867 | 100 |
val ss = ss_only (pre_map_def :: abs_inverse :: map_idents @ corec_unfold_thms @ |
55803
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
101 |
@{thms o_apply vimage2p_def if_True if_False}) ctxt; |
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
102 |
in |
55867 | 103 |
unfold_thms_tac ctxt (ctr_def :: corec_defs) THEN |
104 |
HEADGOAL (rtac (ctor_dtor_corec RS trans) THEN' asm_simp_tac ss) THEN_MAYBE |
|
55803
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
105 |
HEADGOAL (rtac refl ORELSE' rtac (@{thm unit_eq} RS arg_cong)) |
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
106 |
end; |
49213 | 107 |
|
55867 | 108 |
fun mk_disc_corec_iff_tac case_splits' corecs discs ctxt = |
109 |
EVERY (map3 (fn case_split_tac => fn corec_thm => fn disc => |
|
110 |
HEADGOAL case_split_tac THEN unfold_thms_tac ctxt [corec_thm] THEN |
|
52324 | 111 |
HEADGOAL (asm_simp_tac (ss_only basic_simp_thms ctxt)) THEN |
112 |
(if is_refl disc then all_tac else HEADGOAL (rtac disc))) |
|
55867 | 113 |
(map rtac case_splits' @ [K all_tac]) corecs discs); |
49482 | 114 |
|
51798 | 115 |
fun solve_prem_prem_tac ctxt = |
49429
64ac3471005a
cleaner way of dealing with the set functions of sums and products
blanchet
parents:
49428
diff
changeset
|
116 |
REPEAT o (eresolve_tac @{thms bexE rev_bexI} ORELSE' rtac @{thm rev_bexI[OF UNIV_I]} ORELSE' |
51798 | 117 |
hyp_subst_tac ctxt ORELSE' resolve_tac @{thms disjI1 disjI2}) THEN' |
49429
64ac3471005a
cleaner way of dealing with the set functions of sums and products
blanchet
parents:
49428
diff
changeset
|
118 |
(rtac refl ORELSE' atac ORELSE' rtac @{thm singletonI}); |
49426 | 119 |
|
55803
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
120 |
fun mk_induct_leverage_prem_prems_tac ctxt nn kks fp_abs_inverses abs_inverses set_maps |
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
121 |
pre_set_defs = |
52324 | 122 |
HEADGOAL (EVERY' (maps (fn kk => [select_prem_tac nn (dtac meta_spec) kk, etac meta_mp, |
55803
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
123 |
SELECT_GOAL (unfold_thms_tac ctxt (pre_set_defs @ fp_abs_inverses @ abs_inverses @ set_maps @ |
55966 | 124 |
sumprod_thms_set)), |
52324 | 125 |
solve_prem_prem_tac ctxt]) (rev kks))); |
49368 | 126 |
|
55803
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
127 |
fun mk_induct_discharge_prem_tac ctxt nn n fp_abs_inverses abs_inverses set_maps pre_set_defs m k |
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
128 |
kks = |
49429
64ac3471005a
cleaner way of dealing with the set functions of sums and products
blanchet
parents:
49428
diff
changeset
|
129 |
let val r = length kks in |
52324 | 130 |
HEADGOAL (EVERY' [select_prem_tac n (rotate_tac 1) k, rotate_tac ~1, hyp_subst_tac ctxt, |
131 |
REPEAT_DETERM_N m o (dtac meta_spec THEN' rotate_tac ~1)]) THEN |
|
49391 | 132 |
EVERY [REPEAT_DETERM_N r |
52324 | 133 |
(HEADGOAL (rotate_tac ~1 THEN' dtac meta_mp THEN' rotate_tac 1) THEN prefer_tac 2), |
54742
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
54241
diff
changeset
|
134 |
if r > 0 then ALLGOALS (Goal.norm_hhf_tac ctxt) else all_tac, HEADGOAL atac, |
55803
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
135 |
mk_induct_leverage_prem_prems_tac ctxt nn kks fp_abs_inverses abs_inverses set_maps |
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
136 |
pre_set_defs] |
49391 | 137 |
end; |
49368 | 138 |
|
55803
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
139 |
fun mk_induct_tac ctxt nn ns mss kkss ctr_defs ctor_induct' fp_abs_inverses abs_inverses set_maps |
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
140 |
pre_set_defss = |
49590 | 141 |
let val n = Integer.sum ns in |
54922 | 142 |
unfold_thms_tac ctxt ctr_defs THEN HEADGOAL (rtac ctor_induct') THEN |
54923
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54922
diff
changeset
|
143 |
co_induct_inst_as_projs_tac ctxt 0 THEN |
55803
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
144 |
EVERY (map4 (EVERY oooo map3 o |
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
145 |
mk_induct_discharge_prem_tac ctxt nn n fp_abs_inverses abs_inverses set_maps) |
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
146 |
pre_set_defss mss (unflat mss (1 upto n)) kkss) |
49368 | 147 |
end; |
148 |
||
55803
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
149 |
fun mk_coinduct_same_ctr_tac ctxt rel_eqs pre_rel_def fp_abs_inverse abs_inverse dtor_ctor ctr_def |
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
150 |
discs sels = |
51798 | 151 |
hyp_subst_tac ctxt THEN' |
49665 | 152 |
CONVERSION (hhf_concl_conv |
153 |
(Conv.top_conv (K (Conv.try_conv (Conv.rewr_conv ctr_def))) ctxt) ctxt) THEN' |
|
49642
9f884142334c
fixed simplification of prod and sum relators to avoid issues with e.g. codata ('a, 'b) k = K "'a + 'b"
blanchet
parents:
49639
diff
changeset
|
154 |
SELECT_GOAL (unfold_thms_tac ctxt (pre_rel_def :: dtor_ctor :: sels)) THEN' |
55803
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
155 |
SELECT_GOAL (unfold_thms_tac ctxt (pre_rel_def :: fp_abs_inverse :: abs_inverse :: dtor_ctor :: |
55966 | 156 |
sels @ sumprod_thms_rel @ @{thms o_apply vimage2p_def})) THEN' |
49591
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
157 |
(atac ORELSE' REPEAT o etac conjE THEN' |
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
158 |
full_simp_tac |
52324 | 159 |
(ss_only (@{thm prod.inject} :: no_refl discs @ rel_eqs @ more_simp_thms) ctxt) THEN' |
54241 | 160 |
REPEAT o etac conjE THEN_MAYBE' REPEAT o hyp_subst_tac ctxt THEN' |
161 |
REPEAT o (resolve_tac [refl, conjI] ORELSE' atac)); |
|
49590 | 162 |
|
52966 | 163 |
fun mk_coinduct_distinct_ctrs_tac ctxt discs discs' = |
54198
4fadf746f2d5
got rid of annoying duplicate rewrite rule warnings
blanchet
parents:
53690
diff
changeset
|
164 |
let |
4fadf746f2d5
got rid of annoying duplicate rewrite rule warnings
blanchet
parents:
53690
diff
changeset
|
165 |
val discs'' = map (perhaps (try (fn th => th RS @{thm notnotD}))) (discs @ discs') |
4fadf746f2d5
got rid of annoying duplicate rewrite rule warnings
blanchet
parents:
53690
diff
changeset
|
166 |
|> distinct Thm.eq_thm_prop; |
4fadf746f2d5
got rid of annoying duplicate rewrite rule warnings
blanchet
parents:
53690
diff
changeset
|
167 |
in |
4fadf746f2d5
got rid of annoying duplicate rewrite rule warnings
blanchet
parents:
53690
diff
changeset
|
168 |
hyp_subst_tac ctxt THEN' REPEAT o etac conjE THEN' |
4fadf746f2d5
got rid of annoying duplicate rewrite rule warnings
blanchet
parents:
53690
diff
changeset
|
169 |
full_simp_tac (ss_only (refl :: no_refl discs'' @ basic_simp_thms) ctxt) |
4fadf746f2d5
got rid of annoying duplicate rewrite rule warnings
blanchet
parents:
53690
diff
changeset
|
170 |
end; |
49590 | 171 |
|
55803
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
172 |
fun mk_coinduct_discharge_prem_tac ctxt rel_eqs' nn kk n pre_rel_def fp_abs_inverse abs_inverse |
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
173 |
dtor_ctor exhaust ctr_defs discss selss = |
49590 | 174 |
let val ks = 1 upto n in |
54837 | 175 |
EVERY' ([rtac allI, rtac allI, rtac impI, select_prem_tac nn (dtac meta_spec) kk, |
54923
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54922
diff
changeset
|
176 |
dtac meta_spec, dtac meta_mp, atac, rtac exhaust, K (co_induct_inst_as_projs_tac ctxt 0), |
51798 | 177 |
hyp_subst_tac ctxt] @ |
49591
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
178 |
map4 (fn k => fn ctr_def => fn discs => fn sels => |
54923
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54922
diff
changeset
|
179 |
EVERY' ([rtac exhaust, K (co_induct_inst_as_projs_tac ctxt 1)] @ |
49591
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
180 |
map2 (fn k' => fn discs' => |
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
181 |
if k' = k then |
55803
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
182 |
mk_coinduct_same_ctr_tac ctxt rel_eqs' pre_rel_def fp_abs_inverse abs_inverse |
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
183 |
dtor_ctor ctr_def discs sels |
49591
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
184 |
else |
52966 | 185 |
mk_coinduct_distinct_ctrs_tac ctxt discs discs') ks discss)) ks ctr_defs discss selss) |
49590 | 186 |
end; |
187 |
||
55803
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
188 |
fun mk_coinduct_tac ctxt rel_eqs' nn ns dtor_coinduct' pre_rel_defs fp_abs_inverses abs_inverses |
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
189 |
dtor_ctors exhausts ctr_defss discsss selsss = |
52324 | 190 |
HEADGOAL (rtac dtor_coinduct' THEN' |
55803
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
191 |
EVERY' (map10 (mk_coinduct_discharge_prem_tac ctxt rel_eqs' nn) |
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
192 |
(1 upto nn) ns pre_rel_defs fp_abs_inverses abs_inverses dtor_ctors exhausts ctr_defss discsss |
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents:
55642
diff
changeset
|
193 |
selsss)); |
49590 | 194 |
|
49123
263b0e330d8b
more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents:
diff
changeset
|
195 |
end; |