author | Cezary Kaliszyk <kaliszyk@in.tum.de> |
Wed, 26 May 2010 16:28:35 +0200 | |
changeset 2189 | 029bd37d010a |
parent 2188 | 57972032e20e |
child 2190 | 0aeb0ea71ef1 |
permissions | -rw-r--r-- |
1975
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
1 |
(*<*) |
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
2 |
theory Paper |
2183 | 3 |
imports "Quotient" |
1975
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
4 |
"LaTeXsugar" |
2186
762a739c9eb4
added FSet to the correct paper
Christian Urban <urbanc@in.tum.de>
parents:
2183
diff
changeset
|
5 |
"../Nominal/FSet" |
1975
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
6 |
begin |
1994 | 7 |
|
8 |
notation (latex output) |
|
2182 | 9 |
rel_conj ("_ OOO _" [53, 53] 52) |
10 |
and |
|
11 |
fun_map ("_ ---> _" [51, 51] 50) |
|
12 |
and |
|
1994 | 13 |
fun_rel ("_ ===> _" [51, 51] 50) |
2188 | 14 |
and |
15 |
list_eq (infix "\<approx>" 50) (* Not sure if we want this notation...? *) |
|
1994 | 16 |
|
2182 | 17 |
ML {* |
18 |
fun nth_conj n (_, r) = nth (HOLogic.dest_conj r) n; |
|
19 |
fun style_lhs_rhs proj = Scan.succeed (fn ctxt => fn t => |
|
20 |
let |
|
21 |
val concl = |
|
22 |
Object_Logic.drop_judgment (ProofContext.theory_of ctxt) (Logic.strip_imp_concl t) |
|
23 |
in |
|
24 |
case concl of (_ $ l $ r) => proj (l, r) |
|
25 |
| _ => error ("Binary operator expected in term: " ^ Syntax.string_of_term ctxt concl) |
|
26 |
end); |
|
27 |
*} |
|
28 |
setup {* |
|
29 |
Term_Style.setup "rhs1" (style_lhs_rhs (nth_conj 0)) #> |
|
30 |
Term_Style.setup "rhs2" (style_lhs_rhs (nth_conj 1)) #> |
|
31 |
Term_Style.setup "rhs3" (style_lhs_rhs (nth_conj 2)) |
|
32 |
*} |
|
1975
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
33 |
(*>*) |
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
34 |
|
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
35 |
section {* Introduction *} |
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
36 |
|
2102
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
37 |
text {* |
2103
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
38 |
{\hfill quote by Larry}\bigskip |
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
39 |
|
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
40 |
\noindent |
2102
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
41 |
Isabelle is a generic theorem prover in which many logics can be implemented. |
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
42 |
The most widely used one, however, is |
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
43 |
Higher-Order Logic (HOL). This logic consists of a small number of |
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
44 |
axioms and inference |
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
45 |
rules over a simply-typed term-language. Safe reasoning in HOL is ensured by two very restricted |
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
46 |
mechanisms for extending the logic: one is the definition of new constants |
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
47 |
in terms of existing ones; the other is the introduction of new types |
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
48 |
by identifying non-empty subsets in existing types. It is well understood |
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
49 |
to use both mechanism for dealing with quotient constructions in HOL (cite Larry). |
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
50 |
For example the integers in Isabelle/HOL are constructed by a quotient construction over |
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
51 |
the type @{typ "nat \<times> nat"} and the equivalence relation |
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
52 |
|
2182 | 53 |
% I would avoid substraction for natural numbers. |
54 |
||
2102
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
55 |
@{text [display] "(n\<^isub>1, n\<^isub>2) \<approx> (m\<^isub>1, m\<^isub>2) \<equiv> n\<^isub>1 - n \<^isub>2 = m\<^isub>1 - m \<^isub>2"} |
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
56 |
|
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
57 |
\noindent |
2103
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
58 |
Similarly one can construct the type of finite sets by quotienting lists |
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
59 |
according to the equivalence relation |
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
60 |
|
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
61 |
@{text [display] "xs \<approx> ys \<equiv> (\<forall>x. x \<in> xs \<longleftrightarrow> x \<in> ys)"} |
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
62 |
|
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
63 |
\noindent |
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
64 |
where @{text "\<in>"} stands for membership in a list. |
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
65 |
|
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
66 |
The problem is that in order to start reasoning about, for example integers, |
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
67 |
definitions and theorems need to be transferred, or \emph{lifted}, |
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
68 |
from the ``raw'' type @{typ "nat \<times> nat"} to the quotient type @{typ int}. |
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
69 |
This lifting usually requires a lot of tedious reasoning effort. |
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
70 |
The purpose of a \emph{quotient package} is to ease the lifting and automate |
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
71 |
the reasoning involved as much as possible. Such a package is a central |
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
72 |
component of the new version of Nominal Isabelle where representations |
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
73 |
of alpha-equated terms are constructed according to specifications given by |
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
74 |
the user. |
2102
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
75 |
|
2103
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
76 |
In the context of HOL, there have been several quotient packages (...). The |
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
77 |
most notable is the one by Homeier (...) implemented in HOL4. However, what is |
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
78 |
surprising, none of them can deal compositions of quotients, for example with |
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
79 |
lifting theorems about @{text "concat"}: |
2102
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
80 |
|
2183 | 81 |
@{thm concat.simps(1)}\\ |
82 |
@{thm concat.simps(2)[no_vars]} |
|
83 |
||
2103
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
84 |
\noindent |
2188 | 85 |
One would like to lift this definition to the operation: |
86 |
||
87 |
@{thm fconcat_empty[no_vars]}\\ |
|
88 |
@{thm fconcat_insert[no_vars]} |
|
2102
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
89 |
|
2103
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
90 |
\noindent |
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
91 |
What is special about this operation is that we have as input |
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
92 |
lists of lists which after lifting turn into finite sets of finite |
e08e3c29dbc0
a bit for the introduction of the q-paper
Christian Urban <urbanc@in.tum.de>
parents:
2102
diff
changeset
|
93 |
sets. |
2102
200954544cae
added some of the quotient literature; a bit more to the qpaper
Christian Urban <urbanc@in.tum.de>
parents:
1994
diff
changeset
|
94 |
*} |
1975
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
95 |
|
1978 | 96 |
subsection {* Contributions *} |
1975
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
97 |
|
1978 | 98 |
text {* |
99 |
We present the detailed lifting procedure, which was not shown before. |
|
100 |
||
101 |
The quotient package presented in this paper has the following |
|
102 |
advantages over existing packages: |
|
103 |
\begin{itemize} |
|
104 |
||
105 |
\item We define quotient composition, function map composition and |
|
106 |
relation map composition. This lets lifting polymorphic types with |
|
107 |
subtypes quotiented as well. We extend the notions of |
|
2188 | 108 |
respectfulness and preservation to cope with quotient |
1978 | 109 |
composition. |
110 |
||
111 |
\item We allow lifting only some occurrences of quotiented |
|
112 |
types. Rsp/Prs extended. (used in nominal) |
|
113 |
||
114 |
\item The quotient package is very modular. Definitions can be added |
|
115 |
separately, rsp and prs can be proved separately and theorems can |
|
2182 | 116 |
be lifted on a need basis. (useful with type-classes). |
1978 | 117 |
|
118 |
\item Can be used both manually (attribute, separate tactics, |
|
119 |
rsp/prs databases) and programatically (automated definition of |
|
120 |
lifted constants, the rsp proof obligations and theorem statement |
|
121 |
translation according to given quotients). |
|
122 |
||
123 |
\end{itemize} |
|
124 |
*} |
|
125 |
||
126 |
section {* Quotient Type*} |
|
127 |
||
2182 | 128 |
|
129 |
||
1978 | 130 |
text {* |
2182 | 131 |
In this section we present the definitions of a quotient that follow |
132 |
those by Homeier, the proofs can be found there. |
|
133 |
||
134 |
\begin{definition}[Quotient] |
|
135 |
A relation $R$ with an abstraction function $Abs$ |
|
136 |
and a representation function $Rep$ is a \emph{quotient} |
|
137 |
if and only if: |
|
1978 | 138 |
|
2182 | 139 |
\begin{enumerate} |
140 |
\item @{thm (rhs1) Quotient_def[of "R", no_vars]} |
|
141 |
\item @{thm (rhs2) Quotient_def[of "R", no_vars]} |
|
142 |
\item @{thm (rhs3) Quotient_def[of "R", no_vars]} |
|
143 |
\end{enumerate} |
|
144 |
||
145 |
\end{definition} |
|
1978 | 146 |
|
2188 | 147 |
\begin{definition}[Relation map and function map]\\ |
2182 | 148 |
@{thm fun_rel_def[no_vars]}\\ |
149 |
@{thm fun_map_def[no_vars]} |
|
150 |
\end{definition} |
|
151 |
||
152 |
The main theorems for building higher order quotients is: |
|
153 |
\begin{lemma}[Function Quotient] |
|
154 |
If @{thm (prem 1) fun_quotient[no_vars]} and @{thm (prem 2) fun_quotient[no_vars]} |
|
155 |
then @{thm (concl) fun_quotient[no_vars]} |
|
156 |
\end{lemma} |
|
157 |
||
1978 | 158 |
*} |
159 |
||
160 |
section {* Constants *} |
|
161 |
||
2188 | 162 |
(* Say more about containers? *) |
2182 | 163 |
|
1978 | 164 |
text {* |
2182 | 165 |
|
2188 | 166 |
To define a constant on the lifted type, an aggregate abstraction |
167 |
function is applied to the raw constant. Below we describe the operation |
|
168 |
that generates |
|
169 |
an aggregate @{term "Abs"} or @{term "Rep"} function given the |
|
170 |
compound raw type and the compound quotient type. |
|
171 |
This operation will also be used in translations of theorem statements |
|
172 |
and in the lifting procedure. |
|
173 |
||
174 |
The operation is additionally able to descend into types for which |
|
175 |
maps are known. Such maps for most common types (list, pair, sum, |
|
176 |
option, \ldots) are described in Homeier, and our algorithm uses the |
|
177 |
same kind of maps. Given the raw compound type and the quotient compound |
|
178 |
type the Rep/Abs algorithm does: |
|
2182 | 179 |
|
180 |
\begin{itemize} |
|
181 |
\item For equal types or free type variables return identity. |
|
182 |
||
183 |
\item For function types recurse, change the Rep/Abs flag to |
|
184 |
the opposite one for the domain type and compose the |
|
185 |
results with @{term "fun_map"}. |
|
186 |
||
187 |
\item For equal type constructors use the appropriate map function |
|
188 |
applied to the results for the arguments. |
|
189 |
||
2188 | 190 |
\item For unequal type constructors, look in the quotients information |
2189 | 191 |
for a quotient type that matches the type constructor, and instantiate |
192 |
the raw type |
|
2188 | 193 |
appropriately getting back an instantiation environment. We apply |
194 |
the environment to the arguments and recurse composing it with the |
|
195 |
aggregate map function. |
|
2182 | 196 |
\end{itemize} |
197 |
||
2188 | 198 |
The first three points above are identical to the algorithm present in |
199 |
in Homeier's HOL implementation, below is the definition of @{term fconcat} |
|
200 |
that shows the last step: |
|
2182 | 201 |
|
2188 | 202 |
@{thm fconcat_def[no_vars]} |
203 |
||
204 |
The aggregate @{term Abs} function takes a finite set of finite sets |
|
205 |
and applies @{term "map rep_fset"} composed with @{term rep_fset} to |
|
206 |
its input, obtaining a list of lists, passes the result to @{term concat} |
|
207 |
obtaining a list and applies @{term abs_fset} obtaining the composed |
|
208 |
finite set. |
|
209 |
*} |
|
210 |
||
211 |
subsection {* Respectfulness *} |
|
212 |
||
213 |
text {* |
|
214 |
||
215 |
A respectfulness lemma for a constant states that the equivalence |
|
216 |
class returned by this constant depends only on the equivalence |
|
217 |
classes of the arguments applied to the constant. This can be |
|
218 |
expressed in terms of an aggregate relation between the constant |
|
219 |
and itself, for example the respectfullness for @{term "append"} |
|
220 |
can be stated as: |
|
221 |
||
222 |
@{thm append_rsp[no_vars]} |
|
2182 | 223 |
|
2188 | 224 |
Which is equivalent to: |
225 |
||
226 |
@{thm append_rsp[no_vars,simplified fun_rel_def]} |
|
227 |
||
228 |
Below we show the algorithm for finding the aggregate relation. |
|
229 |
This algorithm uses |
|
230 |
the relation composition which we define as: |
|
231 |
||
232 |
\begin{definition}[Composition of Relations] |
|
233 |
@{abbrev "rel_conj R1 R2"} |
|
234 |
\end{definition} |
|
235 |
||
236 |
Given an aggregate raw type and quotient type: |
|
237 |
||
238 |
\begin{itemize} |
|
2189 | 239 |
\item For equal types or free type variables return equality |
240 |
||
241 |
\item For equal type constructors use the appropriate rel |
|
242 |
function applied to the results for the argument pairs |
|
243 |
||
244 |
\item For unequal type constructors, look in the quotients information |
|
245 |
for a quotient type that matches the type constructor, and instantiate |
|
246 |
the type appropriately getting back an instantiation environment. We |
|
247 |
apply the environment to the arguments and recurse composing it with |
|
248 |
the aggregate relation function. |
|
249 |
||
2188 | 250 |
\end{itemize} |
251 |
||
2189 | 252 |
Again, the the behaviour of our algorithm in the last situation is |
253 |
novel, so lets look at the example of respectfullness for @{term concat}: |
|
254 |
||
255 |
@{thm concat_rsp} |
|
256 |
||
257 |
This means... |
|
258 |
||
259 |
*} |
|
260 |
||
261 |
subsection {* Preservation *} |
|
262 |
||
263 |
section {* Lifting Theorems *} |
|
264 |
||
265 |
text{* |
|
2188 | 266 |
Aggregate @{term "Rep"} and @{term "Abs"} functions are also |
267 |
present in composition quotients. An example composition quotient |
|
268 |
theorem that needs to be proved is the one needed to lift theorems |
|
269 |
about concat: |
|
270 |
||
271 |
@{thm quotient_compose_list[no_vars]} |
|
1978 | 272 |
*} |
273 |
||
1994 | 274 |
text {* TBD *} |
275 |
||
276 |
text {* Why providing a statement to prove is necessary is some cases *} |
|
277 |
||
278 |
subsection {* Regularization *} |
|
279 |
||
280 |
text {* |
|
281 |
Transformation of the theorem statement: |
|
282 |
\begin{itemize} |
|
283 |
\item Quantifiers and abstractions involving raw types replaced by bounded ones. |
|
284 |
\item Equalities involving raw types replaced by bounded ones. |
|
285 |
\end{itemize} |
|
286 |
||
287 |
The procedure. |
|
288 |
||
289 |
Example of non-regularizable theorem ($0 = 1$). |
|
290 |
||
2152
d7d4491535a9
starting bibliography
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2103
diff
changeset
|
291 |
Separtion of regularization from injection thanks to the following 2 lemmas: |
1994 | 292 |
\begin{lemma} |
293 |
If @{term R2} is an equivalence relation, then: |
|
294 |
\begin{eqnarray} |
|
295 |
@{thm (rhs) ball_reg_eqv_range[no_vars]} & = & @{thm (lhs) ball_reg_eqv_range[no_vars]}\\ |
|
296 |
@{thm (rhs) bex_reg_eqv_range[no_vars]} & = & @{thm (lhs) bex_reg_eqv_range[no_vars]} |
|
297 |
\end{eqnarray} |
|
298 |
\end{lemma} |
|
299 |
||
300 |
*} |
|
301 |
||
302 |
subsection {* Injection *} |
|
303 |
||
304 |
subsection {* Cleaning *} |
|
305 |
||
306 |
text {* Preservation of quantifiers, abstractions, relations, quotient-constants |
|
307 |
(definitions) and user given constant preservation lemmas *} |
|
308 |
||
309 |
section {* Examples *} |
|
310 |
||
1978 | 311 |
section {* Related Work *} |
312 |
||
313 |
text {* |
|
314 |
\begin{itemize} |
|
315 |
||
2152
d7d4491535a9
starting bibliography
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2103
diff
changeset
|
316 |
\item Peter Homeier's package~\cite{Homeier05} (and related work from there) |
d7d4491535a9
starting bibliography
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2103
diff
changeset
|
317 |
\item John Harrison's one~\cite{harrison-thesis} is the first one to lift theorems |
d7d4491535a9
starting bibliography
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2103
diff
changeset
|
318 |
but only first order. |
1978 | 319 |
|
2152
d7d4491535a9
starting bibliography
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2103
diff
changeset
|
320 |
\item PVS~\cite{PVS:Interpretations} |
d7d4491535a9
starting bibliography
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2103
diff
changeset
|
321 |
\item MetaPRL~\cite{Nogin02} |
d7d4491535a9
starting bibliography
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2103
diff
changeset
|
322 |
\item Manually defined quotients in Isabelle/HOL Library (Markus's Quotient\_Type, |
d7d4491535a9
starting bibliography
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2103
diff
changeset
|
323 |
Dixon's FSet, \ldots) |
1978 | 324 |
|
325 |
\item Oscar Slotosch defines quotient-type automatically but no |
|
2152
d7d4491535a9
starting bibliography
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2103
diff
changeset
|
326 |
lifting~\cite{Slotosch97}. |
1978 | 327 |
|
328 |
\item PER. And how to avoid it. |
|
329 |
||
2152
d7d4491535a9
starting bibliography
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2103
diff
changeset
|
330 |
\item Necessity of Hilbert Choice op and Larry's quotients~\cite{Paulson06} |
1978 | 331 |
|
2152
d7d4491535a9
starting bibliography
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
2103
diff
changeset
|
332 |
\item Setoids in Coq and \cite{ChicliPS02} |
1978 | 333 |
|
334 |
\end{itemize} |
|
335 |
*} |
|
1975
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
336 |
|
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
337 |
(*<*) |
b1281a0051ae
added stub for quotient paper; call with isabelle make qpaper
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
338 |
end |
1978 | 339 |
(*>*) |