author | wenzelm |
Thu, 11 Jul 2013 23:24:40 +0200 | |
changeset 52604 | ff2f0818aebc |
parent 52307 | 32c433c38ddd |
child 53011 | aeee0a4be6cf |
permissions | -rw-r--r-- |
47308 | 1 |
(* Title: HOL/Lifting.thy |
2 |
Author: Brian Huffman and Ondrej Kuncar |
|
3 |
Author: Cezary Kaliszyk and Christian Urban |
|
4 |
*) |
|
5 |
||
6 |
header {* Lifting package *} |
|
7 |
||
8 |
theory Lifting |
|
51112 | 9 |
imports Equiv_Relations Transfer |
47308 | 10 |
keywords |
51374
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
11 |
"parametric" and |
47308 | 12 |
"print_quotmaps" "print_quotients" :: diag and |
13 |
"lift_definition" :: thy_goal and |
|
14 |
"setup_lifting" :: thy_decl |
|
15 |
begin |
|
16 |
||
47325 | 17 |
subsection {* Function map *} |
47308 | 18 |
|
19 |
notation map_fun (infixr "--->" 55) |
|
20 |
||
21 |
lemma map_fun_id: |
|
22 |
"(id ---> id) = id" |
|
23 |
by (simp add: fun_eq_iff) |
|
24 |
||
51994 | 25 |
subsection {* Other predicates on relations *} |
26 |
||
27 |
definition left_total :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> bool" |
|
28 |
where "left_total R \<longleftrightarrow> (\<forall>x. \<exists>y. R x y)" |
|
29 |
||
30 |
lemma left_totalI: |
|
31 |
"(\<And>x. \<exists>y. R x y) \<Longrightarrow> left_total R" |
|
32 |
unfolding left_total_def by blast |
|
33 |
||
34 |
lemma left_totalE: |
|
35 |
assumes "left_total R" |
|
36 |
obtains "(\<And>x. \<exists>y. R x y)" |
|
37 |
using assms unfolding left_total_def by blast |
|
38 |
||
39 |
definition left_unique :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> bool" |
|
40 |
where "left_unique R \<longleftrightarrow> (\<forall>x y z. R x z \<longrightarrow> R y z \<longrightarrow> x = y)" |
|
41 |
||
52036
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
42 |
lemma left_total_fun: |
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
43 |
"\<lbrakk>left_unique A; left_total B\<rbrakk> \<Longrightarrow> left_total (A ===> B)" |
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
44 |
unfolding left_total_def fun_rel_def |
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
45 |
apply (rule allI, rename_tac f) |
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
46 |
apply (rule_tac x="\<lambda>y. SOME z. B (f (THE x. A x y)) z" in exI) |
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
47 |
apply clarify |
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
48 |
apply (subgoal_tac "(THE x. A x y) = x", simp) |
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
49 |
apply (rule someI_ex) |
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
50 |
apply (simp) |
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
51 |
apply (rule the_equality) |
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
52 |
apply assumption |
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
53 |
apply (simp add: left_unique_def) |
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
54 |
done |
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
55 |
|
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
56 |
lemma left_unique_fun: |
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
57 |
"\<lbrakk>left_total A; left_unique B\<rbrakk> \<Longrightarrow> left_unique (A ===> B)" |
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
58 |
unfolding left_total_def left_unique_def fun_rel_def |
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
59 |
by (clarify, rule ext, fast) |
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
60 |
|
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
61 |
lemma left_total_eq: "left_total op=" unfolding left_total_def by blast |
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
62 |
|
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
63 |
lemma left_unique_eq: "left_unique op=" unfolding left_unique_def by blast |
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
64 |
|
47308 | 65 |
subsection {* Quotient Predicate *} |
66 |
||
67 |
definition |
|
68 |
"Quotient R Abs Rep T \<longleftrightarrow> |
|
69 |
(\<forall>a. Abs (Rep a) = a) \<and> |
|
70 |
(\<forall>a. R (Rep a) (Rep a)) \<and> |
|
71 |
(\<forall>r s. R r s \<longleftrightarrow> R r r \<and> R s s \<and> Abs r = Abs s) \<and> |
|
72 |
T = (\<lambda>x y. R x x \<and> Abs x = y)" |
|
73 |
||
74 |
lemma QuotientI: |
|
75 |
assumes "\<And>a. Abs (Rep a) = a" |
|
76 |
and "\<And>a. R (Rep a) (Rep a)" |
|
77 |
and "\<And>r s. R r s \<longleftrightarrow> R r r \<and> R s s \<and> Abs r = Abs s" |
|
78 |
and "T = (\<lambda>x y. R x x \<and> Abs x = y)" |
|
79 |
shows "Quotient R Abs Rep T" |
|
80 |
using assms unfolding Quotient_def by blast |
|
81 |
||
47536 | 82 |
context |
83 |
fixes R Abs Rep T |
|
47308 | 84 |
assumes a: "Quotient R Abs Rep T" |
47536 | 85 |
begin |
86 |
||
87 |
lemma Quotient_abs_rep: "Abs (Rep a) = a" |
|
88 |
using a unfolding Quotient_def |
|
47308 | 89 |
by simp |
90 |
||
47536 | 91 |
lemma Quotient_rep_reflp: "R (Rep a) (Rep a)" |
92 |
using a unfolding Quotient_def |
|
47308 | 93 |
by blast |
94 |
||
95 |
lemma Quotient_rel: |
|
47536 | 96 |
"R r r \<and> R s s \<and> Abs r = Abs s \<longleftrightarrow> R r s" -- {* orientation does not loop on rewriting *} |
97 |
using a unfolding Quotient_def |
|
47308 | 98 |
by blast |
99 |
||
47536 | 100 |
lemma Quotient_cr_rel: "T = (\<lambda>x y. R x x \<and> Abs x = y)" |
47308 | 101 |
using a unfolding Quotient_def |
102 |
by blast |
|
103 |
||
47536 | 104 |
lemma Quotient_refl1: "R r s \<Longrightarrow> R r r" |
105 |
using a unfolding Quotient_def |
|
106 |
by fast |
|
107 |
||
108 |
lemma Quotient_refl2: "R r s \<Longrightarrow> R s s" |
|
109 |
using a unfolding Quotient_def |
|
110 |
by fast |
|
111 |
||
112 |
lemma Quotient_rel_rep: "R (Rep a) (Rep b) \<longleftrightarrow> a = b" |
|
113 |
using a unfolding Quotient_def |
|
114 |
by metis |
|
115 |
||
116 |
lemma Quotient_rep_abs: "R r r \<Longrightarrow> R (Rep (Abs r)) r" |
|
47308 | 117 |
using a unfolding Quotient_def |
118 |
by blast |
|
119 |
||
47937
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47936
diff
changeset
|
120 |
lemma Quotient_rep_abs_fold_unmap: |
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47936
diff
changeset
|
121 |
assumes "x' \<equiv> Abs x" and "R x x" and "Rep x' \<equiv> Rep' x'" |
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47936
diff
changeset
|
122 |
shows "R (Rep' x') x" |
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47936
diff
changeset
|
123 |
proof - |
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47936
diff
changeset
|
124 |
have "R (Rep x') x" using assms(1-2) Quotient_rep_abs by auto |
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47936
diff
changeset
|
125 |
then show ?thesis using assms(3) by simp |
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47936
diff
changeset
|
126 |
qed |
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47936
diff
changeset
|
127 |
|
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47936
diff
changeset
|
128 |
lemma Quotient_Rep_eq: |
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47936
diff
changeset
|
129 |
assumes "x' \<equiv> Abs x" |
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47936
diff
changeset
|
130 |
shows "Rep x' \<equiv> Rep x'" |
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47936
diff
changeset
|
131 |
by simp |
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47936
diff
changeset
|
132 |
|
47536 | 133 |
lemma Quotient_rel_abs: "R r s \<Longrightarrow> Abs r = Abs s" |
134 |
using a unfolding Quotient_def |
|
135 |
by blast |
|
136 |
||
47937
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47936
diff
changeset
|
137 |
lemma Quotient_rel_abs2: |
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47936
diff
changeset
|
138 |
assumes "R (Rep x) y" |
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47936
diff
changeset
|
139 |
shows "x = Abs y" |
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47936
diff
changeset
|
140 |
proof - |
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47936
diff
changeset
|
141 |
from assms have "Abs (Rep x) = Abs y" by (auto intro: Quotient_rel_abs) |
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47936
diff
changeset
|
142 |
then show ?thesis using assms(1) by (simp add: Quotient_abs_rep) |
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47936
diff
changeset
|
143 |
qed |
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47936
diff
changeset
|
144 |
|
47536 | 145 |
lemma Quotient_symp: "symp R" |
47308 | 146 |
using a unfolding Quotient_def using sympI by (metis (full_types)) |
147 |
||
47536 | 148 |
lemma Quotient_transp: "transp R" |
47308 | 149 |
using a unfolding Quotient_def using transpI by (metis (full_types)) |
150 |
||
47536 | 151 |
lemma Quotient_part_equivp: "part_equivp R" |
152 |
by (metis Quotient_rep_reflp Quotient_symp Quotient_transp part_equivpI) |
|
153 |
||
154 |
end |
|
47308 | 155 |
|
156 |
lemma identity_quotient: "Quotient (op =) id id (op =)" |
|
157 |
unfolding Quotient_def by simp |
|
158 |
||
47652
1b722b100301
move alternative definition lemmas into Lifting.thy;
huffman
parents:
47651
diff
changeset
|
159 |
text {* TODO: Use one of these alternatives as the real definition. *} |
1b722b100301
move alternative definition lemmas into Lifting.thy;
huffman
parents:
47651
diff
changeset
|
160 |
|
47308 | 161 |
lemma Quotient_alt_def: |
162 |
"Quotient R Abs Rep T \<longleftrightarrow> |
|
163 |
(\<forall>a b. T a b \<longrightarrow> Abs a = b) \<and> |
|
164 |
(\<forall>b. T (Rep b) b) \<and> |
|
165 |
(\<forall>x y. R x y \<longleftrightarrow> T x (Abs x) \<and> T y (Abs y) \<and> Abs x = Abs y)" |
|
166 |
apply safe |
|
167 |
apply (simp (no_asm_use) only: Quotient_def, fast) |
|
168 |
apply (simp (no_asm_use) only: Quotient_def, fast) |
|
169 |
apply (simp (no_asm_use) only: Quotient_def, fast) |
|
170 |
apply (simp (no_asm_use) only: Quotient_def, fast) |
|
171 |
apply (simp (no_asm_use) only: Quotient_def, fast) |
|
172 |
apply (simp (no_asm_use) only: Quotient_def, fast) |
|
173 |
apply (rule QuotientI) |
|
174 |
apply simp |
|
175 |
apply metis |
|
176 |
apply simp |
|
177 |
apply (rule ext, rule ext, metis) |
|
178 |
done |
|
179 |
||
180 |
lemma Quotient_alt_def2: |
|
181 |
"Quotient R Abs Rep T \<longleftrightarrow> |
|
182 |
(\<forall>a b. T a b \<longrightarrow> Abs a = b) \<and> |
|
183 |
(\<forall>b. T (Rep b) b) \<and> |
|
184 |
(\<forall>x y. R x y \<longleftrightarrow> T x (Abs y) \<and> T y (Abs x))" |
|
185 |
unfolding Quotient_alt_def by (safe, metis+) |
|
186 |
||
47652
1b722b100301
move alternative definition lemmas into Lifting.thy;
huffman
parents:
47651
diff
changeset
|
187 |
lemma Quotient_alt_def3: |
1b722b100301
move alternative definition lemmas into Lifting.thy;
huffman
parents:
47651
diff
changeset
|
188 |
"Quotient R Abs Rep T \<longleftrightarrow> |
1b722b100301
move alternative definition lemmas into Lifting.thy;
huffman
parents:
47651
diff
changeset
|
189 |
(\<forall>a b. T a b \<longrightarrow> Abs a = b) \<and> (\<forall>b. T (Rep b) b) \<and> |
1b722b100301
move alternative definition lemmas into Lifting.thy;
huffman
parents:
47651
diff
changeset
|
190 |
(\<forall>x y. R x y \<longleftrightarrow> (\<exists>z. T x z \<and> T y z))" |
1b722b100301
move alternative definition lemmas into Lifting.thy;
huffman
parents:
47651
diff
changeset
|
191 |
unfolding Quotient_alt_def2 by (safe, metis+) |
1b722b100301
move alternative definition lemmas into Lifting.thy;
huffman
parents:
47651
diff
changeset
|
192 |
|
1b722b100301
move alternative definition lemmas into Lifting.thy;
huffman
parents:
47651
diff
changeset
|
193 |
lemma Quotient_alt_def4: |
1b722b100301
move alternative definition lemmas into Lifting.thy;
huffman
parents:
47651
diff
changeset
|
194 |
"Quotient R Abs Rep T \<longleftrightarrow> |
1b722b100301
move alternative definition lemmas into Lifting.thy;
huffman
parents:
47651
diff
changeset
|
195 |
(\<forall>a b. T a b \<longrightarrow> Abs a = b) \<and> (\<forall>b. T (Rep b) b) \<and> R = T OO conversep T" |
1b722b100301
move alternative definition lemmas into Lifting.thy;
huffman
parents:
47651
diff
changeset
|
196 |
unfolding Quotient_alt_def3 fun_eq_iff by auto |
1b722b100301
move alternative definition lemmas into Lifting.thy;
huffman
parents:
47651
diff
changeset
|
197 |
|
47308 | 198 |
lemma fun_quotient: |
199 |
assumes 1: "Quotient R1 abs1 rep1 T1" |
|
200 |
assumes 2: "Quotient R2 abs2 rep2 T2" |
|
201 |
shows "Quotient (R1 ===> R2) (rep1 ---> abs2) (abs1 ---> rep2) (T1 ===> T2)" |
|
202 |
using assms unfolding Quotient_alt_def2 |
|
203 |
unfolding fun_rel_def fun_eq_iff map_fun_apply |
|
204 |
by (safe, metis+) |
|
205 |
||
206 |
lemma apply_rsp: |
|
207 |
fixes f g::"'a \<Rightarrow> 'c" |
|
208 |
assumes q: "Quotient R1 Abs1 Rep1 T1" |
|
209 |
and a: "(R1 ===> R2) f g" "R1 x y" |
|
210 |
shows "R2 (f x) (g y)" |
|
211 |
using a by (auto elim: fun_relE) |
|
212 |
||
213 |
lemma apply_rsp': |
|
214 |
assumes a: "(R1 ===> R2) f g" "R1 x y" |
|
215 |
shows "R2 (f x) (g y)" |
|
216 |
using a by (auto elim: fun_relE) |
|
217 |
||
218 |
lemma apply_rsp'': |
|
219 |
assumes "Quotient R Abs Rep T" |
|
220 |
and "(R ===> S) f f" |
|
221 |
shows "S (f (Rep x)) (f (Rep x))" |
|
222 |
proof - |
|
223 |
from assms(1) have "R (Rep x) (Rep x)" by (rule Quotient_rep_reflp) |
|
224 |
then show ?thesis using assms(2) by (auto intro: apply_rsp') |
|
225 |
qed |
|
226 |
||
227 |
subsection {* Quotient composition *} |
|
228 |
||
229 |
lemma Quotient_compose: |
|
230 |
assumes 1: "Quotient R1 Abs1 Rep1 T1" |
|
231 |
assumes 2: "Quotient R2 Abs2 Rep2 T2" |
|
232 |
shows "Quotient (T1 OO R2 OO conversep T1) (Abs2 \<circ> Abs1) (Rep1 \<circ> Rep2) (T1 OO T2)" |
|
51994 | 233 |
using assms unfolding Quotient_alt_def4 by fastforce |
47308 | 234 |
|
47521
69f95ac85c3d
tuned the setup of lifting; generate transfer rules for typedef and Quotient thms
kuncar
parents:
47501
diff
changeset
|
235 |
lemma equivp_reflp2: |
69f95ac85c3d
tuned the setup of lifting; generate transfer rules for typedef and Quotient thms
kuncar
parents:
47501
diff
changeset
|
236 |
"equivp R \<Longrightarrow> reflp R" |
69f95ac85c3d
tuned the setup of lifting; generate transfer rules for typedef and Quotient thms
kuncar
parents:
47501
diff
changeset
|
237 |
by (erule equivpE) |
69f95ac85c3d
tuned the setup of lifting; generate transfer rules for typedef and Quotient thms
kuncar
parents:
47501
diff
changeset
|
238 |
|
47544 | 239 |
subsection {* Respects predicate *} |
240 |
||
241 |
definition Respects :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> 'a set" |
|
242 |
where "Respects R = {x. R x x}" |
|
243 |
||
244 |
lemma in_respects: "x \<in> Respects R \<longleftrightarrow> R x x" |
|
245 |
unfolding Respects_def by simp |
|
246 |
||
47308 | 247 |
subsection {* Invariant *} |
248 |
||
249 |
definition invariant :: "('a \<Rightarrow> bool) \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> bool" |
|
250 |
where "invariant R = (\<lambda>x y. R x \<and> x = y)" |
|
251 |
||
252 |
lemma invariant_to_eq: |
|
253 |
assumes "invariant P x y" |
|
254 |
shows "x = y" |
|
255 |
using assms by (simp add: invariant_def) |
|
256 |
||
257 |
lemma fun_rel_eq_invariant: |
|
258 |
shows "((invariant R) ===> S) = (\<lambda>f g. \<forall>x. R x \<longrightarrow> S (f x) (g x))" |
|
259 |
by (auto simp add: invariant_def fun_rel_def) |
|
260 |
||
261 |
lemma invariant_same_args: |
|
262 |
shows "invariant P x x \<equiv> P x" |
|
263 |
using assms by (auto simp add: invariant_def) |
|
264 |
||
47361
87c0eaf04bad
support non-open typedefs; define cr_rel in terms of a rep function for typedefs
kuncar
parents:
47354
diff
changeset
|
265 |
lemma UNIV_typedef_to_Quotient: |
47308 | 266 |
assumes "type_definition Rep Abs UNIV" |
47361
87c0eaf04bad
support non-open typedefs; define cr_rel in terms of a rep function for typedefs
kuncar
parents:
47354
diff
changeset
|
267 |
and T_def: "T \<equiv> (\<lambda>x y. x = Rep y)" |
47308 | 268 |
shows "Quotient (op =) Abs Rep T" |
269 |
proof - |
|
270 |
interpret type_definition Rep Abs UNIV by fact |
|
47361
87c0eaf04bad
support non-open typedefs; define cr_rel in terms of a rep function for typedefs
kuncar
parents:
47354
diff
changeset
|
271 |
from Abs_inject Rep_inverse Abs_inverse T_def show ?thesis |
87c0eaf04bad
support non-open typedefs; define cr_rel in terms of a rep function for typedefs
kuncar
parents:
47354
diff
changeset
|
272 |
by (fastforce intro!: QuotientI fun_eq_iff) |
47308 | 273 |
qed |
274 |
||
47361
87c0eaf04bad
support non-open typedefs; define cr_rel in terms of a rep function for typedefs
kuncar
parents:
47354
diff
changeset
|
275 |
lemma UNIV_typedef_to_equivp: |
47308 | 276 |
fixes Abs :: "'a \<Rightarrow> 'b" |
277 |
and Rep :: "'b \<Rightarrow> 'a" |
|
278 |
assumes "type_definition Rep Abs (UNIV::'a set)" |
|
279 |
shows "equivp (op=::'a\<Rightarrow>'a\<Rightarrow>bool)" |
|
280 |
by (rule identity_equivp) |
|
281 |
||
47354 | 282 |
lemma typedef_to_Quotient: |
47361
87c0eaf04bad
support non-open typedefs; define cr_rel in terms of a rep function for typedefs
kuncar
parents:
47354
diff
changeset
|
283 |
assumes "type_definition Rep Abs S" |
87c0eaf04bad
support non-open typedefs; define cr_rel in terms of a rep function for typedefs
kuncar
parents:
47354
diff
changeset
|
284 |
and T_def: "T \<equiv> (\<lambda>x y. x = Rep y)" |
47501 | 285 |
shows "Quotient (invariant (\<lambda>x. x \<in> S)) Abs Rep T" |
47361
87c0eaf04bad
support non-open typedefs; define cr_rel in terms of a rep function for typedefs
kuncar
parents:
47354
diff
changeset
|
286 |
proof - |
87c0eaf04bad
support non-open typedefs; define cr_rel in terms of a rep function for typedefs
kuncar
parents:
47354
diff
changeset
|
287 |
interpret type_definition Rep Abs S by fact |
87c0eaf04bad
support non-open typedefs; define cr_rel in terms of a rep function for typedefs
kuncar
parents:
47354
diff
changeset
|
288 |
from Rep Abs_inject Rep_inverse Abs_inverse T_def show ?thesis |
87c0eaf04bad
support non-open typedefs; define cr_rel in terms of a rep function for typedefs
kuncar
parents:
47354
diff
changeset
|
289 |
by (auto intro!: QuotientI simp: invariant_def fun_eq_iff) |
87c0eaf04bad
support non-open typedefs; define cr_rel in terms of a rep function for typedefs
kuncar
parents:
47354
diff
changeset
|
290 |
qed |
87c0eaf04bad
support non-open typedefs; define cr_rel in terms of a rep function for typedefs
kuncar
parents:
47354
diff
changeset
|
291 |
|
87c0eaf04bad
support non-open typedefs; define cr_rel in terms of a rep function for typedefs
kuncar
parents:
47354
diff
changeset
|
292 |
lemma typedef_to_part_equivp: |
87c0eaf04bad
support non-open typedefs; define cr_rel in terms of a rep function for typedefs
kuncar
parents:
47354
diff
changeset
|
293 |
assumes "type_definition Rep Abs S" |
47501 | 294 |
shows "part_equivp (invariant (\<lambda>x. x \<in> S))" |
47361
87c0eaf04bad
support non-open typedefs; define cr_rel in terms of a rep function for typedefs
kuncar
parents:
47354
diff
changeset
|
295 |
proof (intro part_equivpI) |
87c0eaf04bad
support non-open typedefs; define cr_rel in terms of a rep function for typedefs
kuncar
parents:
47354
diff
changeset
|
296 |
interpret type_definition Rep Abs S by fact |
47501 | 297 |
show "\<exists>x. invariant (\<lambda>x. x \<in> S) x x" using Rep by (auto simp: invariant_def) |
47361
87c0eaf04bad
support non-open typedefs; define cr_rel in terms of a rep function for typedefs
kuncar
parents:
47354
diff
changeset
|
298 |
next |
47501 | 299 |
show "symp (invariant (\<lambda>x. x \<in> S))" by (auto intro: sympI simp: invariant_def) |
47361
87c0eaf04bad
support non-open typedefs; define cr_rel in terms of a rep function for typedefs
kuncar
parents:
47354
diff
changeset
|
300 |
next |
47501 | 301 |
show "transp (invariant (\<lambda>x. x \<in> S))" by (auto intro: transpI simp: invariant_def) |
47361
87c0eaf04bad
support non-open typedefs; define cr_rel in terms of a rep function for typedefs
kuncar
parents:
47354
diff
changeset
|
302 |
qed |
87c0eaf04bad
support non-open typedefs; define cr_rel in terms of a rep function for typedefs
kuncar
parents:
47354
diff
changeset
|
303 |
|
87c0eaf04bad
support non-open typedefs; define cr_rel in terms of a rep function for typedefs
kuncar
parents:
47354
diff
changeset
|
304 |
lemma open_typedef_to_Quotient: |
47308 | 305 |
assumes "type_definition Rep Abs {x. P x}" |
47354 | 306 |
and T_def: "T \<equiv> (\<lambda>x y. x = Rep y)" |
47308 | 307 |
shows "Quotient (invariant P) Abs Rep T" |
47651 | 308 |
using typedef_to_Quotient [OF assms] by simp |
47308 | 309 |
|
47361
87c0eaf04bad
support non-open typedefs; define cr_rel in terms of a rep function for typedefs
kuncar
parents:
47354
diff
changeset
|
310 |
lemma open_typedef_to_part_equivp: |
47308 | 311 |
assumes "type_definition Rep Abs {x. P x}" |
312 |
shows "part_equivp (invariant P)" |
|
47651 | 313 |
using typedef_to_part_equivp [OF assms] by simp |
47308 | 314 |
|
47376 | 315 |
text {* Generating transfer rules for quotients. *} |
316 |
||
47537 | 317 |
context |
318 |
fixes R Abs Rep T |
|
319 |
assumes 1: "Quotient R Abs Rep T" |
|
320 |
begin |
|
47376 | 321 |
|
47537 | 322 |
lemma Quotient_right_unique: "right_unique T" |
323 |
using 1 unfolding Quotient_alt_def right_unique_def by metis |
|
324 |
||
325 |
lemma Quotient_right_total: "right_total T" |
|
326 |
using 1 unfolding Quotient_alt_def right_total_def by metis |
|
327 |
||
328 |
lemma Quotient_rel_eq_transfer: "(T ===> T ===> op =) R (op =)" |
|
329 |
using 1 unfolding Quotient_alt_def fun_rel_def by simp |
|
47376 | 330 |
|
47538 | 331 |
lemma Quotient_abs_induct: |
332 |
assumes "\<And>y. R y y \<Longrightarrow> P (Abs y)" shows "P x" |
|
333 |
using 1 assms unfolding Quotient_def by metis |
|
334 |
||
47537 | 335 |
end |
336 |
||
337 |
text {* Generating transfer rules for total quotients. *} |
|
47376 | 338 |
|
47537 | 339 |
context |
340 |
fixes R Abs Rep T |
|
341 |
assumes 1: "Quotient R Abs Rep T" and 2: "reflp R" |
|
342 |
begin |
|
47376 | 343 |
|
47537 | 344 |
lemma Quotient_bi_total: "bi_total T" |
345 |
using 1 2 unfolding Quotient_alt_def bi_total_def reflp_def by auto |
|
346 |
||
347 |
lemma Quotient_id_abs_transfer: "(op = ===> T) (\<lambda>x. x) Abs" |
|
348 |
using 1 2 unfolding Quotient_alt_def reflp_def fun_rel_def by simp |
|
349 |
||
47575 | 350 |
lemma Quotient_total_abs_induct: "(\<And>y. P (Abs y)) \<Longrightarrow> P x" |
351 |
using 1 2 assms unfolding Quotient_alt_def reflp_def by metis |
|
352 |
||
47889
29212a4bb866
lifting package produces abs_eq_iff rules for total quotients
huffman
parents:
47777
diff
changeset
|
353 |
lemma Quotient_total_abs_eq_iff: "Abs x = Abs y \<longleftrightarrow> R x y" |
29212a4bb866
lifting package produces abs_eq_iff rules for total quotients
huffman
parents:
47777
diff
changeset
|
354 |
using Quotient_rel [OF 1] 2 unfolding reflp_def by simp |
29212a4bb866
lifting package produces abs_eq_iff rules for total quotients
huffman
parents:
47777
diff
changeset
|
355 |
|
47537 | 356 |
end |
47376 | 357 |
|
47368
4c522dff1f4d
add lemmas for generating transfer rules for typedefs
huffman
parents:
47354
diff
changeset
|
358 |
text {* Generating transfer rules for a type defined with @{text "typedef"}. *} |
4c522dff1f4d
add lemmas for generating transfer rules for typedefs
huffman
parents:
47354
diff
changeset
|
359 |
|
47534
06cc372a80ed
use context block to organize typedef lifting theorems
huffman
parents:
47521
diff
changeset
|
360 |
context |
06cc372a80ed
use context block to organize typedef lifting theorems
huffman
parents:
47521
diff
changeset
|
361 |
fixes Rep Abs A T |
47368
4c522dff1f4d
add lemmas for generating transfer rules for typedefs
huffman
parents:
47354
diff
changeset
|
362 |
assumes type: "type_definition Rep Abs A" |
47534
06cc372a80ed
use context block to organize typedef lifting theorems
huffman
parents:
47521
diff
changeset
|
363 |
assumes T_def: "T \<equiv> (\<lambda>(x::'a) (y::'b). x = Rep y)" |
06cc372a80ed
use context block to organize typedef lifting theorems
huffman
parents:
47521
diff
changeset
|
364 |
begin |
06cc372a80ed
use context block to organize typedef lifting theorems
huffman
parents:
47521
diff
changeset
|
365 |
|
51994 | 366 |
lemma typedef_left_unique: "left_unique T" |
367 |
unfolding left_unique_def T_def |
|
368 |
by (simp add: type_definition.Rep_inject [OF type]) |
|
369 |
||
47534
06cc372a80ed
use context block to organize typedef lifting theorems
huffman
parents:
47521
diff
changeset
|
370 |
lemma typedef_bi_unique: "bi_unique T" |
47368
4c522dff1f4d
add lemmas for generating transfer rules for typedefs
huffman
parents:
47354
diff
changeset
|
371 |
unfolding bi_unique_def T_def |
4c522dff1f4d
add lemmas for generating transfer rules for typedefs
huffman
parents:
47354
diff
changeset
|
372 |
by (simp add: type_definition.Rep_inject [OF type]) |
4c522dff1f4d
add lemmas for generating transfer rules for typedefs
huffman
parents:
47354
diff
changeset
|
373 |
|
51374
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
374 |
(* the following two theorems are here only for convinience *) |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
375 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
376 |
lemma typedef_right_unique: "right_unique T" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
377 |
using T_def type Quotient_right_unique typedef_to_Quotient |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
378 |
by blast |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
379 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
380 |
lemma typedef_right_total: "right_total T" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
381 |
using T_def type Quotient_right_total typedef_to_Quotient |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
382 |
by blast |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
383 |
|
47535
0f94b02fda1c
lifting_setup generates transfer rule for rep of typedefs
huffman
parents:
47534
diff
changeset
|
384 |
lemma typedef_rep_transfer: "(T ===> op =) (\<lambda>x. x) Rep" |
0f94b02fda1c
lifting_setup generates transfer rule for rep of typedefs
huffman
parents:
47534
diff
changeset
|
385 |
unfolding fun_rel_def T_def by simp |
0f94b02fda1c
lifting_setup generates transfer rule for rep of typedefs
huffman
parents:
47534
diff
changeset
|
386 |
|
47534
06cc372a80ed
use context block to organize typedef lifting theorems
huffman
parents:
47521
diff
changeset
|
387 |
end |
06cc372a80ed
use context block to organize typedef lifting theorems
huffman
parents:
47521
diff
changeset
|
388 |
|
47368
4c522dff1f4d
add lemmas for generating transfer rules for typedefs
huffman
parents:
47354
diff
changeset
|
389 |
text {* Generating the correspondence rule for a constant defined with |
4c522dff1f4d
add lemmas for generating transfer rules for typedefs
huffman
parents:
47354
diff
changeset
|
390 |
@{text "lift_definition"}. *} |
4c522dff1f4d
add lemmas for generating transfer rules for typedefs
huffman
parents:
47354
diff
changeset
|
391 |
|
47351 | 392 |
lemma Quotient_to_transfer: |
393 |
assumes "Quotient R Abs Rep T" and "R c c" and "c' \<equiv> Abs c" |
|
394 |
shows "T c c'" |
|
395 |
using assms by (auto dest: Quotient_cr_rel) |
|
396 |
||
47982
7aa35601ff65
prove reflexivity also for the quotient composition relation; reflp_preserve renamed to reflexivity_rule
kuncar
parents:
47937
diff
changeset
|
397 |
text {* Proving reflexivity *} |
7aa35601ff65
prove reflexivity also for the quotient composition relation; reflp_preserve renamed to reflexivity_rule
kuncar
parents:
47937
diff
changeset
|
398 |
|
51994 | 399 |
definition reflp' :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool" where "reflp' R \<equiv> reflp R" |
47982
7aa35601ff65
prove reflexivity also for the quotient composition relation; reflp_preserve renamed to reflexivity_rule
kuncar
parents:
47937
diff
changeset
|
400 |
|
7aa35601ff65
prove reflexivity also for the quotient composition relation; reflp_preserve renamed to reflexivity_rule
kuncar
parents:
47937
diff
changeset
|
401 |
lemma Quotient_to_left_total: |
7aa35601ff65
prove reflexivity also for the quotient composition relation; reflp_preserve renamed to reflexivity_rule
kuncar
parents:
47937
diff
changeset
|
402 |
assumes q: "Quotient R Abs Rep T" |
7aa35601ff65
prove reflexivity also for the quotient composition relation; reflp_preserve renamed to reflexivity_rule
kuncar
parents:
47937
diff
changeset
|
403 |
and r_R: "reflp R" |
7aa35601ff65
prove reflexivity also for the quotient composition relation; reflp_preserve renamed to reflexivity_rule
kuncar
parents:
47937
diff
changeset
|
404 |
shows "left_total T" |
7aa35601ff65
prove reflexivity also for the quotient composition relation; reflp_preserve renamed to reflexivity_rule
kuncar
parents:
47937
diff
changeset
|
405 |
using r_R Quotient_cr_rel[OF q] unfolding left_total_def by (auto elim: reflpE) |
7aa35601ff65
prove reflexivity also for the quotient composition relation; reflp_preserve renamed to reflexivity_rule
kuncar
parents:
47937
diff
changeset
|
406 |
|
7aa35601ff65
prove reflexivity also for the quotient composition relation; reflp_preserve renamed to reflexivity_rule
kuncar
parents:
47937
diff
changeset
|
407 |
lemma reflp_Quotient_composition: |
51994 | 408 |
assumes "left_total R" |
409 |
assumes "reflp T" |
|
410 |
shows "reflp (R OO T OO R\<inverse>\<inverse>)" |
|
411 |
using assms unfolding reflp_def left_total_def by fast |
|
412 |
||
413 |
lemma reflp_fun1: |
|
414 |
assumes "is_equality R" |
|
415 |
assumes "reflp' S" |
|
416 |
shows "reflp (R ===> S)" |
|
417 |
using assms unfolding is_equality_def reflp'_def reflp_def fun_rel_def by blast |
|
418 |
||
419 |
lemma reflp_fun2: |
|
420 |
assumes "is_equality R" |
|
421 |
assumes "is_equality S" |
|
422 |
shows "reflp (R ===> S)" |
|
423 |
using assms unfolding is_equality_def reflp_def fun_rel_def by blast |
|
424 |
||
425 |
lemma is_equality_Quotient_composition: |
|
426 |
assumes "is_equality T" |
|
427 |
assumes "left_total R" |
|
428 |
assumes "left_unique R" |
|
429 |
shows "is_equality (R OO T OO R\<inverse>\<inverse>)" |
|
430 |
using assms unfolding is_equality_def left_total_def left_unique_def OO_def conversep_iff |
|
431 |
by fastforce |
|
47982
7aa35601ff65
prove reflexivity also for the quotient composition relation; reflp_preserve renamed to reflexivity_rule
kuncar
parents:
47937
diff
changeset
|
432 |
|
52307 | 433 |
lemma left_total_composition: "left_total R \<Longrightarrow> left_total S \<Longrightarrow> left_total (R OO S)" |
434 |
unfolding left_total_def OO_def by fast |
|
435 |
||
436 |
lemma left_unique_composition: "left_unique R \<Longrightarrow> left_unique S \<Longrightarrow> left_unique (R OO S)" |
|
437 |
unfolding left_unique_def OO_def by fast |
|
438 |
||
47982
7aa35601ff65
prove reflexivity also for the quotient composition relation; reflp_preserve renamed to reflexivity_rule
kuncar
parents:
47937
diff
changeset
|
439 |
lemma reflp_equality: "reflp (op =)" |
7aa35601ff65
prove reflexivity also for the quotient composition relation; reflp_preserve renamed to reflexivity_rule
kuncar
parents:
47937
diff
changeset
|
440 |
by (auto intro: reflpI) |
7aa35601ff65
prove reflexivity also for the quotient composition relation; reflp_preserve renamed to reflexivity_rule
kuncar
parents:
47937
diff
changeset
|
441 |
|
51374
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
442 |
text {* Proving a parametrized correspondence relation *} |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
443 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
444 |
lemma eq_OO: "op= OO R = R" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
445 |
unfolding OO_def by metis |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
446 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
447 |
definition POS :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> ('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> bool" where |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
448 |
"POS A B \<equiv> A \<le> B" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
449 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
450 |
definition NEG :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> ('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> bool" where |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
451 |
"NEG A B \<equiv> B \<le> A" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
452 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
453 |
(* |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
454 |
The following two rules are here because we don't have any proper |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
455 |
left-unique ant left-total relations. Left-unique and left-total |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
456 |
assumptions show up in distributivity rules for the function type. |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
457 |
*) |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
458 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
459 |
lemma bi_unique_left_unique[transfer_rule]: "bi_unique R \<Longrightarrow> left_unique R" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
460 |
unfolding bi_unique_def left_unique_def by blast |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
461 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
462 |
lemma bi_total_left_total[transfer_rule]: "bi_total R \<Longrightarrow> left_total R" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
463 |
unfolding bi_total_def left_total_def by blast |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
464 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
465 |
lemma pos_OO_eq: |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
466 |
shows "POS (A OO op=) A" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
467 |
unfolding POS_def OO_def by blast |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
468 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
469 |
lemma pos_eq_OO: |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
470 |
shows "POS (op= OO A) A" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
471 |
unfolding POS_def OO_def by blast |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
472 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
473 |
lemma neg_OO_eq: |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
474 |
shows "NEG (A OO op=) A" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
475 |
unfolding NEG_def OO_def by auto |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
476 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
477 |
lemma neg_eq_OO: |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
478 |
shows "NEG (op= OO A) A" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
479 |
unfolding NEG_def OO_def by blast |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
480 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
481 |
lemma POS_trans: |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
482 |
assumes "POS A B" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
483 |
assumes "POS B C" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
484 |
shows "POS A C" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
485 |
using assms unfolding POS_def by auto |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
486 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
487 |
lemma NEG_trans: |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
488 |
assumes "NEG A B" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
489 |
assumes "NEG B C" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
490 |
shows "NEG A C" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
491 |
using assms unfolding NEG_def by auto |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
492 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
493 |
lemma POS_NEG: |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
494 |
"POS A B \<equiv> NEG B A" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
495 |
unfolding POS_def NEG_def by auto |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
496 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
497 |
lemma NEG_POS: |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
498 |
"NEG A B \<equiv> POS B A" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
499 |
unfolding POS_def NEG_def by auto |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
500 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
501 |
lemma POS_pcr_rule: |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
502 |
assumes "POS (A OO B) C" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
503 |
shows "POS (A OO B OO X) (C OO X)" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
504 |
using assms unfolding POS_def OO_def by blast |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
505 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
506 |
lemma NEG_pcr_rule: |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
507 |
assumes "NEG (A OO B) C" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
508 |
shows "NEG (A OO B OO X) (C OO X)" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
509 |
using assms unfolding NEG_def OO_def by blast |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
510 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
511 |
lemma POS_apply: |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
512 |
assumes "POS R R'" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
513 |
assumes "R f g" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
514 |
shows "R' f g" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
515 |
using assms unfolding POS_def by auto |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
516 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
517 |
text {* Proving a parametrized correspondence relation *} |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
518 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
519 |
lemma fun_mono: |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
520 |
assumes "A \<ge> C" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
521 |
assumes "B \<le> D" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
522 |
shows "(A ===> B) \<le> (C ===> D)" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
523 |
using assms unfolding fun_rel_def by blast |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
524 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
525 |
lemma pos_fun_distr: "((R ===> S) OO (R' ===> S')) \<le> ((R OO R') ===> (S OO S'))" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
526 |
unfolding OO_def fun_rel_def by blast |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
527 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
528 |
lemma functional_relation: "right_unique R \<Longrightarrow> left_total R \<Longrightarrow> \<forall>x. \<exists>!y. R x y" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
529 |
unfolding right_unique_def left_total_def by blast |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
530 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
531 |
lemma functional_converse_relation: "left_unique R \<Longrightarrow> right_total R \<Longrightarrow> \<forall>y. \<exists>!x. R x y" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
532 |
unfolding left_unique_def right_total_def by blast |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
533 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
534 |
lemma neg_fun_distr1: |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
535 |
assumes 1: "left_unique R" "right_total R" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
536 |
assumes 2: "right_unique R'" "left_total R'" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
537 |
shows "(R OO R' ===> S OO S') \<le> ((R ===> S) OO (R' ===> S')) " |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
538 |
using functional_relation[OF 2] functional_converse_relation[OF 1] |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
539 |
unfolding fun_rel_def OO_def |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
540 |
apply clarify |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
541 |
apply (subst all_comm) |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
542 |
apply (subst all_conj_distrib[symmetric]) |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
543 |
apply (intro choice) |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
544 |
by metis |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
545 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
546 |
lemma neg_fun_distr2: |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
547 |
assumes 1: "right_unique R'" "left_total R'" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
548 |
assumes 2: "left_unique S'" "right_total S'" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
549 |
shows "(R OO R' ===> S OO S') \<le> ((R ===> S) OO (R' ===> S'))" |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
550 |
using functional_converse_relation[OF 2] functional_relation[OF 1] |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
551 |
unfolding fun_rel_def OO_def |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
552 |
apply clarify |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
553 |
apply (subst all_comm) |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
554 |
apply (subst all_conj_distrib[symmetric]) |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
555 |
apply (intro choice) |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
556 |
by metis |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
557 |
|
51956
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
558 |
subsection {* Domains *} |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
559 |
|
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
560 |
lemma pcr_Domainp_par_left_total: |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
561 |
assumes "Domainp B = P" |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
562 |
assumes "left_total A" |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
563 |
assumes "(A ===> op=) P' P" |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
564 |
shows "Domainp (A OO B) = P'" |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
565 |
using assms |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
566 |
unfolding Domainp_iff[abs_def] OO_def bi_unique_def left_total_def fun_rel_def |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
567 |
by (fast intro: fun_eq_iff) |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
568 |
|
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
569 |
lemma pcr_Domainp_par: |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
570 |
assumes "Domainp B = P2" |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
571 |
assumes "Domainp A = P1" |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
572 |
assumes "(A ===> op=) P2' P2" |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
573 |
shows "Domainp (A OO B) = (inf P1 P2')" |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
574 |
using assms unfolding fun_rel_def Domainp_iff[abs_def] OO_def |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
575 |
by (fast intro: fun_eq_iff) |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
576 |
|
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
577 |
definition rel_pred_comp :: "('a => 'b => bool) => ('b => bool) => 'a => bool" (infixr "OP" 75) |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
578 |
where "rel_pred_comp R P \<equiv> \<lambda>x. \<exists>y. R x y \<and> P y" |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
579 |
|
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
580 |
lemma pcr_Domainp: |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
581 |
assumes "Domainp B = P" |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
582 |
shows "Domainp (A OO B) = (A OP P)" |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
583 |
using assms unfolding rel_pred_comp_def by blast |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
584 |
|
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
585 |
lemma pcr_Domainp_total: |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
586 |
assumes "bi_total B" |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
587 |
assumes "Domainp A = P" |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
588 |
shows "Domainp (A OO B) = P" |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
589 |
using assms unfolding bi_total_def |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
590 |
by fast |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
591 |
|
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
592 |
lemma Quotient_to_Domainp: |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
593 |
assumes "Quotient R Abs Rep T" |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
594 |
shows "Domainp T = (\<lambda>x. R x x)" |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
595 |
by (simp add: Domainp_iff[abs_def] Quotient_cr_rel[OF assms]) |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
596 |
|
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
597 |
lemma invariant_to_Domainp: |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
598 |
assumes "Quotient (Lifting.invariant P) Abs Rep T" |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
599 |
shows "Domainp T = P" |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
600 |
by (simp add: invariant_def Domainp_iff[abs_def] Quotient_cr_rel[OF assms]) |
a4d81cdebf8b
better support for domains in Lifting/Transfer = replace Domainp T by the actual invariant in a transferred goal
kuncar
parents:
51374
diff
changeset
|
601 |
|
47308 | 602 |
subsection {* ML setup *} |
603 |
||
48891 | 604 |
ML_file "Tools/Lifting/lifting_util.ML" |
47308 | 605 |
|
48891 | 606 |
ML_file "Tools/Lifting/lifting_info.ML" |
47308 | 607 |
setup Lifting_Info.setup |
608 |
||
51994 | 609 |
lemmas [reflexivity_rule] = |
52036
1aa2e40df9ff
reflexivity rules for the function type and equality
kuncar
parents:
51994
diff
changeset
|
610 |
reflp_equality reflp_Quotient_composition is_equality_Quotient_composition |
52307 | 611 |
left_total_fun left_unique_fun left_total_eq left_unique_eq left_total_composition |
612 |
left_unique_composition |
|
51994 | 613 |
|
614 |
text {* add @{thm reflp_fun1} and @{thm reflp_fun2} manually through ML |
|
615 |
because we don't want to get reflp' variant of these theorems *} |
|
616 |
||
617 |
setup{* |
|
618 |
Context.theory_map |
|
619 |
(fold |
|
620 |
(snd oo (Thm.apply_attribute Lifting_Info.add_reflexivity_rule_raw_attribute)) |
|
621 |
[@{thm reflp_fun1}, @{thm reflp_fun2}]) |
|
622 |
*} |
|
51374
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
623 |
|
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
624 |
(* setup for the function type *) |
47777
f29e7dcd7c40
use a quot_map theorem attribute instead of the complicated map attribute
kuncar
parents:
47698
diff
changeset
|
625 |
declare fun_quotient[quot_map] |
51374
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
626 |
declare fun_mono[relator_mono] |
84d01fd733cf
lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents:
51112
diff
changeset
|
627 |
lemmas [relator_distr] = pos_fun_distr neg_fun_distr1 neg_fun_distr2 |
47308 | 628 |
|
48891 | 629 |
ML_file "Tools/Lifting/lifting_term.ML" |
47308 | 630 |
|
48891 | 631 |
ML_file "Tools/Lifting/lifting_def.ML" |
47308 | 632 |
|
48891 | 633 |
ML_file "Tools/Lifting/lifting_setup.ML" |
47308 | 634 |
|
51994 | 635 |
hide_const (open) invariant POS NEG reflp' |
47308 | 636 |
|
637 |
end |