author | wenzelm |
Sun, 28 Dec 1997 15:46:13 +0100 | |
changeset 4494 | 7e5611945959 |
parent 4477 | b3e5857d8d99 |
child 4833 | 2e53109d4bc8 |
permissions | -rw-r--r-- |
2357 | 1 |
(* Title: HOLCF/Lift3.ML |
2 |
ID: $Id$ |
|
3035 | 3 |
Author: Olaf Mueller |
2357 | 4 |
Copyright 1996 Technische Universitaet Muenchen |
5 |
||
6 |
Theorems for Lift3.thy |
|
7 |
*) |
|
8 |
||
2356
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
9 |
|
2640 | 10 |
(* for compatibility with old HOLCF-Version *) |
11 |
qed_goal "inst_lift_pcpo" thy "UU = Undef" |
|
12 |
(fn prems => |
|
13 |
[ |
|
14 |
(simp_tac (HOL_ss addsimps [UU_def,UU_lift_def]) 1) |
|
15 |
]); |
|
16 |
||
2356
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
17 |
(* ----------------------------------------------------------- *) |
3035 | 18 |
(* In lift.simps Undef is replaced by UU *) |
19 |
(* Undef should be invisible from now on *) |
|
2356
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
20 |
(* ----------------------------------------------------------- *) |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
21 |
|
3035 | 22 |
|
2356
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
23 |
Addsimps [inst_lift_pcpo]; |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
24 |
|
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
25 |
local |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
26 |
|
3035 | 27 |
val case1' = prove_goal thy "lift_case f1 f2 UU = f1" |
4098 | 28 |
(fn _ => [simp_tac (simpset() addsimps lift.simps) 1]); |
3035 | 29 |
val case2' = prove_goal thy "lift_case f1 f2 (Def a) = f2 a" |
3041 | 30 |
(fn _ => [Simp_tac 1]); |
3035 | 31 |
val distinct1' = prove_goal thy "UU ~= Def a" |
3041 | 32 |
(fn _ => [Simp_tac 1]); |
3035 | 33 |
val distinct2' = prove_goal thy "Def a ~= UU" |
3041 | 34 |
(fn _ => [Simp_tac 1]); |
3035 | 35 |
val inject' = prove_goal thy "Def a = Def aa = (a = aa)" |
3041 | 36 |
(fn _ => [Simp_tac 1]); |
3035 | 37 |
val rec1' = prove_goal thy "lift_rec f1 f2 UU = f1" |
3041 | 38 |
(fn _ => [Simp_tac 1]); |
3035 | 39 |
val rec2' = prove_goal thy "lift_rec f1 f2 (Def a) = f2 a" |
3041 | 40 |
(fn _ => [Simp_tac 1]); |
3035 | 41 |
val induct' = prove_goal thy "[| P UU; !a. P (Def a) |] ==> P lift" |
3041 | 42 |
(fn prems => [cut_facts_tac prems 1, Asm_full_simp_tac 1, |
43 |
etac Lift1.lift.induct 1,fast_tac HOL_cs 1]); |
|
2356
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
44 |
|
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
45 |
in |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
46 |
|
3035 | 47 |
val Def_not_UU = distinct2'; |
2356
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
48 |
|
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
49 |
structure lift = |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
50 |
struct |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
51 |
val cases = [case1',case2']; |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
52 |
val distinct = [distinct1',distinct2']; |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
53 |
val inject = [inject']; |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
54 |
val induct = allI RSN(2,induct'); |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
55 |
val recs = [rec1',rec2']; |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
56 |
val simps = cases@distinct@inject@recs; |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
57 |
fun induct_tac (s:string) (i:int) = |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
58 |
(res_inst_tac [("lift",s)] induct i); |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
59 |
end; |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
60 |
|
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
61 |
end; (* local *) |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
62 |
|
3250 | 63 |
Delsimps Lift1.lift.simps; |
2356
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
64 |
Delsimps [inst_lift_pcpo]; |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
65 |
Addsimps [inst_lift_pcpo RS sym]; |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
66 |
Addsimps lift.simps; |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
67 |
|
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
68 |
|
3035 | 69 |
(* --------------------------------------------------------*) |
70 |
section"less_lift"; |
|
71 |
(* --------------------------------------------------------*) |
|
2356
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
72 |
|
3035 | 73 |
goal thy "(x::'a lift) << y = (x=y | x=UU)"; |
3457 | 74 |
by (stac inst_lift_po 1); |
2356
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
75 |
by (Simp_tac 1); |
3035 | 76 |
qed"less_lift"; |
2356
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
77 |
|
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
78 |
|
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
79 |
(* ---------------------------------------------------------- *) |
3035 | 80 |
section"UU and Def"; |
2356
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
81 |
(* ---------------------------------------------------------- *) |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
82 |
|
3842 | 83 |
goal thy "x=UU | (? y. x=Def y)"; |
2356
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
84 |
by (lift.induct_tac "x" 1); |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
85 |
by (Asm_simp_tac 1); |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
86 |
by (rtac disjI2 1); |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
87 |
by (rtac exI 1); |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
88 |
by (Asm_simp_tac 1); |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
89 |
qed"Lift_exhaust"; |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
90 |
|
3035 | 91 |
val prems = goal thy |
2356
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
92 |
"[| x = UU ==> P; ? a. x = Def a ==> P |] ==> P"; |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
93 |
by (cut_facts_tac [Lift_exhaust] 1); |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
94 |
by (fast_tac (HOL_cs addSEs prems) 1); |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
95 |
qed"Lift_cases"; |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
96 |
|
2841
c2508f4ab739
Added "discrete" CPOs and modified IMP to use those rather than "lift"
nipkow
parents:
2648
diff
changeset
|
97 |
goal thy |
c2508f4ab739
Added "discrete" CPOs and modified IMP to use those rather than "lift"
nipkow
parents:
2648
diff
changeset
|
98 |
"P(lift_case a b x) = ((x=UU --> P a) & (!y. x = Def y --> P(b y)))"; |
3457 | 99 |
by (lift.induct_tac "x" 1); |
100 |
by (ALLGOALS Asm_simp_tac); |
|
2841
c2508f4ab739
Added "discrete" CPOs and modified IMP to use those rather than "lift"
nipkow
parents:
2648
diff
changeset
|
101 |
qed "expand_lift_case"; |
c2508f4ab739
Added "discrete" CPOs and modified IMP to use those rather than "lift"
nipkow
parents:
2648
diff
changeset
|
102 |
|
3842 | 103 |
goal thy "(x~=UU)=(? y. x=Def y)"; |
3457 | 104 |
by (rtac iffI 1); |
105 |
by (rtac Lift_cases 1); |
|
3035 | 106 |
by (REPEAT (fast_tac (HOL_cs addSIs lift.distinct) 1)); |
2356
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
107 |
qed"not_Undef_is_Def"; |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
108 |
|
3035 | 109 |
(* For x~=UU in assumptions def_tac replaces x by (Def a) in conclusion *) |
110 |
val def_tac = etac (not_Undef_is_Def RS iffD1 RS exE) THEN' Asm_simp_tac; |
|
2356
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
111 |
|
3035 | 112 |
bind_thm("Undef_eq_UU", inst_lift_pcpo RS sym); |
113 |
||
114 |
val DefE = prove_goal thy "Def x = UU ==> R" |
|
2356
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
115 |
(fn prems => [ |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
116 |
cut_facts_tac prems 1, |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
117 |
asm_full_simp_tac (HOL_ss addsimps [Def_not_UU]) 1]); |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
118 |
|
3035 | 119 |
val prems = goal thy "[| x = Def s; x = UU |] ==> R"; |
2356
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
120 |
by (cut_facts_tac prems 1); |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
121 |
by (fast_tac (HOL_cs addSDs [DefE]) 1); |
3035 | 122 |
qed"DefE2"; |
123 |
||
124 |
goal thy "Def x << Def y = (x = y)"; |
|
125 |
by (stac (hd lift.inject RS sym) 1); |
|
126 |
back(); |
|
127 |
by (rtac iffI 1); |
|
4098 | 128 |
by (asm_full_simp_tac (simpset() addsimps [inst_lift_po] ) 1); |
3457 | 129 |
by (etac (antisym_less_inverse RS conjunct1) 1); |
3035 | 130 |
qed"Def_inject_less_eq"; |
131 |
||
132 |
goal thy "Def x << y = (Def x = y)"; |
|
4098 | 133 |
by (simp_tac (simpset() addsimps [less_lift]) 1); |
3035 | 134 |
qed"Def_less_is_eq"; |
135 |
||
136 |
Addsimps [Def_less_is_eq]; |
|
2356
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
137 |
|
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
138 |
(* ---------------------------------------------------------- *) |
3035 | 139 |
section"Lift is flat"; |
2356
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
140 |
(* ---------------------------------------------------------- *) |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
141 |
|
3324 | 142 |
goal thy "! x y::'a lift. x << y --> x = UU | x = y"; |
4098 | 143 |
by (simp_tac (simpset() addsimps [less_lift]) 1); |
3324 | 144 |
qed"ax_flat_lift"; |
3035 | 145 |
|
146 |
(* Two specific lemmas for the combination of LCF and HOL terms *) |
|
147 |
||
148 |
goal thy "!!f.[|cont g; cont f|] ==> cont(%x. ((f x)`(g x)) s)"; |
|
3457 | 149 |
by (rtac cont2cont_CF1L 1); |
3035 | 150 |
by (REPEAT (resolve_tac cont_lemmas1 1)); |
4477
b3e5857d8d99
New Auto_tac (by Oheimb), and new syntax (without parens), and expandshort
paulson
parents:
4098
diff
changeset
|
151 |
by Auto_tac; |
3035 | 152 |
qed"cont_fapp_app"; |
153 |
||
154 |
goal thy "!!f.[|cont g; cont f|] ==> cont(%x. ((f x)`(g x)) s t)"; |
|
3457 | 155 |
by (rtac cont2cont_CF1L 1); |
156 |
by (etac cont_fapp_app 1); |
|
157 |
by (assume_tac 1); |
|
3035 | 158 |
qed"cont_fapp_app_app"; |
2356
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
159 |
|
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
160 |
|
3035 | 161 |
(* continuity of if then else *) |
162 |
val prems = goal thy "[| cont f1; cont f2 |] ==> \ |
|
2356
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
163 |
\ cont (%x. if b then f1 x else f2 x)"; |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
164 |
by (cut_facts_tac prems 1); |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
165 |
by (case_tac "b" 1); |
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
166 |
by (TRYALL (fast_tac (HOL_cs addss HOL_ss))); |
3035 | 167 |
qed"cont_if"; |
2356
125260ef480c
Theories Lift1, Lift2 and Lift3 inserted below HOLCF.thy
sandnerr
parents:
diff
changeset
|
168 |