author | Cezary Kaliszyk <kaliszyk@in.tum.de> |
Thu, 07 Jan 2010 14:14:17 +0100 | |
changeset 820 | 162e38c14f24 |
parent 819 | f5c9ddc18246 |
child 821 | c2ebb7fcf9d0 |
permissions | -rw-r--r-- |
779
3b21b24a5fb6
corrected map declarations for Sum and Prod; moved absrep_fun examples in separate file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
1 |
theory AbsRepTest |
3b21b24a5fb6
corrected map declarations for Sum and Prod; moved absrep_fun examples in separate file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
2 |
imports "../QuotMain" "../QuotList" "../QuotOption" "../QuotSum" "../QuotProd" List |
3b21b24a5fb6
corrected map declarations for Sum and Prod; moved absrep_fun examples in separate file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
3 |
begin |
3b21b24a5fb6
corrected map declarations for Sum and Prod; moved absrep_fun examples in separate file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
4 |
|
790
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
5 |
ML {* open Quotient_Term *} |
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
6 |
|
795
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
7 |
ML {* |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
8 |
fun test_funs flag ctxt (rty, qty) = |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
9 |
(absrep_fun_chk flag ctxt (rty, qty) |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
10 |
|> Syntax.string_of_term ctxt |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
11 |
|> writeln; |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
12 |
equiv_relation_chk ctxt (rty, qty) |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
13 |
|> Syntax.string_of_term ctxt |
807
a5495a323b49
added a new version of equiv_relation (is not yet used anywhere except in AbsRepTest)
Christian Urban <urbanc@in.tum.de>
parents:
803
diff
changeset
|
14 |
|> writeln; |
a5495a323b49
added a new version of equiv_relation (is not yet used anywhere except in AbsRepTest)
Christian Urban <urbanc@in.tum.de>
parents:
803
diff
changeset
|
15 |
new_equiv_relation_chk ctxt (rty, qty) |
a5495a323b49
added a new version of equiv_relation (is not yet used anywhere except in AbsRepTest)
Christian Urban <urbanc@in.tum.de>
parents:
803
diff
changeset
|
16 |
|> Syntax.string_of_term ctxt |
a5495a323b49
added a new version of equiv_relation (is not yet used anywhere except in AbsRepTest)
Christian Urban <urbanc@in.tum.de>
parents:
803
diff
changeset
|
17 |
|> writeln) |
795
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
18 |
*} |
790
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
19 |
|
795
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
20 |
definition |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
21 |
erel1 (infixl "\<approx>1" 50) |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
22 |
where |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
23 |
"erel1 \<equiv> \<lambda>xs ys. \<forall>e. e \<in> set xs \<longleftrightarrow> e \<in> set ys" |
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:
786
diff
changeset
|
24 |
|
5cf83fa5b36c
made the quotient_type definition more like typedef; now type variables need to be explicitly given
Christian Urban <urbanc@in.tum.de>
parents:
786
diff
changeset
|
25 |
quotient_type |
795
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
26 |
'a fset = "'a list" / erel1 |
779
3b21b24a5fb6
corrected map declarations for Sum and Prod; moved absrep_fun examples in separate file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
27 |
apply(rule equivpI) |
795
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
28 |
unfolding erel1_def reflp_def symp_def transp_def |
790
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
29 |
by auto |
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
30 |
|
795
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
31 |
definition |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
32 |
erel2 (infixl "\<approx>2" 50) |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
33 |
where |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
34 |
"erel2 \<equiv> \<lambda>(xs::('a * 'a) list) ys. \<forall>e. e \<in> set xs \<longleftrightarrow> e \<in> set ys" |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
35 |
|
790
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
36 |
quotient_type |
795
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
37 |
'a foo = "('a * 'a) list" / erel2 |
790
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
38 |
apply(rule equivpI) |
795
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
39 |
unfolding erel2_def reflp_def symp_def transp_def |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
40 |
by auto |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
41 |
|
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
42 |
definition |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
43 |
erel3 (infixl "\<approx>3" 50) |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
44 |
where |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
45 |
"erel3 \<equiv> \<lambda>(xs::('a * int) list) ys. \<forall>e. e \<in> set xs \<longleftrightarrow> e \<in> set ys" |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
46 |
|
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
47 |
quotient_type |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
48 |
'a bar = "('a * int) list" / "erel3" |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
49 |
apply(rule equivpI) |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
50 |
unfolding erel3_def reflp_def symp_def transp_def |
790
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
51 |
by auto |
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
52 |
|
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
53 |
fun |
795
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
54 |
intrel :: "(nat \<times> nat) \<Rightarrow> (nat \<times> nat) \<Rightarrow> bool" (infixl "\<approx>4" 50) |
790
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
55 |
where |
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
56 |
"intrel (x, y) (u, v) = (x + v = u + y)" |
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
57 |
|
795
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
58 |
quotient_type myint = "nat \<times> nat" / intrel |
790
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
59 |
by (auto simp add: equivp_def expand_fun_eq) |
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
60 |
|
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
61 |
ML {* |
795
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
62 |
test_funs absF @{context} |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
63 |
(@{typ "nat \<times> nat"}, |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
64 |
@{typ "myint"}) |
790
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
65 |
*} |
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
66 |
|
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
67 |
ML {* |
795
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
68 |
test_funs absF @{context} |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
69 |
(@{typ "('a * 'a) list"}, |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
70 |
@{typ "'a foo"}) |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
71 |
*} |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
72 |
|
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
73 |
ML {* |
803
6f6ee78c7357
a slight change to abs/rep generation
Christian Urban <urbanc@in.tum.de>
parents:
796
diff
changeset
|
74 |
test_funs repF @{context} |
6f6ee78c7357
a slight change to abs/rep generation
Christian Urban <urbanc@in.tum.de>
parents:
796
diff
changeset
|
75 |
(@{typ "(('a * 'a) list * 'b)"}, |
6f6ee78c7357
a slight change to abs/rep generation
Christian Urban <urbanc@in.tum.de>
parents:
796
diff
changeset
|
76 |
@{typ "('a foo * 'b)"}) |
6f6ee78c7357
a slight change to abs/rep generation
Christian Urban <urbanc@in.tum.de>
parents:
796
diff
changeset
|
77 |
*} |
6f6ee78c7357
a slight change to abs/rep generation
Christian Urban <urbanc@in.tum.de>
parents:
796
diff
changeset
|
78 |
|
6f6ee78c7357
a slight change to abs/rep generation
Christian Urban <urbanc@in.tum.de>
parents:
796
diff
changeset
|
79 |
ML {* |
795
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
80 |
test_funs absF @{context} |
790
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
81 |
(@{typ "(('a list) * int) list"}, |
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
82 |
@{typ "('a fset) bar"}) |
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
83 |
*} |
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
84 |
|
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
85 |
ML {* |
795
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
86 |
test_funs absF @{context} |
807
a5495a323b49
added a new version of equiv_relation (is not yet used anywhere except in AbsRepTest)
Christian Urban <urbanc@in.tum.de>
parents:
803
diff
changeset
|
87 |
(@{typ "('a list)"}, |
a5495a323b49
added a new version of equiv_relation (is not yet used anywhere except in AbsRepTest)
Christian Urban <urbanc@in.tum.de>
parents:
803
diff
changeset
|
88 |
@{typ "('a fset)"}) |
a5495a323b49
added a new version of equiv_relation (is not yet used anywhere except in AbsRepTest)
Christian Urban <urbanc@in.tum.de>
parents:
803
diff
changeset
|
89 |
*} |
a5495a323b49
added a new version of equiv_relation (is not yet used anywhere except in AbsRepTest)
Christian Urban <urbanc@in.tum.de>
parents:
803
diff
changeset
|
90 |
|
a5495a323b49
added a new version of equiv_relation (is not yet used anywhere except in AbsRepTest)
Christian Urban <urbanc@in.tum.de>
parents:
803
diff
changeset
|
91 |
ML {* |
a5495a323b49
added a new version of equiv_relation (is not yet used anywhere except in AbsRepTest)
Christian Urban <urbanc@in.tum.de>
parents:
803
diff
changeset
|
92 |
test_funs absF @{context} |
795
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
93 |
(@{typ "('a list) list"}, |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
94 |
@{typ "('a fset) fset"}) |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
95 |
*} |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
96 |
|
808
90bde96f5dd1
proper handling of error messages (code copy - maybe this can be avoided)
Christian Urban <urbanc@in.tum.de>
parents:
807
diff
changeset
|
97 |
|
811 | 98 |
ML {* |
99 |
test_funs absF @{context} |
|
100 |
(@{typ "((nat * nat) list) list"}, |
|
101 |
@{typ "((myint) fset) fset"}) |
|
102 |
*} |
|
808
90bde96f5dd1
proper handling of error messages (code copy - maybe this can be avoided)
Christian Urban <urbanc@in.tum.de>
parents:
807
diff
changeset
|
103 |
|
795
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
104 |
ML {* |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
105 |
test_funs absF @{context} |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
106 |
(@{typ "(('a * 'a) list) list"}, |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
107 |
@{typ "(('a * 'a) fset) fset"}) |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
108 |
*} |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
109 |
|
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
110 |
ML {* |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
111 |
test_funs absF @{context} |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
112 |
(@{typ "(nat * nat) list"}, |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
113 |
@{typ "myint fset"}) |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
114 |
*} |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
115 |
|
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
116 |
ML {* |
a28f805df355
renamed mk_resp_arg to equiv_relation and exported it in the signature; added tests in AbsRepFun.thy
Christian Urban <urbanc@in.tum.de>
parents:
790
diff
changeset
|
117 |
test_funs absF @{context} |
796
64f9c76f70c7
corrected wrong [quot_respect] attribute; tuned
Christian Urban <urbanc@in.tum.de>
parents:
795
diff
changeset
|
118 |
(@{typ "('a list) list \<Rightarrow> 'a list"}, |
64f9c76f70c7
corrected wrong [quot_respect] attribute; tuned
Christian Urban <urbanc@in.tum.de>
parents:
795
diff
changeset
|
119 |
@{typ "('a fset) fset \<Rightarrow> 'a fset"}) |
790
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
120 |
*} |
3a48ffcf0f9a
generalised absrep function; needs consolidation
Christian Urban <urbanc@in.tum.de>
parents:
787
diff
changeset
|
121 |
|
809
e9e0d1810217
Trying to state composition quotient.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
808
diff
changeset
|
122 |
lemma |
e9e0d1810217
Trying to state composition quotient.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
808
diff
changeset
|
123 |
assumes sr: "symp r" |
e9e0d1810217
Trying to state composition quotient.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
808
diff
changeset
|
124 |
and ss: "symp s" |
e9e0d1810217
Trying to state composition quotient.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
808
diff
changeset
|
125 |
shows "(r OO s) x y = (s OO r) y x" |
e9e0d1810217
Trying to state composition quotient.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
808
diff
changeset
|
126 |
using sr ss |
e9e0d1810217
Trying to state composition quotient.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
808
diff
changeset
|
127 |
unfolding symp_def |
e9e0d1810217
Trying to state composition quotient.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
808
diff
changeset
|
128 |
apply (metis pred_comp.intros pred_compE ss symp_def) |
810
f73e2f5f17b2
Struggling with composition
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
809
diff
changeset
|
129 |
done |
809
e9e0d1810217
Trying to state composition quotient.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
808
diff
changeset
|
130 |
|
812 | 131 |
lemma abs_o_rep: |
132 |
assumes a: "Quotient r absf repf" |
|
133 |
shows "absf o repf = id" |
|
134 |
apply(rule ext) |
|
135 |
apply(simp add: Quotient_abs_rep[OF a]) |
|
136 |
done |
|
137 |
||
820
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
138 |
lemma set_in_eq: "(\<forall>e. ((e \<in> A) = (e \<in> B))) \<equiv> A = B" |
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
139 |
apply (rule eq_reflection) |
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
140 |
apply auto |
816 | 141 |
done |
142 |
||
820
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
143 |
lemma map_rep_ok: "b \<approx>1 ba \<Longrightarrow> map rep_fset b \<approx>1 map rep_fset ba" |
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
144 |
unfolding erel1_def |
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
145 |
apply(simp only: set_map set_in_eq) |
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
146 |
done |
816 | 147 |
|
820
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
148 |
lemma map_abs_ok: "b \<approx>1 ba \<Longrightarrow> map abs_fset b \<approx>1 map abs_fset ba" |
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
149 |
unfolding erel1_def |
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
150 |
apply(simp only: set_map set_in_eq) |
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
151 |
done |
816 | 152 |
|
818
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
153 |
lemma quotient_compose_list_pre: |
816 | 154 |
"(list_rel op \<approx>1 OO op \<approx>1 OO list_rel op \<approx>1) r s = |
155 |
((list_rel op \<approx>1 OO op \<approx>1 OO list_rel op \<approx>1) r r \<and> |
|
156 |
(list_rel op \<approx>1 OO op \<approx>1 OO list_rel op \<approx>1) s s \<and> abs_fset (map abs_fset r) = abs_fset (map abs_fset s))" |
|
157 |
apply rule |
|
158 |
apply rule |
|
159 |
apply rule |
|
160 |
apply (rule list_rel_refl) |
|
161 |
apply (metis equivp_def fset_equivp) |
|
162 |
apply rule |
|
163 |
apply (rule equivp_reflp[OF fset_equivp]) |
|
164 |
apply (rule list_rel_refl) |
|
165 |
apply (metis equivp_def fset_equivp) |
|
166 |
apply(rule) |
|
167 |
apply rule |
|
168 |
apply (rule list_rel_refl) |
|
169 |
apply (metis equivp_def fset_equivp) |
|
170 |
apply rule |
|
171 |
apply (rule equivp_reflp[OF fset_equivp]) |
|
172 |
apply (rule list_rel_refl) |
|
818
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
173 |
apply (metis equivp_def fset_equivp) |
816 | 174 |
apply (subgoal_tac "map abs_fset r \<approx>1 map abs_fset s") |
175 |
apply (metis Quotient_rel[OF Quotient_fset]) |
|
819
f5c9ddc18246
Reduced the proof to two simple but not obvious to prove facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
818
diff
changeset
|
176 |
apply (auto)[1] |
f5c9ddc18246
Reduced the proof to two simple but not obvious to prove facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
818
diff
changeset
|
177 |
apply (subgoal_tac "map abs_fset r = map abs_fset b") |
f5c9ddc18246
Reduced the proof to two simple but not obvious to prove facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
818
diff
changeset
|
178 |
prefer 2 |
f5c9ddc18246
Reduced the proof to two simple but not obvious to prove facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
818
diff
changeset
|
179 |
apply (metis Quotient_rel[OF list_quotient[OF Quotient_fset]]) |
f5c9ddc18246
Reduced the proof to two simple but not obvious to prove facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
818
diff
changeset
|
180 |
apply (subgoal_tac "map abs_fset s = map abs_fset ba") |
f5c9ddc18246
Reduced the proof to two simple but not obvious to prove facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
818
diff
changeset
|
181 |
prefer 2 |
f5c9ddc18246
Reduced the proof to two simple but not obvious to prove facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
818
diff
changeset
|
182 |
apply (metis Quotient_rel[OF list_quotient[OF Quotient_fset]]) |
820
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
183 |
apply (simp add: map_abs_ok) |
816 | 184 |
apply rule |
185 |
apply (rule rep_abs_rsp[of "list_rel op \<approx>1" "map abs_fset"]) |
|
186 |
apply (tactic {* Quotient_Tacs.quotient_tac @{context} 1 *}) |
|
187 |
apply (rule list_rel_refl) |
|
188 |
apply (metis equivp_def fset_equivp) |
|
189 |
apply rule |
|
190 |
prefer 2 |
|
191 |
apply (rule rep_abs_rsp_left[of "list_rel op \<approx>1" "map abs_fset"]) |
|
192 |
apply (tactic {* Quotient_Tacs.quotient_tac @{context} 1 *}) |
|
193 |
apply (rule list_rel_refl) |
|
194 |
apply (metis equivp_def fset_equivp) |
|
819
f5c9ddc18246
Reduced the proof to two simple but not obvious to prove facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
818
diff
changeset
|
195 |
apply (erule conjE)+ |
f5c9ddc18246
Reduced the proof to two simple but not obvious to prove facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
818
diff
changeset
|
196 |
apply (subgoal_tac "map abs_fset r \<approx>1 map abs_fset s") |
f5c9ddc18246
Reduced the proof to two simple but not obvious to prove facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
818
diff
changeset
|
197 |
prefer 2 |
f5c9ddc18246
Reduced the proof to two simple but not obvious to prove facts.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
818
diff
changeset
|
198 |
apply (metis Quotient_def Quotient_fset equivp_reflp fset_equivp) |
820
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
199 |
apply (rule map_rep_ok) |
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
200 |
apply (assumption) |
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
201 |
done |
816 | 202 |
|
818
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
203 |
lemma quotient_compose_list: |
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
204 |
shows "Quotient ((list_rel op \<approx>1) OO (op \<approx>1) OO (list_rel op \<approx>1)) |
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
205 |
(abs_fset \<circ> (map abs_fset)) ((map rep_fset) \<circ> rep_fset)" |
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
206 |
unfolding Quotient_def comp_def |
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
207 |
apply (rule)+ |
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
208 |
apply (simp add: abs_o_rep[OF Quotient_fset] id_simps Quotient_abs_rep[OF Quotient_fset]) |
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
209 |
apply (rule) |
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
210 |
apply (rule) |
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
211 |
apply (rule) |
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
212 |
apply (rule list_rel_refl) |
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
213 |
apply (metis equivp_def fset_equivp) |
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
214 |
apply (rule) |
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
215 |
apply (rule equivp_reflp[OF fset_equivp]) |
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
216 |
apply (rule list_rel_refl) |
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
217 |
apply (metis equivp_def fset_equivp) |
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
218 |
apply rule |
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
219 |
apply rule |
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
220 |
apply(rule quotient_compose_list_pre) |
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
221 |
done |
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
222 |
|
820
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
223 |
lemma quotient_compose_list_gen: |
810
f73e2f5f17b2
Struggling with composition
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
809
diff
changeset
|
224 |
assumes a1: "Quotient (op \<approx>1) abs_fset rep_fset" |
820
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
225 |
and a2: "Quotient r2 abs2 rep2" "equivp r2" |
818
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
226 |
shows "Quotient ((list_rel r2) OO (op \<approx>1) OO (list_rel r2)) |
811 | 227 |
(abs_fset \<circ> (map abs2)) ((map rep2) \<circ> rep_fset)" |
812 | 228 |
unfolding Quotient_def comp_def |
229 |
apply (rule)+ |
|
820
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
230 |
apply (simp add: abs_o_rep[OF a2(1)] id_simps Quotient_abs_rep[OF Quotient_fset]) |
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
231 |
apply (rule) |
812 | 232 |
apply (rule) |
233 |
apply (rule) |
|
820
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
234 |
apply (rule list_rel_refl) |
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
235 |
apply (metis a2(2) equivp_def) |
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
236 |
apply (rule) |
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
237 |
apply (rule equivp_reflp[OF fset_equivp]) |
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
238 |
apply (rule list_rel_refl) |
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
239 |
apply (metis a2(2) equivp_def) |
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
240 |
apply rule |
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
241 |
apply rule |
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
242 |
apply(rule quotient_compose_list_gen_pre) |
162e38c14f24
The working proof of the special case.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
819
diff
changeset
|
243 |
done |
809
e9e0d1810217
Trying to state composition quotient.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
808
diff
changeset
|
244 |
|
818
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
245 |
(* This is the general statement but the types are wrong as in following exanples *) |
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
246 |
lemma quotient_compose_general: |
810
f73e2f5f17b2
Struggling with composition
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
809
diff
changeset
|
247 |
assumes a2: "Quotient r1 abs1 rep_fset" |
f73e2f5f17b2
Struggling with composition
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
809
diff
changeset
|
248 |
and "Quotient r2 abs2 rep2" |
818
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
249 |
shows "Quotient ((list_rel r2) OO r1 OO (list_rel r2)) |
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
250 |
(abs1 \<circ> (map abs2)) ((map rep2) \<circ> rep_fset)" |
810
f73e2f5f17b2
Struggling with composition
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
809
diff
changeset
|
251 |
sorry |
f73e2f5f17b2
Struggling with composition
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
809
diff
changeset
|
252 |
|
818
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
253 |
thm quotient_compose_ok [OF Quotient_fset] |
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
254 |
thm quotient_compose_general[OF Quotient_fset] |
810
f73e2f5f17b2
Struggling with composition
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
809
diff
changeset
|
255 |
|
818
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
256 |
thm quotient_compose_ok [OF Quotient_fset Quotient_fset] |
817
11a23fe266c4
cleaning in AbsRepTest.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
816
diff
changeset
|
257 |
(* Doesn't work: *) |
818
9ab49dc166d6
More cleaning and commenting AbsRepTest. Now tests work; just slow.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
817
diff
changeset
|
258 |
(* thm quotient_compose_general[OF Quotient_fset Quotient_fset] *) |
779
3b21b24a5fb6
corrected map declarations for Sum and Prod; moved absrep_fun examples in separate file
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
259 |
|
809
e9e0d1810217
Trying to state composition quotient.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
808
diff
changeset
|
260 |
end |