author | Cezary Kaliszyk <kaliszyk@in.tum.de> |
Tue, 08 Dec 2009 11:59:16 +0100 | |
changeset 621 | c10a46fa0de9 |
parent 620 | a98b136fc88a |
child 622 | df7a2f76daae |
permissions | -rw-r--r-- |
597 | 1 |
theory IntEx |
600
5d932e7a856c
List moved after QuotMain
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
597
diff
changeset
|
2 |
imports "../QuotList" |
597 | 3 |
begin |
4 |
||
5 |
fun |
|
6 |
intrel :: "(nat \<times> nat) \<Rightarrow> (nat \<times> nat) \<Rightarrow> bool" (infix "\<approx>" 50) |
|
7 |
where |
|
8 |
"intrel (x, y) (u, v) = (x + v = u + y)" |
|
9 |
||
10 |
quotient my_int = "nat \<times> nat" / intrel |
|
11 |
apply(unfold equivp_def) |
|
12 |
apply(auto simp add: mem_def expand_fun_eq) |
|
13 |
done |
|
14 |
||
15 |
thm quotient_equiv |
|
16 |
||
17 |
thm quotient_thm |
|
18 |
||
19 |
thm my_int_equivp |
|
20 |
||
21 |
print_theorems |
|
22 |
print_quotients |
|
23 |
||
24 |
quotient_def |
|
25 |
ZERO::"my_int" |
|
26 |
where |
|
27 |
"ZERO \<equiv> (0::nat, 0::nat)" |
|
28 |
||
29 |
ML {* print_qconstinfo @{context} *} |
|
30 |
||
31 |
term ZERO |
|
32 |
thm ZERO_def |
|
33 |
||
34 |
ML {* prop_of @{thm ZERO_def} *} |
|
35 |
||
36 |
ML {* separate *} |
|
37 |
||
38 |
quotient_def |
|
39 |
ONE::"my_int" |
|
40 |
where |
|
41 |
"ONE \<equiv> (1::nat, 0::nat)" |
|
42 |
||
43 |
ML {* print_qconstinfo @{context} *} |
|
44 |
||
45 |
term ONE |
|
46 |
thm ONE_def |
|
47 |
||
48 |
fun |
|
49 |
my_plus :: "(nat \<times> nat) \<Rightarrow> (nat \<times> nat) \<Rightarrow> (nat \<times> nat)" |
|
50 |
where |
|
51 |
"my_plus (x, y) (u, v) = (x + u, y + v)" |
|
52 |
||
53 |
quotient_def |
|
54 |
PLUS::"my_int \<Rightarrow> my_int \<Rightarrow> my_int" |
|
55 |
where |
|
56 |
"PLUS \<equiv> my_plus" |
|
57 |
||
58 |
term my_plus |
|
59 |
term PLUS |
|
60 |
thm PLUS_def |
|
61 |
||
62 |
fun |
|
63 |
my_neg :: "(nat \<times> nat) \<Rightarrow> (nat \<times> nat)" |
|
64 |
where |
|
65 |
"my_neg (x, y) = (y, x)" |
|
66 |
||
67 |
quotient_def |
|
68 |
NEG::"my_int \<Rightarrow> my_int" |
|
69 |
where |
|
70 |
"NEG \<equiv> my_neg" |
|
71 |
||
72 |
term NEG |
|
73 |
thm NEG_def |
|
74 |
||
75 |
definition |
|
76 |
MINUS :: "my_int \<Rightarrow> my_int \<Rightarrow> my_int" |
|
77 |
where |
|
78 |
"MINUS z w = PLUS z (NEG w)" |
|
79 |
||
80 |
fun |
|
81 |
my_mult :: "(nat \<times> nat) \<Rightarrow> (nat \<times> nat) \<Rightarrow> (nat \<times> nat)" |
|
82 |
where |
|
83 |
"my_mult (x, y) (u, v) = (x*u + y*v, x*v + y*u)" |
|
84 |
||
85 |
quotient_def |
|
86 |
MULT::"my_int \<Rightarrow> my_int \<Rightarrow> my_int" |
|
87 |
where |
|
88 |
"MULT \<equiv> my_mult" |
|
89 |
||
90 |
term MULT |
|
91 |
thm MULT_def |
|
92 |
||
93 |
(* NOT SURE WETHER THIS DEFINITION IS CORRECT *) |
|
94 |
fun |
|
95 |
my_le :: "(nat \<times> nat) \<Rightarrow> (nat \<times> nat) \<Rightarrow> bool" |
|
96 |
where |
|
97 |
"my_le (x, y) (u, v) = (x+v \<le> u+y)" |
|
98 |
||
99 |
quotient_def |
|
100 |
LE :: "my_int \<Rightarrow> my_int \<Rightarrow> bool" |
|
101 |
where |
|
102 |
"LE \<equiv> my_le" |
|
103 |
||
104 |
term LE |
|
105 |
thm LE_def |
|
106 |
||
107 |
||
108 |
definition |
|
109 |
LESS :: "my_int \<Rightarrow> my_int \<Rightarrow> bool" |
|
110 |
where |
|
111 |
"LESS z w = (LE z w \<and> z \<noteq> w)" |
|
112 |
||
113 |
term LESS |
|
114 |
thm LESS_def |
|
115 |
||
116 |
definition |
|
117 |
ABS :: "my_int \<Rightarrow> my_int" |
|
118 |
where |
|
119 |
"ABS i = (if (LESS i ZERO) then (NEG i) else i)" |
|
120 |
||
121 |
definition |
|
122 |
SIGN :: "my_int \<Rightarrow> my_int" |
|
123 |
where |
|
124 |
"SIGN i = (if i = ZERO then ZERO else if (LESS ZERO i) then ONE else (NEG ONE))" |
|
125 |
||
126 |
ML {* print_qconstinfo @{context} *} |
|
127 |
||
128 |
lemma plus_sym_pre: |
|
129 |
shows "my_plus a b \<approx> my_plus b a" |
|
130 |
apply(cases a) |
|
131 |
apply(cases b) |
|
132 |
apply(auto) |
|
133 |
done |
|
134 |
||
135 |
lemma plus_rsp[quotient_rsp]: |
|
136 |
shows "(intrel ===> intrel ===> intrel) my_plus my_plus" |
|
137 |
by (simp) |
|
138 |
||
139 |
lemma test1: "my_plus a b = my_plus a b" |
|
140 |
apply(rule refl) |
|
141 |
done |
|
142 |
||
143 |
lemma "PLUS a b = PLUS a b" |
|
144 |
apply(tactic {* procedure_tac @{context} @{thm test1} 1 *}) |
|
145 |
apply(tactic {* regularize_tac @{context} 1 *}) |
|
610
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
parents:
606
diff
changeset
|
146 |
apply(tactic {* all_inj_repabs_tac @{context} 1*}) |
597 | 147 |
apply(tactic {* clean_tac @{context} 1 *}) |
148 |
done |
|
149 |
||
150 |
thm lambda_prs |
|
151 |
||
152 |
lemma test2: "my_plus a = my_plus a" |
|
153 |
apply(rule refl) |
|
154 |
done |
|
155 |
||
156 |
lemma "PLUS a = PLUS a" |
|
157 |
apply(tactic {* procedure_tac @{context} @{thm test2} 1 *}) |
|
606
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
158 |
apply(rule impI) |
597 | 159 |
apply(rule ballI) |
160 |
apply(rule apply_rsp[OF Quotient_my_int plus_rsp]) |
|
161 |
apply(simp only: in_respects) |
|
610
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
parents:
606
diff
changeset
|
162 |
apply(tactic {* all_inj_repabs_tac @{context} 1*}) |
597 | 163 |
apply(tactic {* clean_tac @{context} 1 *}) |
164 |
done |
|
165 |
||
166 |
lemma test3: "my_plus = my_plus" |
|
167 |
apply(rule refl) |
|
168 |
done |
|
169 |
||
170 |
lemma "PLUS = PLUS" |
|
171 |
apply(tactic {* procedure_tac @{context} @{thm test3} 1 *}) |
|
606
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
172 |
apply(rule impI) |
597 | 173 |
apply(rule plus_rsp) |
610
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
parents:
606
diff
changeset
|
174 |
apply(tactic {* all_inj_repabs_tac @{context} 1*}) |
597 | 175 |
apply(tactic {* clean_tac @{context} 1 *}) |
176 |
done |
|
177 |
||
178 |
||
179 |
lemma "PLUS a b = PLUS b a" |
|
180 |
apply(tactic {* procedure_tac @{context} @{thm plus_sym_pre} 1 *}) |
|
181 |
apply(tactic {* regularize_tac @{context} 1 *}) |
|
610
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
parents:
606
diff
changeset
|
182 |
apply(tactic {* all_inj_repabs_tac @{context} 1*}) |
597 | 183 |
apply(tactic {* clean_tac @{context} 1 *}) |
184 |
done |
|
185 |
||
186 |
lemma plus_assoc_pre: |
|
187 |
shows "my_plus (my_plus i j) k \<approx> my_plus i (my_plus j k)" |
|
188 |
apply (cases i) |
|
189 |
apply (cases j) |
|
190 |
apply (cases k) |
|
191 |
apply (simp) |
|
192 |
done |
|
193 |
||
194 |
lemma plus_assoc: "PLUS (PLUS x xa) xb = PLUS x (PLUS xa xb)" |
|
195 |
apply(tactic {* procedure_tac @{context} @{thm plus_assoc_pre} 1 *}) |
|
196 |
apply(tactic {* regularize_tac @{context} 1 *}) |
|
610
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
parents:
606
diff
changeset
|
197 |
apply(tactic {* all_inj_repabs_tac @{context} 1*}) |
597 | 198 |
apply(tactic {* clean_tac @{context} 1 *}) |
199 |
done |
|
200 |
||
201 |
lemma ho_tst: "foldl my_plus x [] = x" |
|
202 |
apply simp |
|
203 |
done |
|
204 |
||
205 |
lemma "foldl PLUS x [] = x" |
|
206 |
apply(tactic {* procedure_tac @{context} @{thm ho_tst} 1 *}) |
|
207 |
apply(tactic {* regularize_tac @{context} 1 *}) |
|
610
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
parents:
606
diff
changeset
|
208 |
apply(tactic {* all_inj_repabs_tac @{context} 1*}) |
597 | 209 |
apply(tactic {* clean_tac @{context} 1 *}) |
210 |
apply(simp only: foldl_prs[OF Quotient_my_int Quotient_my_int] nil_prs[OF Quotient_my_int]) |
|
211 |
done |
|
212 |
||
213 |
lemma ho_tst2: "foldl my_plus x (h # t) \<approx> my_plus h (foldl my_plus x t)" |
|
214 |
sorry |
|
215 |
||
216 |
lemma "foldl PLUS x (h # t) = PLUS h (foldl PLUS x t)" |
|
217 |
apply(tactic {* procedure_tac @{context} @{thm ho_tst2} 1 *}) |
|
218 |
apply(tactic {* regularize_tac @{context} 1 *}) |
|
610
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
parents:
606
diff
changeset
|
219 |
apply(tactic {* all_inj_repabs_tac @{context} 1*}) |
597 | 220 |
apply(tactic {* clean_tac @{context} 1 *}) |
221 |
apply(simp only: foldl_prs[OF Quotient_my_int Quotient_my_int] cons_prs[OF Quotient_my_int]) |
|
222 |
done |
|
223 |
||
224 |
lemma ho_tst3: "foldl f (s::nat \<times> nat) ([]::(nat \<times> nat) list) = s" |
|
225 |
by simp |
|
226 |
||
227 |
lemma "foldl f (x::my_int) ([]::my_int list) = x" |
|
228 |
apply(tactic {* procedure_tac @{context} @{thm ho_tst3} 1 *}) |
|
229 |
apply(tactic {* regularize_tac @{context} 1 *}) |
|
610
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
parents:
606
diff
changeset
|
230 |
apply(tactic {* all_inj_repabs_tac @{context} 1*}) |
597 | 231 |
(* TODO: does not work when this is added *) |
232 |
(* apply(tactic {* lambda_prs_tac @{context} 1 *})*) |
|
233 |
apply(tactic {* clean_tac @{context} 1 *}) |
|
234 |
apply(simp only: foldl_prs[OF Quotient_my_int Quotient_my_int] nil_prs[OF Quotient_my_int]) |
|
235 |
done |
|
236 |
||
237 |
lemma lam_tst: "(\<lambda>x. (x, x)) y = (y, (y :: nat \<times> nat))" |
|
238 |
by simp |
|
239 |
||
240 |
lemma "(\<lambda>x. (x, x)) (y::my_int) = (y, y)" |
|
241 |
apply(tactic {* procedure_tac @{context} @{thm lam_tst} 1 *}) |
|
242 |
apply(tactic {* regularize_tac @{context} 1 *}) |
|
610
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
parents:
606
diff
changeset
|
243 |
apply(tactic {* all_inj_repabs_tac @{context} 1*}) |
597 | 244 |
apply(tactic {* clean_tac @{context} 1 *}) |
245 |
apply(simp add: pair_prs) |
|
246 |
done |
|
247 |
||
248 |
lemma lam_tst2: "(\<lambda>(y :: nat \<times> nat). y) = (\<lambda>(x :: nat \<times> nat). x)" |
|
249 |
by simp |
|
250 |
||
605
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
251 |
(* test about lifting identity equations *) |
597 | 252 |
|
605
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
253 |
ML {* |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
254 |
(* helper code from QuotMain *) |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
255 |
val pat_ball = @{term "Ball (Respects (R1 ===> R2)) P"} |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
256 |
val pat_bex = @{term "Bex (Respects (R1 ===> R2)) P"} |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
257 |
val simproc = Simplifier.simproc_i @{theory} "" [pat_ball, pat_bex] (K (ball_bex_range_simproc)) |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
258 |
val simpset = (mk_minimal_ss @{context}) |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
259 |
addsimps @{thms ball_reg_eqv bex_reg_eqv babs_reg_eqv} |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
260 |
addsimprocs [simproc] addSolver equiv_solver |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
261 |
*} |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
262 |
|
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
263 |
(* What regularising does *) |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
264 |
(*========================*) |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
265 |
|
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
266 |
(* 0. preliminary simplification step *) |
606
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
267 |
thm ball_reg_eqv bex_reg_eqv (* of no use: babs_reg_eqv *) |
605
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
268 |
ball_reg_eqv_range bex_reg_eqv_range |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
269 |
(* 1. first two rtacs *) |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
270 |
thm ball_reg_right bex_reg_left |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
271 |
(* 2. monos *) |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
272 |
(* 3. commutation rules *) |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
273 |
thm ball_all_comm bex_ex_comm |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
274 |
(* 4. then rel-equality *) |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
275 |
thm eq_imp_rel |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
276 |
(* 5. then simplification like 0 *) |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
277 |
(* finally jump to 1 *) |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
278 |
|
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
279 |
|
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
280 |
(* What cleaning does *) |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
281 |
(*====================*) |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
282 |
|
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
283 |
(* 1. conversion *) |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
284 |
thm lambda_prs |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
285 |
(* 2. simplification with *) |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
286 |
thm all_prs ex_prs |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
287 |
(* 3. Simplification with *) |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
288 |
thm fun_map.simps id_simps Quotient_abs_rep Quotient_rel_rep |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
289 |
(* 4. Test for refl *) |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
290 |
|
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
291 |
lemma |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
292 |
shows "equivp (op \<approx>)" |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
293 |
and "equivp ((op \<approx>) ===> (op \<approx>))" |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
294 |
apply - |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
295 |
apply(tactic {* equiv_tac @{context} 1 *}) |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
296 |
apply(tactic {* equiv_tac @{context} 1 *})? |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
297 |
oops |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
298 |
|
606
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
299 |
lemma lam_tst3a: "(\<lambda>(y :: nat \<times> nat). y) = (\<lambda>(x :: nat \<times> nat). x)" |
597 | 300 |
by auto |
301 |
||
620 | 302 |
lemma id_rsp: |
303 |
shows "(R ===> R) id id" |
|
304 |
by simp |
|
305 |
||
306 |
lemma lam_tst3a_reg: "(op \<approx> ===> op \<approx>) (Babs (Respects op \<approx>) (\<lambda>y. y)) (Babs (Respects op \<approx>) (\<lambda>x. x))" |
|
307 |
apply (rule babs_rsp[OF Quotient_my_int]) |
|
308 |
apply (simp add: id_rsp) |
|
309 |
done |
|
310 |
||
606
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
311 |
lemma "(\<lambda>(y :: my_int). y) = (\<lambda>(x :: my_int). x)" |
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
312 |
apply(tactic {* procedure_tac @{context} @{thm lam_tst3a} 1 *}) |
621
c10a46fa0de9
Added a 'rep_abs' in inj_repabs_trm of babs; and proved two lam examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
620
diff
changeset
|
313 |
apply(rule impI) |
c10a46fa0de9
Added a 'rep_abs' in inj_repabs_trm of babs; and proved two lam examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
620
diff
changeset
|
314 |
apply(rule lam_tst3a_reg) |
610
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
parents:
606
diff
changeset
|
315 |
apply(tactic {* all_inj_repabs_tac @{context} 1*}) |
602
e56eeb9fedb3
make_inst for lambda_prs where the second quotient is not identity.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
600
diff
changeset
|
316 |
apply(tactic {* clean_tac @{context} 1 *}) |
621
c10a46fa0de9
Added a 'rep_abs' in inj_repabs_trm of babs; and proved two lam examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
620
diff
changeset
|
317 |
apply(simp add: babs_prs[OF Quotient_my_int Quotient_my_int]) |
c10a46fa0de9
Added a 'rep_abs' in inj_repabs_trm of babs; and proved two lam examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
620
diff
changeset
|
318 |
done |
606
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
319 |
|
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
320 |
lemma lam_tst3b: "(\<lambda>(y :: nat \<times> nat \<Rightarrow> nat \<times> nat). y) = (\<lambda>(x :: nat \<times> nat \<Rightarrow> nat \<times> nat). x)" |
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
321 |
by auto |
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
322 |
|
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
323 |
lemma "(\<lambda>(y :: my_int => my_int). y) = (\<lambda>(x :: my_int => my_int). x)" |
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
324 |
apply(tactic {* procedure_tac @{context} @{thm lam_tst3b} 1 *}) |
621
c10a46fa0de9
Added a 'rep_abs' in inj_repabs_trm of babs; and proved two lam examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
620
diff
changeset
|
325 |
apply(rule impI) |
c10a46fa0de9
Added a 'rep_abs' in inj_repabs_trm of babs; and proved two lam examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
620
diff
changeset
|
326 |
apply (rule babs_rsp[OF fun_quotient[OF Quotient_my_int Quotient_my_int]]) |
c10a46fa0de9
Added a 'rep_abs' in inj_repabs_trm of babs; and proved two lam examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
620
diff
changeset
|
327 |
apply (simp add: id_rsp) |
610
2bee5ca44ef5
removed "global" data and lookup functions; had to move a tactic out from the inj_repabs_match tactic since apply_rsp interferes with a trans2 rule for ===>
Christian Urban <urbanc@in.tum.de>
parents:
606
diff
changeset
|
328 |
apply(tactic {* all_inj_repabs_tac @{context} 1*}) |
606
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
329 |
apply(tactic {* clean_tac @{context} 1 *}) |
621
c10a46fa0de9
Added a 'rep_abs' in inj_repabs_trm of babs; and proved two lam examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
620
diff
changeset
|
330 |
apply(subst babs_prs) |
c10a46fa0de9
Added a 'rep_abs' in inj_repabs_trm of babs; and proved two lam examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
620
diff
changeset
|
331 |
apply(tactic {* quotient_tac @{context} 1 *}) |
c10a46fa0de9
Added a 'rep_abs' in inj_repabs_trm of babs; and proved two lam examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
620
diff
changeset
|
332 |
apply(tactic {* quotient_tac @{context} 1 *}) |
c10a46fa0de9
Added a 'rep_abs' in inj_repabs_trm of babs; and proved two lam examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
620
diff
changeset
|
333 |
apply(subst babs_prs) |
c10a46fa0de9
Added a 'rep_abs' in inj_repabs_trm of babs; and proved two lam examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
620
diff
changeset
|
334 |
apply(tactic {* quotient_tac @{context} 1 *}) |
c10a46fa0de9
Added a 'rep_abs' in inj_repabs_trm of babs; and proved two lam examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
620
diff
changeset
|
335 |
apply(tactic {* quotient_tac @{context} 1 *}) |
c10a46fa0de9
Added a 'rep_abs' in inj_repabs_trm of babs; and proved two lam examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
620
diff
changeset
|
336 |
apply(rule refl) |
c10a46fa0de9
Added a 'rep_abs' in inj_repabs_trm of babs; and proved two lam examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
620
diff
changeset
|
337 |
done |
601
81f40b8bde7b
added "end" to each example theory
Christian Urban <urbanc@in.tum.de>
parents:
600
diff
changeset
|
338 |
|
617
ca37f4b6457c
An example of working cleaning for lambda lifting. Still not sure why Babs helps.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
606
diff
changeset
|
339 |
end |