author | wenzelm |
Thu, 04 Oct 2001 15:29:22 +0200 | |
changeset 11679 | afdbee613f58 |
parent 10834 | a7897aebbffc |
child 12026 | 0b1d80ada4ab |
permissions | -rw-r--r-- |
3655 | 1 |
(* Title: HOLCF/Lift.ML |
2 |
ID: $Id$ |
|
3 |
Author: Olaf Mueller |
|
4 |
Copyright 1997 Technische Universitaet Muenchen |
|
5 |
||
6 |
Theorems for Lift.thy |
|
7 |
*) |
|
8 |
||
3324 | 9 |
|
10 |
(* ---------------------------------------------------------- *) |
|
11 |
section"Continuity Proofs for flift1, flift2, if"; |
|
3655 | 12 |
(* ---------------------------------------------------------- *) |
3324 | 13 |
(* need the instance into flat *) |
14 |
||
15 |
||
16 |
(* flift1 is continuous in its argument itself*) |
|
5068 | 17 |
Goal "cont (lift_case UU f)"; |
3457 | 18 |
by (rtac flatdom_strict2cont 1); |
3324 | 19 |
by (Simp_tac 1); |
20 |
qed"cont_flift1_arg"; |
|
21 |
||
22 |
(* flift1 is continuous in a variable that occurs only |
|
23 |
in the Def branch *) |
|
24 |
||
5068 | 25 |
Goal "!!f. [| !! a. cont (%y. (f y) a) |] ==> \ |
3324 | 26 |
\ cont (%y. lift_case UU (f y))"; |
3457 | 27 |
by (rtac cont2cont_CF1L_rev 1); |
3324 | 28 |
by (strip_tac 1); |
29 |
by (res_inst_tac [("x","y")] Lift_cases 1); |
|
30 |
by (Asm_simp_tac 1); |
|
4098 | 31 |
by (fast_tac (HOL_cs addss simpset()) 1); |
3324 | 32 |
qed"cont_flift1_not_arg"; |
33 |
||
34 |
(* flift1 is continuous in a variable that occurs either |
|
35 |
in the Def branch or in the argument *) |
|
36 |
||
5068 | 37 |
Goal "!!f. [| !! a. cont (%y. (f y) a); cont g|] ==> \ |
3324 | 38 |
\ cont (%y. lift_case UU (f y) (g y))"; |
5143
b94cd208f073
Removal of leading "\!\!..." from most Goal commands
paulson
parents:
5068
diff
changeset
|
39 |
by (res_inst_tac [("tt","g")] cont2cont_app 1); |
3457 | 40 |
by (rtac cont_flift1_not_arg 1); |
4477
b3e5857d8d99
New Auto_tac (by Oheimb), and new syntax (without parens), and expandshort
paulson
parents:
4098
diff
changeset
|
41 |
by Auto_tac; |
3457 | 42 |
by (rtac cont_flift1_arg 1); |
3324 | 43 |
qed"cont_flift1_arg_and_not_arg"; |
44 |
||
45 |
(* flift2 is continuous in its argument itself *) |
|
46 |
||
5068 | 47 |
Goal "cont (lift_case UU (%y. Def (f y)))"; |
3457 | 48 |
by (rtac flatdom_strict2cont 1); |
3324 | 49 |
by (Simp_tac 1); |
50 |
qed"cont_flift2_arg"; |
|
51 |
||
52 |
||
53 |
(* ---------------------------------------------------------- *) |
|
54 |
(* Extension of cont_tac and installation of simplifier *) |
|
55 |
(* ---------------------------------------------------------- *) |
|
56 |
||
57 |
bind_thm("cont2cont_CF1L_rev2",allI RS cont2cont_CF1L_rev); |
|
58 |
||
59 |
val cont_lemmas_ext = [cont_flift1_arg,cont_flift2_arg, |
|
60 |
cont_flift1_arg_and_not_arg,cont2cont_CF1L_rev2, |
|
5291 | 61 |
cont_Rep_CFun_app,cont_Rep_CFun_app_app,cont_if]; |
3324 | 62 |
|
63 |
val cont_lemmas2 = cont_lemmas1 @ cont_lemmas_ext; |
|
64 |
||
65 |
Addsimps cont_lemmas_ext; |
|
66 |
||
67 |
fun cont_tac i = resolve_tac cont_lemmas2 i; |
|
68 |
fun cont_tacR i = REPEAT (cont_tac i); |
|
69 |
||
4098 | 70 |
fun cont_tacRs i = simp_tac (simpset() addsimps [flift1_def,flift2_def]) i THEN |
3324 | 71 |
REPEAT (cont_tac i); |
72 |
||
73 |
||
7570 | 74 |
simpset_ref() := simpset() addSolver |
75 |
(mk_solver "cont_tac" (K (DEPTH_SOLVE_1 o cont_tac))); |
|
3324 | 76 |
|
3661 | 77 |
|
78 |
||
3324 | 79 |
(* ---------------------------------------------------------- *) |
80 |
section"flift1, flift2"; |
|
81 |
(* ---------------------------------------------------------- *) |
|
82 |
||
83 |
||
10834 | 84 |
Goal "flift1 f$(Def x) = (f x)"; |
4098 | 85 |
by (simp_tac (simpset() addsimps [flift1_def]) 1); |
3324 | 86 |
qed"flift1_Def"; |
87 |
||
10834 | 88 |
Goal "flift2 f$(Def x) = Def (f x)"; |
4098 | 89 |
by (simp_tac (simpset() addsimps [flift2_def]) 1); |
3324 | 90 |
qed"flift2_Def"; |
91 |
||
10834 | 92 |
Goal "flift1 f$UU = UU"; |
4098 | 93 |
by (simp_tac (simpset() addsimps [flift1_def]) 1); |
3324 | 94 |
qed"flift1_UU"; |
95 |
||
10834 | 96 |
Goal "flift2 f$UU = UU"; |
4098 | 97 |
by (simp_tac (simpset() addsimps [flift2_def]) 1); |
3324 | 98 |
qed"flift2_UU"; |
99 |
||
100 |
Addsimps [flift1_Def,flift2_Def,flift1_UU,flift2_UU]; |
|
101 |
||
10834 | 102 |
Goal "x~=UU ==> (flift2 f)$x~=UU"; |
3324 | 103 |
by (def_tac 1); |
104 |
qed"flift2_nUU"; |
|
105 |
||
106 |
Addsimps [flift2_nUU]; |
|
107 |
||
108 |