author | Cezary Kaliszyk <kaliszyk@in.tum.de> |
Wed, 09 Dec 2009 15:59:02 +0100 | |
changeset 664 | 546ba31fbb83 |
parent 663 | 0dd10a900cae |
child 692 | c9231c2903bc |
permissions | -rw-r--r-- |
597 | 1 |
theory IntEx |
663
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
656
diff
changeset
|
2 |
imports "../QuotProd" "../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 |
||
636
520a4084d064
changed names of attributes
Christian Urban <urbanc@in.tum.de>
parents:
632
diff
changeset
|
15 |
thm quot_equiv |
597 | 16 |
|
636
520a4084d064
changed names of attributes
Christian Urban <urbanc@in.tum.de>
parents:
632
diff
changeset
|
17 |
thm quot_thm |
597 | 18 |
|
19 |
thm my_int_equivp |
|
20 |
||
21 |
print_theorems |
|
22 |
print_quotients |
|
23 |
||
663
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
656
diff
changeset
|
24 |
quotient_def |
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
656
diff
changeset
|
25 |
ZERO::"zero :: my_int" |
597 | 26 |
where |
663
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
656
diff
changeset
|
27 |
"(0::nat, 0::nat)" |
597 | 28 |
|
663
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
656
diff
changeset
|
29 |
quotient_def |
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
656
diff
changeset
|
30 |
ONE::"one :: my_int" |
597 | 31 |
where |
663
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
656
diff
changeset
|
32 |
"(1::nat, 0::nat)" |
597 | 33 |
|
34 |
fun |
|
35 |
my_plus :: "(nat \<times> nat) \<Rightarrow> (nat \<times> nat) \<Rightarrow> (nat \<times> nat)" |
|
36 |
where |
|
37 |
"my_plus (x, y) (u, v) = (x + u, y + v)" |
|
38 |
||
663
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
656
diff
changeset
|
39 |
quotient_def |
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
656
diff
changeset
|
40 |
PLUS::"PLUS :: my_int \<Rightarrow> my_int \<Rightarrow> my_int" |
597 | 41 |
where |
663
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
656
diff
changeset
|
42 |
"my_plus" |
597 | 43 |
|
44 |
fun |
|
45 |
my_neg :: "(nat \<times> nat) \<Rightarrow> (nat \<times> nat)" |
|
46 |
where |
|
47 |
"my_neg (x, y) = (y, x)" |
|
48 |
||
663
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
656
diff
changeset
|
49 |
quotient_def |
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
656
diff
changeset
|
50 |
NEG::"NEG :: my_int \<Rightarrow> my_int" |
597 | 51 |
where |
663
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
656
diff
changeset
|
52 |
"my_neg" |
597 | 53 |
|
54 |
definition |
|
55 |
MINUS :: "my_int \<Rightarrow> my_int \<Rightarrow> my_int" |
|
56 |
where |
|
57 |
"MINUS z w = PLUS z (NEG w)" |
|
58 |
||
59 |
fun |
|
60 |
my_mult :: "(nat \<times> nat) \<Rightarrow> (nat \<times> nat) \<Rightarrow> (nat \<times> nat)" |
|
61 |
where |
|
62 |
"my_mult (x, y) (u, v) = (x*u + y*v, x*v + y*u)" |
|
63 |
||
663
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
656
diff
changeset
|
64 |
quotient_def |
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
656
diff
changeset
|
65 |
MULT::"MULT :: my_int \<Rightarrow> my_int \<Rightarrow> my_int" |
597 | 66 |
where |
663
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
656
diff
changeset
|
67 |
"my_mult" |
597 | 68 |
|
69 |
||
70 |
(* NOT SURE WETHER THIS DEFINITION IS CORRECT *) |
|
71 |
fun |
|
72 |
my_le :: "(nat \<times> nat) \<Rightarrow> (nat \<times> nat) \<Rightarrow> bool" |
|
73 |
where |
|
74 |
"my_le (x, y) (u, v) = (x+v \<le> u+y)" |
|
75 |
||
663
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
656
diff
changeset
|
76 |
quotient_def |
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
656
diff
changeset
|
77 |
LE :: "LE :: my_int \<Rightarrow> my_int \<Rightarrow> bool" |
597 | 78 |
where |
663
0dd10a900cae
Different syntax for definitions that allows overloading and retrieving of definitions by matching whole constants.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
656
diff
changeset
|
79 |
"my_le" |
597 | 80 |
|
81 |
term LE |
|
82 |
thm LE_def |
|
83 |
||
84 |
||
85 |
definition |
|
86 |
LESS :: "my_int \<Rightarrow> my_int \<Rightarrow> bool" |
|
87 |
where |
|
88 |
"LESS z w = (LE z w \<and> z \<noteq> w)" |
|
89 |
||
90 |
term LESS |
|
91 |
thm LESS_def |
|
92 |
||
93 |
definition |
|
94 |
ABS :: "my_int \<Rightarrow> my_int" |
|
95 |
where |
|
96 |
"ABS i = (if (LESS i ZERO) then (NEG i) else i)" |
|
97 |
||
98 |
definition |
|
99 |
SIGN :: "my_int \<Rightarrow> my_int" |
|
100 |
where |
|
101 |
"SIGN i = (if i = ZERO then ZERO else if (LESS ZERO i) then ONE else (NEG ONE))" |
|
102 |
||
103 |
ML {* print_qconstinfo @{context} *} |
|
104 |
||
105 |
lemma plus_sym_pre: |
|
106 |
shows "my_plus a b \<approx> my_plus b a" |
|
107 |
apply(cases a) |
|
108 |
apply(cases b) |
|
109 |
apply(auto) |
|
110 |
done |
|
111 |
||
636
520a4084d064
changed names of attributes
Christian Urban <urbanc@in.tum.de>
parents:
632
diff
changeset
|
112 |
lemma plus_rsp[quot_respect]: |
597 | 113 |
shows "(intrel ===> intrel ===> intrel) my_plus my_plus" |
114 |
by (simp) |
|
115 |
||
116 |
lemma test1: "my_plus a b = my_plus a b" |
|
117 |
apply(rule refl) |
|
118 |
done |
|
119 |
||
120 |
lemma "PLUS a b = PLUS a b" |
|
637
b029f242d85d
chnaged syntax to "lifting theorem"
Christian Urban <urbanc@in.tum.de>
parents:
636
diff
changeset
|
121 |
apply(lifting_setup test1) |
632
d23416464f62
added methods for the lifting_tac and the other tacs
Christian Urban <urbanc@in.tum.de>
parents:
625
diff
changeset
|
122 |
apply(regularize) |
d23416464f62
added methods for the lifting_tac and the other tacs
Christian Urban <urbanc@in.tum.de>
parents:
625
diff
changeset
|
123 |
apply(injection) |
d23416464f62
added methods for the lifting_tac and the other tacs
Christian Urban <urbanc@in.tum.de>
parents:
625
diff
changeset
|
124 |
apply(cleaning) |
597 | 125 |
done |
126 |
||
127 |
thm lambda_prs |
|
128 |
||
129 |
lemma test2: "my_plus a = my_plus a" |
|
130 |
apply(rule refl) |
|
131 |
done |
|
132 |
||
133 |
lemma "PLUS a = PLUS a" |
|
134 |
apply(tactic {* procedure_tac @{context} @{thm test2} 1 *}) |
|
606
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
135 |
apply(rule impI) |
597 | 136 |
apply(rule ballI) |
137 |
apply(rule apply_rsp[OF Quotient_my_int plus_rsp]) |
|
138 |
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
|
139 |
apply(tactic {* all_inj_repabs_tac @{context} 1*}) |
597 | 140 |
apply(tactic {* clean_tac @{context} 1 *}) |
141 |
done |
|
142 |
||
143 |
lemma test3: "my_plus = my_plus" |
|
144 |
apply(rule refl) |
|
145 |
done |
|
146 |
||
147 |
lemma "PLUS = PLUS" |
|
148 |
apply(tactic {* procedure_tac @{context} @{thm test3} 1 *}) |
|
606
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
149 |
apply(rule impI) |
597 | 150 |
apply(rule plus_rsp) |
636
520a4084d064
changed names of attributes
Christian Urban <urbanc@in.tum.de>
parents:
632
diff
changeset
|
151 |
apply(injection) |
520a4084d064
changed names of attributes
Christian Urban <urbanc@in.tum.de>
parents:
632
diff
changeset
|
152 |
apply(cleaning) |
597 | 153 |
done |
154 |
||
155 |
||
156 |
lemma "PLUS a b = PLUS b a" |
|
157 |
apply(tactic {* procedure_tac @{context} @{thm plus_sym_pre} 1 *}) |
|
158 |
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
|
159 |
apply(tactic {* all_inj_repabs_tac @{context} 1*}) |
597 | 160 |
apply(tactic {* clean_tac @{context} 1 *}) |
161 |
done |
|
162 |
||
163 |
lemma plus_assoc_pre: |
|
164 |
shows "my_plus (my_plus i j) k \<approx> my_plus i (my_plus j k)" |
|
165 |
apply (cases i) |
|
166 |
apply (cases j) |
|
167 |
apply (cases k) |
|
168 |
apply (simp) |
|
169 |
done |
|
170 |
||
171 |
lemma plus_assoc: "PLUS (PLUS x xa) xb = PLUS x (PLUS xa xb)" |
|
172 |
apply(tactic {* procedure_tac @{context} @{thm plus_assoc_pre} 1 *}) |
|
173 |
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
|
174 |
apply(tactic {* all_inj_repabs_tac @{context} 1*}) |
597 | 175 |
apply(tactic {* clean_tac @{context} 1 *}) |
176 |
done |
|
177 |
||
178 |
lemma ho_tst: "foldl my_plus x [] = x" |
|
179 |
apply simp |
|
180 |
done |
|
181 |
||
182 |
lemma "foldl PLUS x [] = x" |
|
637
b029f242d85d
chnaged syntax to "lifting theorem"
Christian Urban <urbanc@in.tum.de>
parents:
636
diff
changeset
|
183 |
apply(lifting ho_tst) |
597 | 184 |
done |
185 |
||
186 |
lemma ho_tst2: "foldl my_plus x (h # t) \<approx> my_plus h (foldl my_plus x t)" |
|
187 |
sorry |
|
188 |
||
189 |
lemma "foldl PLUS x (h # t) = PLUS h (foldl PLUS x t)" |
|
648
830b58c2fa94
decoupled QuotProd from QuotMain and also started new cleaning strategy
Christian Urban <urbanc@in.tum.de>
parents:
645
diff
changeset
|
190 |
apply(lifting_setup ho_tst2) |
830b58c2fa94
decoupled QuotProd from QuotMain and also started new cleaning strategy
Christian Urban <urbanc@in.tum.de>
parents:
645
diff
changeset
|
191 |
apply(regularize) |
830b58c2fa94
decoupled QuotProd from QuotMain and also started new cleaning strategy
Christian Urban <urbanc@in.tum.de>
parents:
645
diff
changeset
|
192 |
apply(injection) |
830b58c2fa94
decoupled QuotProd from QuotMain and also started new cleaning strategy
Christian Urban <urbanc@in.tum.de>
parents:
645
diff
changeset
|
193 |
apply(cleaning) |
597 | 194 |
done |
195 |
||
196 |
lemma ho_tst3: "foldl f (s::nat \<times> nat) ([]::(nat \<times> nat) list) = s" |
|
197 |
by simp |
|
198 |
||
199 |
lemma "foldl f (x::my_int) ([]::my_int list) = x" |
|
648
830b58c2fa94
decoupled QuotProd from QuotMain and also started new cleaning strategy
Christian Urban <urbanc@in.tum.de>
parents:
645
diff
changeset
|
200 |
apply(lifting ho_tst3) |
597 | 201 |
done |
202 |
||
203 |
lemma lam_tst: "(\<lambda>x. (x, x)) y = (y, (y :: nat \<times> nat))" |
|
204 |
by simp |
|
205 |
||
622
df7a2f76daae
Nitpick found a counterexample for one lemma.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
621
diff
changeset
|
206 |
(* Don't know how to keep the goal non-contracted... *) |
597 | 207 |
lemma "(\<lambda>x. (x, x)) (y::my_int) = (y, y)" |
648
830b58c2fa94
decoupled QuotProd from QuotMain and also started new cleaning strategy
Christian Urban <urbanc@in.tum.de>
parents:
645
diff
changeset
|
208 |
apply(lifting lam_tst) |
597 | 209 |
done |
210 |
||
211 |
lemma lam_tst2: "(\<lambda>(y :: nat \<times> nat). y) = (\<lambda>(x :: nat \<times> nat). x)" |
|
212 |
by simp |
|
213 |
||
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
|
214 |
(* test about lifting identity equations *) |
597 | 215 |
|
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
|
216 |
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
|
217 |
(* 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
|
218 |
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
|
219 |
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
|
220 |
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
|
221 |
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
|
222 |
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
|
223 |
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
|
224 |
*} |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
225 |
|
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
226 |
(* 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
|
227 |
(*========================*) |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
228 |
|
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
229 |
(* 0. preliminary simplification step *) |
606
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
230 |
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
|
231 |
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
|
232 |
(* 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
|
233 |
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
|
234 |
(* 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
|
235 |
(* 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
|
236 |
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
|
237 |
(* 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
|
238 |
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
|
239 |
(* 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
|
240 |
(* 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
|
241 |
|
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
242 |
|
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
243 |
(* 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
|
244 |
(*====================*) |
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
245 |
|
120e479ed367
first attempt to deal with Babs in regularise and cleaning (not yet working)
Christian Urban <urbanc@in.tum.de>
parents:
603
diff
changeset
|
246 |
(* 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
|
247 |
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
|
248 |
(* 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
|
249 |
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
|
250 |
(* 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
|
251 |
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
|
252 |
(* 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
|
253 |
|
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 |
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
|
255 |
shows "equivp (op \<approx>)" |
622
df7a2f76daae
Nitpick found a counterexample for one lemma.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
621
diff
changeset
|
256 |
and "equivp ((op \<approx>) ===> (op \<approx>))" |
df7a2f76daae
Nitpick found a counterexample for one lemma.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
621
diff
changeset
|
257 |
(* Nitpick finds a counterexample! *) |
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
|
258 |
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
|
259 |
|
606
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
260 |
lemma lam_tst3a: "(\<lambda>(y :: nat \<times> nat). y) = (\<lambda>(x :: nat \<times> nat). x)" |
597 | 261 |
by auto |
262 |
||
620 | 263 |
lemma id_rsp: |
264 |
shows "(R ===> R) id id" |
|
265 |
by simp |
|
266 |
||
267 |
lemma lam_tst3a_reg: "(op \<approx> ===> op \<approx>) (Babs (Respects op \<approx>) (\<lambda>y. y)) (Babs (Respects op \<approx>) (\<lambda>x. x))" |
|
268 |
apply (rule babs_rsp[OF Quotient_my_int]) |
|
269 |
apply (simp add: id_rsp) |
|
270 |
done |
|
271 |
||
606
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
272 |
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
|
273 |
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
|
274 |
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
|
275 |
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
|
276 |
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
|
277 |
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
|
278 |
done |
606
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
279 |
|
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
280 |
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
|
281 |
by auto |
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
282 |
|
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
283 |
lemma "(\<lambda>(y :: my_int => my_int). y) = (\<lambda>(x :: my_int => my_int). x)" |
648
830b58c2fa94
decoupled QuotProd from QuotMain and also started new cleaning strategy
Christian Urban <urbanc@in.tum.de>
parents:
645
diff
changeset
|
284 |
apply(lifting lam_tst3b) |
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
|
285 |
apply(rule impI) |
648
830b58c2fa94
decoupled QuotProd from QuotMain and also started new cleaning strategy
Christian Urban <urbanc@in.tum.de>
parents:
645
diff
changeset
|
286 |
apply(rule babs_rsp[OF fun_quotient[OF Quotient_my_int Quotient_my_int]]) |
830b58c2fa94
decoupled QuotProd from QuotMain and also started new cleaning strategy
Christian Urban <urbanc@in.tum.de>
parents:
645
diff
changeset
|
287 |
apply(simp add: id_rsp) |
625
5d6a2b5fb222
Another lambda example theorem proved. Seems it starts working properly.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
622
diff
changeset
|
288 |
done |
622
df7a2f76daae
Nitpick found a counterexample for one lemma.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
621
diff
changeset
|
289 |
|
625
5d6a2b5fb222
Another lambda example theorem proved. Seems it starts working properly.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
622
diff
changeset
|
290 |
term map |
5d6a2b5fb222
Another lambda example theorem proved. Seems it starts working properly.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
622
diff
changeset
|
291 |
|
5d6a2b5fb222
Another lambda example theorem proved. Seems it starts working properly.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
622
diff
changeset
|
292 |
lemma lam_tst4: "map (\<lambda>x. my_plus x (0,0)) l = l" |
5d6a2b5fb222
Another lambda example theorem proved. Seems it starts working properly.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
622
diff
changeset
|
293 |
apply (induct l) |
5d6a2b5fb222
Another lambda example theorem proved. Seems it starts working properly.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
622
diff
changeset
|
294 |
apply simp |
5d6a2b5fb222
Another lambda example theorem proved. Seems it starts working properly.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
622
diff
changeset
|
295 |
apply (case_tac a) |
5d6a2b5fb222
Another lambda example theorem proved. Seems it starts working properly.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
622
diff
changeset
|
296 |
apply simp |
5d6a2b5fb222
Another lambda example theorem proved. Seems it starts working properly.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
622
diff
changeset
|
297 |
done |
5d6a2b5fb222
Another lambda example theorem proved. Seems it starts working properly.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
622
diff
changeset
|
298 |
|
5d6a2b5fb222
Another lambda example theorem proved. Seems it starts working properly.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
622
diff
changeset
|
299 |
lemma "map (\<lambda>x. PLUS x ZERO) l = l" |
637
b029f242d85d
chnaged syntax to "lifting theorem"
Christian Urban <urbanc@in.tum.de>
parents:
636
diff
changeset
|
300 |
apply(lifting lam_tst4) |
656
c86a47d4966e
Temporarily repeated fun_map_tac 4 times. Cleaning for all examples work.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
652
diff
changeset
|
301 |
done |
601
81f40b8bde7b
added "end" to each example theory
Christian Urban <urbanc@in.tum.de>
parents:
600
diff
changeset
|
302 |
|
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
|
303 |
end |