author | Cezary Kaliszyk <kaliszyk@in.tum.de> |
Tue, 26 Jan 2010 08:55:55 +0100 | |
changeset 929 | e812f58fd128 |
parent 911 | 95ee248b3832 |
child 998 | cfd2a42d60e3 |
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 |
||
787
5cf83fa5b36c
made the quotient_type definition more like typedef; now type variables need to be explicitly given
Christian Urban <urbanc@in.tum.de>
parents:
768
diff
changeset
|
10 |
quotient_type |
5cf83fa5b36c
made the quotient_type definition more like typedef; now type variables need to be explicitly given
Christian Urban <urbanc@in.tum.de>
parents:
768
diff
changeset
|
11 |
my_int = "nat \<times> nat" / intrel |
597 | 12 |
apply(unfold equivp_def) |
13 |
apply(auto simp add: mem_def expand_fun_eq) |
|
14 |
done |
|
15 |
||
767
37285ec4387d
on suggestion of Tobias renamed "quotient_def" to "quotient_definition"; needs new keyword file
Christian Urban <urbanc@in.tum.de>
parents:
766
diff
changeset
|
16 |
quotient_definition |
705
f51c6069cd17
New syntax for definitions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
692
diff
changeset
|
17 |
"ZERO :: my_int" |
f51c6069cd17
New syntax for definitions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
692
diff
changeset
|
18 |
as |
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
|
19 |
"(0::nat, 0::nat)" |
597 | 20 |
|
767
37285ec4387d
on suggestion of Tobias renamed "quotient_def" to "quotient_definition"; needs new keyword file
Christian Urban <urbanc@in.tum.de>
parents:
766
diff
changeset
|
21 |
quotient_definition |
705
f51c6069cd17
New syntax for definitions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
692
diff
changeset
|
22 |
"ONE :: my_int" |
f51c6069cd17
New syntax for definitions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
692
diff
changeset
|
23 |
as |
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 |
"(1::nat, 0::nat)" |
597 | 25 |
|
26 |
fun |
|
27 |
my_plus :: "(nat \<times> nat) \<Rightarrow> (nat \<times> nat) \<Rightarrow> (nat \<times> nat)" |
|
28 |
where |
|
29 |
"my_plus (x, y) (u, v) = (x + u, y + v)" |
|
30 |
||
767
37285ec4387d
on suggestion of Tobias renamed "quotient_def" to "quotient_definition"; needs new keyword file
Christian Urban <urbanc@in.tum.de>
parents:
766
diff
changeset
|
31 |
quotient_definition |
705
f51c6069cd17
New syntax for definitions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
692
diff
changeset
|
32 |
"PLUS :: my_int \<Rightarrow> my_int \<Rightarrow> my_int" |
f51c6069cd17
New syntax for definitions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
692
diff
changeset
|
33 |
as |
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
|
34 |
"my_plus" |
597 | 35 |
|
36 |
fun |
|
37 |
my_neg :: "(nat \<times> nat) \<Rightarrow> (nat \<times> nat)" |
|
38 |
where |
|
39 |
"my_neg (x, y) = (y, x)" |
|
40 |
||
767
37285ec4387d
on suggestion of Tobias renamed "quotient_def" to "quotient_definition"; needs new keyword file
Christian Urban <urbanc@in.tum.de>
parents:
766
diff
changeset
|
41 |
quotient_definition |
705
f51c6069cd17
New syntax for definitions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
692
diff
changeset
|
42 |
"NEG :: my_int \<Rightarrow> my_int" |
f51c6069cd17
New syntax for definitions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
692
diff
changeset
|
43 |
as |
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
|
44 |
"my_neg" |
597 | 45 |
|
46 |
definition |
|
47 |
MINUS :: "my_int \<Rightarrow> my_int \<Rightarrow> my_int" |
|
48 |
where |
|
49 |
"MINUS z w = PLUS z (NEG w)" |
|
50 |
||
51 |
fun |
|
52 |
my_mult :: "(nat \<times> nat) \<Rightarrow> (nat \<times> nat) \<Rightarrow> (nat \<times> nat)" |
|
53 |
where |
|
54 |
"my_mult (x, y) (u, v) = (x*u + y*v, x*v + y*u)" |
|
55 |
||
767
37285ec4387d
on suggestion of Tobias renamed "quotient_def" to "quotient_definition"; needs new keyword file
Christian Urban <urbanc@in.tum.de>
parents:
766
diff
changeset
|
56 |
quotient_definition |
705
f51c6069cd17
New syntax for definitions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
692
diff
changeset
|
57 |
"MULT :: my_int \<Rightarrow> my_int \<Rightarrow> my_int" |
f51c6069cd17
New syntax for definitions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
692
diff
changeset
|
58 |
as |
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
|
59 |
"my_mult" |
597 | 60 |
|
61 |
||
62 |
(* NOT SURE WETHER THIS DEFINITION IS CORRECT *) |
|
63 |
fun |
|
64 |
my_le :: "(nat \<times> nat) \<Rightarrow> (nat \<times> nat) \<Rightarrow> bool" |
|
65 |
where |
|
66 |
"my_le (x, y) (u, v) = (x+v \<le> u+y)" |
|
67 |
||
767
37285ec4387d
on suggestion of Tobias renamed "quotient_def" to "quotient_definition"; needs new keyword file
Christian Urban <urbanc@in.tum.de>
parents:
766
diff
changeset
|
68 |
quotient_definition |
705
f51c6069cd17
New syntax for definitions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
692
diff
changeset
|
69 |
"LE :: my_int \<Rightarrow> my_int \<Rightarrow> bool" |
f51c6069cd17
New syntax for definitions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
692
diff
changeset
|
70 |
as |
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
|
71 |
"my_le" |
597 | 72 |
|
73 |
term LE |
|
74 |
thm LE_def |
|
75 |
||
76 |
||
77 |
definition |
|
78 |
LESS :: "my_int \<Rightarrow> my_int \<Rightarrow> bool" |
|
79 |
where |
|
80 |
"LESS z w = (LE z w \<and> z \<noteq> w)" |
|
81 |
||
82 |
term LESS |
|
83 |
thm LESS_def |
|
84 |
||
85 |
definition |
|
86 |
ABS :: "my_int \<Rightarrow> my_int" |
|
87 |
where |
|
88 |
"ABS i = (if (LESS i ZERO) then (NEG i) else i)" |
|
89 |
||
90 |
definition |
|
91 |
SIGN :: "my_int \<Rightarrow> my_int" |
|
92 |
where |
|
93 |
"SIGN i = (if i = ZERO then ZERO else if (LESS ZERO i) then ONE else (NEG ONE))" |
|
94 |
||
764
a603aa6c9d01
with "isabelle make keywords" you can create automatically a "quot" keywordfile, provided all Logics are in place
Christian Urban <urbanc@in.tum.de>
parents:
762
diff
changeset
|
95 |
print_quotconsts |
597 | 96 |
|
97 |
lemma plus_sym_pre: |
|
98 |
shows "my_plus a b \<approx> my_plus b a" |
|
99 |
apply(cases a) |
|
100 |
apply(cases b) |
|
101 |
apply(auto) |
|
102 |
done |
|
103 |
||
636
520a4084d064
changed names of attributes
Christian Urban <urbanc@in.tum.de>
parents:
632
diff
changeset
|
104 |
lemma plus_rsp[quot_respect]: |
597 | 105 |
shows "(intrel ===> intrel ===> intrel) my_plus my_plus" |
106 |
by (simp) |
|
107 |
||
692
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
108 |
lemma neg_rsp[quot_respect]: |
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
109 |
shows "(op \<approx> ===> op \<approx>) my_neg my_neg" |
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
110 |
by simp |
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
111 |
|
597 | 112 |
lemma test1: "my_plus a b = my_plus a b" |
113 |
apply(rule refl) |
|
114 |
done |
|
115 |
||
116 |
lemma "PLUS a b = PLUS a b" |
|
637
b029f242d85d
chnaged syntax to "lifting theorem"
Christian Urban <urbanc@in.tum.de>
parents:
636
diff
changeset
|
117 |
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
|
118 |
apply(regularize) |
d23416464f62
added methods for the lifting_tac and the other tacs
Christian Urban <urbanc@in.tum.de>
parents:
625
diff
changeset
|
119 |
apply(injection) |
d23416464f62
added methods for the lifting_tac and the other tacs
Christian Urban <urbanc@in.tum.de>
parents:
625
diff
changeset
|
120 |
apply(cleaning) |
597 | 121 |
done |
122 |
||
123 |
thm lambda_prs |
|
124 |
||
125 |
lemma test2: "my_plus a = my_plus a" |
|
126 |
apply(rule refl) |
|
127 |
done |
|
128 |
||
129 |
lemma "PLUS a = PLUS a" |
|
758
3104d62e7a16
moved the QuotMain code into two ML-files
Christian Urban <urbanc@in.tum.de>
parents:
705
diff
changeset
|
130 |
apply(lifting_setup test2) |
606
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
131 |
apply(rule impI) |
597 | 132 |
apply(rule ballI) |
133 |
apply(rule apply_rsp[OF Quotient_my_int plus_rsp]) |
|
134 |
apply(simp only: in_respects) |
|
758
3104d62e7a16
moved the QuotMain code into two ML-files
Christian Urban <urbanc@in.tum.de>
parents:
705
diff
changeset
|
135 |
apply(injection) |
3104d62e7a16
moved the QuotMain code into two ML-files
Christian Urban <urbanc@in.tum.de>
parents:
705
diff
changeset
|
136 |
apply(cleaning) |
597 | 137 |
done |
138 |
||
139 |
lemma test3: "my_plus = my_plus" |
|
140 |
apply(rule refl) |
|
141 |
done |
|
142 |
||
143 |
lemma "PLUS = PLUS" |
|
758
3104d62e7a16
moved the QuotMain code into two ML-files
Christian Urban <urbanc@in.tum.de>
parents:
705
diff
changeset
|
144 |
apply(lifting_setup test3) |
606
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
145 |
apply(rule impI) |
597 | 146 |
apply(rule plus_rsp) |
636
520a4084d064
changed names of attributes
Christian Urban <urbanc@in.tum.de>
parents:
632
diff
changeset
|
147 |
apply(injection) |
520a4084d064
changed names of attributes
Christian Urban <urbanc@in.tum.de>
parents:
632
diff
changeset
|
148 |
apply(cleaning) |
597 | 149 |
done |
150 |
||
151 |
||
152 |
lemma "PLUS a b = PLUS b a" |
|
758
3104d62e7a16
moved the QuotMain code into two ML-files
Christian Urban <urbanc@in.tum.de>
parents:
705
diff
changeset
|
153 |
apply(lifting plus_sym_pre) |
597 | 154 |
done |
155 |
||
156 |
lemma plus_assoc_pre: |
|
157 |
shows "my_plus (my_plus i j) k \<approx> my_plus i (my_plus j k)" |
|
158 |
apply (cases i) |
|
159 |
apply (cases j) |
|
160 |
apply (cases k) |
|
161 |
apply (simp) |
|
162 |
done |
|
163 |
||
164 |
lemma plus_assoc: "PLUS (PLUS x xa) xb = PLUS x (PLUS xa xb)" |
|
758
3104d62e7a16
moved the QuotMain code into two ML-files
Christian Urban <urbanc@in.tum.de>
parents:
705
diff
changeset
|
165 |
apply(lifting plus_assoc_pre) |
597 | 166 |
done |
167 |
||
692
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
168 |
lemma int_induct_raw: |
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
169 |
assumes a: "P (0::nat, 0)" |
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
170 |
and b: "\<And>i. P i \<Longrightarrow> P (my_plus i (1,0))" |
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
171 |
and c: "\<And>i. P i \<Longrightarrow> P (my_plus i (my_neg (1,0)))" |
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
172 |
shows "P x" |
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
173 |
apply(case_tac x) apply(simp) |
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
174 |
apply(rule_tac x="b" in spec) |
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
175 |
apply(rule_tac Nat.induct) |
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
176 |
apply(rule allI) |
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
177 |
apply(rule_tac Nat.induct) |
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
178 |
using a b c apply(auto) |
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
179 |
done |
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
180 |
|
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
181 |
lemma int_induct: |
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
182 |
assumes a: "P ZERO" |
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
183 |
and b: "\<And>i. P i \<Longrightarrow> P (PLUS i ONE)" |
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
184 |
and c: "\<And>i. P i \<Longrightarrow> P (PLUS i (NEG ONE))" |
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
185 |
shows "P x" |
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
186 |
using a b c |
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
187 |
by (lifting int_induct_raw) |
c9231c2903bc
Moved 'int_induct' to IntEx to keep IntEx2 being just theory of integers in order.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
663
diff
changeset
|
188 |
|
909
3e7a6ec549d1
Using Bexeq_rsp, and manually lifted lemma with Ex1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
908
diff
changeset
|
189 |
lemma ex1tst: "Bexeq (op \<approx>) (\<lambda>x :: nat \<times> nat. x \<approx> x)" |
908
1bf4337919d3
Bexeq definition, Ex1_prs lemma, Bex1_rsp lemma, compiles.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
875
diff
changeset
|
190 |
sorry |
1bf4337919d3
Bexeq definition, Ex1_prs lemma, Bex1_rsp lemma, compiles.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
875
diff
changeset
|
191 |
|
909
3e7a6ec549d1
Using Bexeq_rsp, and manually lifted lemma with Ex1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
908
diff
changeset
|
192 |
lemma ex1tst': "\<exists>! (x :: my_int). x = x" |
908
1bf4337919d3
Bexeq definition, Ex1_prs lemma, Bex1_rsp lemma, compiles.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
875
diff
changeset
|
193 |
apply(lifting ex1tst) |
909
3e7a6ec549d1
Using Bexeq_rsp, and manually lifted lemma with Ex1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
908
diff
changeset
|
194 |
done |
908
1bf4337919d3
Bexeq definition, Ex1_prs lemma, Bex1_rsp lemma, compiles.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
875
diff
changeset
|
195 |
|
597 | 196 |
lemma ho_tst: "foldl my_plus x [] = x" |
197 |
apply simp |
|
198 |
done |
|
199 |
||
835
c4fa87dd0208
Fix for testing matching constants in regularize.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
833
diff
changeset
|
200 |
|
c4fa87dd0208
Fix for testing matching constants in regularize.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
833
diff
changeset
|
201 |
term foldl |
597 | 202 |
lemma "foldl PLUS x [] = x" |
637
b029f242d85d
chnaged syntax to "lifting theorem"
Christian Urban <urbanc@in.tum.de>
parents:
636
diff
changeset
|
203 |
apply(lifting ho_tst) |
597 | 204 |
done |
205 |
||
206 |
lemma ho_tst2: "foldl my_plus x (h # t) \<approx> my_plus h (foldl my_plus x t)" |
|
207 |
sorry |
|
208 |
||
209 |
lemma "foldl PLUS x (h # t) = PLUS h (foldl PLUS x t)" |
|
758
3104d62e7a16
moved the QuotMain code into two ML-files
Christian Urban <urbanc@in.tum.de>
parents:
705
diff
changeset
|
210 |
apply(lifting ho_tst2) |
597 | 211 |
done |
212 |
||
213 |
lemma ho_tst3: "foldl f (s::nat \<times> nat) ([]::(nat \<times> nat) list) = s" |
|
214 |
by simp |
|
215 |
||
216 |
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
|
217 |
apply(lifting ho_tst3) |
597 | 218 |
done |
219 |
||
220 |
lemma lam_tst: "(\<lambda>x. (x, x)) y = (y, (y :: nat \<times> nat))" |
|
221 |
by simp |
|
222 |
||
622
df7a2f76daae
Nitpick found a counterexample for one lemma.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
621
diff
changeset
|
223 |
(* Don't know how to keep the goal non-contracted... *) |
597 | 224 |
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
|
225 |
apply(lifting lam_tst) |
597 | 226 |
done |
227 |
||
228 |
lemma lam_tst2: "(\<lambda>(y :: nat \<times> nat). y) = (\<lambda>(x :: nat \<times> nat). x)" |
|
229 |
by simp |
|
230 |
||
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 |
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
|
232 |
shows "equivp (op \<approx>)" |
622
df7a2f76daae
Nitpick found a counterexample for one lemma.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
621
diff
changeset
|
233 |
and "equivp ((op \<approx>) ===> (op \<approx>))" |
df7a2f76daae
Nitpick found a counterexample for one lemma.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
621
diff
changeset
|
234 |
(* 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
|
235 |
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
|
236 |
|
606
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
237 |
lemma lam_tst3a: "(\<lambda>(y :: nat \<times> nat). y) = (\<lambda>(x :: nat \<times> nat). x)" |
597 | 238 |
by auto |
239 |
||
620 | 240 |
lemma id_rsp: |
241 |
shows "(R ===> R) id id" |
|
242 |
by simp |
|
243 |
||
244 |
lemma lam_tst3a_reg: "(op \<approx> ===> op \<approx>) (Babs (Respects op \<approx>) (\<lambda>y. y)) (Babs (Respects op \<approx>) (\<lambda>x. x))" |
|
245 |
apply (rule babs_rsp[OF Quotient_my_int]) |
|
246 |
apply (simp add: id_rsp) |
|
247 |
done |
|
248 |
||
606
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
249 |
lemma "(\<lambda>(y :: my_int). y) = (\<lambda>(x :: my_int). x)" |
758
3104d62e7a16
moved the QuotMain code into two ML-files
Christian Urban <urbanc@in.tum.de>
parents:
705
diff
changeset
|
250 |
apply(lifting lam_tst3a) |
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
|
251 |
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
|
252 |
apply(rule lam_tst3a_reg) |
859
adadd0696472
Removed the 'oops' in IntEx.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
855
diff
changeset
|
253 |
done |
606
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
254 |
|
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
255 |
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
|
256 |
by auto |
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
257 |
|
38aa6b67a80b
clarified the function examples
Christian Urban <urbanc@in.tum.de>
parents:
605
diff
changeset
|
258 |
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
|
259 |
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
|
260 |
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
|
261 |
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
|
262 |
apply(simp add: id_rsp) |
859
adadd0696472
Removed the 'oops' in IntEx.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
855
diff
changeset
|
263 |
done |
625
5d6a2b5fb222
Another lambda example theorem proved. Seems it starts working properly.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
622
diff
changeset
|
264 |
|
5d6a2b5fb222
Another lambda example theorem proved. Seems it starts working properly.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
622
diff
changeset
|
265 |
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
|
266 |
apply (induct l) |
5d6a2b5fb222
Another lambda example theorem proved. Seems it starts working properly.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
622
diff
changeset
|
267 |
apply simp |
5d6a2b5fb222
Another lambda example theorem proved. Seems it starts working properly.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
622
diff
changeset
|
268 |
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
|
269 |
apply simp |
5d6a2b5fb222
Another lambda example theorem proved. Seems it starts working properly.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
622
diff
changeset
|
270 |
done |
5d6a2b5fb222
Another lambda example theorem proved. Seems it starts working properly.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
622
diff
changeset
|
271 |
|
5d6a2b5fb222
Another lambda example theorem proved. Seems it starts working properly.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
622
diff
changeset
|
272 |
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
|
273 |
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
|
274 |
done |
601
81f40b8bde7b
added "end" to each example theory
Christian Urban <urbanc@in.tum.de>
parents:
600
diff
changeset
|
275 |
|
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
|
276 |
end |