author | wenzelm |
Fri, 21 May 1999 16:22:39 +0200 | |
changeset 6692 | 05c56f41e661 |
parent 5291 | 5706f0ef1d43 |
child 7570 | a9391550eea1 |
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 |
||
4098 | 74 |
simpset_ref() := simpset() addSolver (K (DEPTH_SOLVE_1 o cont_tac)); |
3324 | 75 |
|
3661 | 76 |
|
77 |
||
3324 | 78 |
(* ---------------------------------------------------------- *) |
79 |
section"flift1, flift2"; |
|
80 |
(* ---------------------------------------------------------- *) |
|
81 |
||
82 |
||
5068 | 83 |
Goal "flift1 f`(Def x) = (f x)"; |
4098 | 84 |
by (simp_tac (simpset() addsimps [flift1_def]) 1); |
3324 | 85 |
qed"flift1_Def"; |
86 |
||
5068 | 87 |
Goal "flift2 f`(Def x) = Def (f x)"; |
4098 | 88 |
by (simp_tac (simpset() addsimps [flift2_def]) 1); |
3324 | 89 |
qed"flift2_Def"; |
90 |
||
5068 | 91 |
Goal "flift1 f`UU = UU"; |
4098 | 92 |
by (simp_tac (simpset() addsimps [flift1_def]) 1); |
3324 | 93 |
qed"flift1_UU"; |
94 |
||
5068 | 95 |
Goal "flift2 f`UU = UU"; |
4098 | 96 |
by (simp_tac (simpset() addsimps [flift2_def]) 1); |
3324 | 97 |
qed"flift2_UU"; |
98 |
||
99 |
Addsimps [flift1_Def,flift2_Def,flift1_UU,flift2_UU]; |
|
100 |
||
5143
b94cd208f073
Removal of leading "\!\!..." from most Goal commands
paulson
parents:
5068
diff
changeset
|
101 |
Goal "x~=UU ==> (flift2 f)`x~=UU"; |
3324 | 102 |
by (def_tac 1); |
103 |
qed"flift2_nUU"; |
|
104 |
||
105 |
Addsimps [flift2_nUU]; |
|
106 |
||
107 |