author | Christian Urban <urbanc@in.tum.de> |
Fri, 09 Jul 2010 10:00:37 +0100 | |
changeset 2348 | 09b476c20fe1 |
parent 2347 | 9807d30c0e54 |
child 2349 | eaf5209669de |
permissions | -rw-r--r-- |
754
b85875d65b10
added a paper for possible notes
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
1 |
(*<*) |
b85875d65b10
added a paper for possible notes
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
2 |
theory Paper |
2330
8728f7990f6d
merged cezary's changes
Christian Urban <urbanc@in.tum.de>
parents:
2218
diff
changeset
|
3 |
imports "../Nominal/NewParser" "LaTeXsugar" |
754
b85875d65b10
added a paper for possible notes
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
4 |
begin |
1493
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
5 |
|
1657 | 6 |
consts |
7 |
fv :: "'a \<Rightarrow> 'b" |
|
1728 | 8 |
abs_set :: "'a \<Rightarrow> 'b \<Rightarrow> 'c" |
9 |
alpha_bn :: "'a \<Rightarrow> 'a \<Rightarrow> bool" |
|
1763 | 10 |
abs_set2 :: "'a \<Rightarrow> perm \<Rightarrow> 'b \<Rightarrow> 'c" |
1796
5165c350ee1a
clarified comment about distinct lists in th efuture work section
Christian Urban <urbanc@in.tum.de>
parents:
1775
diff
changeset
|
11 |
Abs_dist :: "'a \<Rightarrow> 'b \<Rightarrow> 'c" |
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
12 |
Abs_print :: "'a \<Rightarrow> 'b \<Rightarrow> 'c" |
1657 | 13 |
|
14 |
definition |
|
15 |
"equal \<equiv> (op =)" |
|
16 |
||
1493
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
17 |
notation (latex output) |
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
18 |
swap ("'(_ _')" [1000, 1000] 1000) and |
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
19 |
fresh ("_ # _" [51, 51] 50) and |
1694
3bf0fddb7d44
clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents:
1693
diff
changeset
|
20 |
fresh_star ("_ #\<^sup>* _" [51, 51] 50) and |
1493
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
21 |
supp ("supp _" [78] 73) and |
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
22 |
uminus ("-_" [78] 73) and |
1657 | 23 |
If ("if _ then _ else _" 10) and |
2341 | 24 |
alpha_gen ("_ \<approx>\<^raw:\,\raisebox{-1pt}{\makebox[0mm][l]{$_{\textit{set}}$}}>\<^bsup>_, _, _\<^esup> _") and |
25 |
alpha_lst ("_ \<approx>\<^raw:\,\raisebox{-1pt}{\makebox[0mm][l]{$_{\textit{list}}$}}>\<^bsup>_, _, _\<^esup> _") and |
|
26 |
alpha_res ("_ \<approx>\<^raw:\,\raisebox{-1pt}{\makebox[0mm][l]{$_{\textit{res}}$}}>\<^bsup>_, _, _\<^esup> _") and |
|
1657 | 27 |
abs_set ("_ \<approx>\<^raw:{$\,_{\textit{abs\_set}}$}> _") and |
1763 | 28 |
abs_set2 ("_ \<approx>\<^raw:\raisebox{-1pt}{\makebox[0mm][l]{$\,_{\textit{list}}$}}>\<^bsup>_\<^esup> _") and |
2347 | 29 |
fv ("fa'(_')" [100] 100) and |
1657 | 30 |
equal ("=") and |
31 |
alpha_abs ("_ \<approx>\<^raw:{$\,_{\textit{abs\_set}}$}> _") and |
|
2331
f170ee51eed2
some slight polishing on the paper
Christian Urban <urbanc@in.tum.de>
parents:
2330
diff
changeset
|
32 |
Abs ("[_]\<^bsub>set\<^esub>._" [20, 101] 999) and |
f170ee51eed2
some slight polishing on the paper
Christian Urban <urbanc@in.tum.de>
parents:
2330
diff
changeset
|
33 |
Abs_lst ("[_]\<^bsub>list\<^esub>._") and |
f170ee51eed2
some slight polishing on the paper
Christian Urban <urbanc@in.tum.de>
parents:
2330
diff
changeset
|
34 |
Abs_dist ("[_]\<^bsub>#list\<^esub>._") and |
f170ee51eed2
some slight polishing on the paper
Christian Urban <urbanc@in.tum.de>
parents:
2330
diff
changeset
|
35 |
Abs_res ("[_]\<^bsub>res\<^esub>._") and |
f170ee51eed2
some slight polishing on the paper
Christian Urban <urbanc@in.tum.de>
parents:
2330
diff
changeset
|
36 |
Abs_print ("_\<^bsub>set\<^esub>._") and |
1703 | 37 |
Cons ("_::_" [78,77] 73) and |
1728 | 38 |
supp_gen ("aux _" [1000] 10) and |
39 |
alpha_bn ("_ \<approx>bn _") |
|
754
b85875d65b10
added a paper for possible notes
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
40 |
(*>*) |
b85875d65b10
added a paper for possible notes
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
41 |
|
1657 | 42 |
|
754
b85875d65b10
added a paper for possible notes
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
43 |
section {* Introduction *} |
b85875d65b10
added a paper for possible notes
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
44 |
|
b85875d65b10
added a paper for possible notes
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
45 |
text {* |
1739 | 46 |
|
2345 | 47 |
So far, Nominal Isabelle provided a mechanism for constructing |
2343 | 48 |
$\alpha$-equated terms, for example lambda-terms |
1485
c004e7448dca
temporarily disabled tests in Nominal/ROOT
Christian Urban <urbanc@in.tum.de>
parents:
1484
diff
changeset
|
49 |
|
1520
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
50 |
\begin{center} |
1657 | 51 |
@{text "t ::= x | t t | \<lambda>x. t"} |
1520
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
52 |
\end{center} |
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
53 |
|
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
54 |
\noindent |
2341 | 55 |
where free and bound variables have names. For such $\alpha$-equated terms, |
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
56 |
Nominal Isabelle derives automatically a reasoning infrastructure that has |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
57 |
been used successfully in formalisations of an equivalence checking |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
58 |
algorithm for LF \cite{UrbanCheneyBerghofer08}, Typed |
1520
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
59 |
Scheme~\cite{TobinHochstadtFelleisen08}, several calculi for concurrency |
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
60 |
\cite{BengtsonParow09} and a strong normalisation result for cut-elimination |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
61 |
in classical logic \cite{UrbanZhu08}. It has also been used by Pollack for |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
62 |
formalisations in the locally-nameless approach to binding |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
63 |
\cite{SatoPollack10}. |
1520
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
64 |
|
1535
a37c65fe10de
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1528
diff
changeset
|
65 |
However, Nominal Isabelle has fared less well in a formalisation of |
1690 | 66 |
the algorithm W \cite{UrbanNipkow09}, where types and type-schemes are, |
67 |
respectively, of the form |
|
1570 | 68 |
% |
69 |
\begin{equation}\label{tysch} |
|
70 |
\begin{array}{l} |
|
1657 | 71 |
@{text "T ::= x | T \<rightarrow> T"}\hspace{5mm} |
72 |
@{text "S ::= \<forall>{x\<^isub>1,\<dots>, x\<^isub>n}. T"} |
|
1570 | 73 |
\end{array} |
74 |
\end{equation} |
|
1520
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
75 |
|
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
76 |
\noindent |
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
77 |
and the @{text "\<forall>"}-quantification binds a finite (possibly empty) set of |
1550 | 78 |
type-variables. While it is possible to implement this kind of more general |
79 |
binders by iterating single binders, this leads to a rather clumsy |
|
80 |
formalisation of W. The need of iterating single binders is also one reason |
|
81 |
why Nominal Isabelle and similar theorem provers that only provide |
|
82 |
mechanisms for binding single variables have not fared extremely well with the |
|
83 |
more advanced tasks in the POPLmark challenge \cite{challenge05}, because |
|
84 |
also there one would like to bind multiple variables at once. |
|
1520
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
85 |
|
1577 | 86 |
Binding multiple variables has interesting properties that cannot be captured |
2176
5054f170024e
edits from the reviewers
Christian Urban <urbanc@in.tum.de>
parents:
2175
diff
changeset
|
87 |
easily by iterating single binders. For example in the case of type-schemes we do not |
1587 | 88 |
want to make a distinction about the order of the bound variables. Therefore |
2341 | 89 |
we would like to regard the following two type-schemes as $\alpha$-equivalent |
1572 | 90 |
% |
91 |
\begin{equation}\label{ex1} |
|
2346 | 92 |
@{text "\<forall>{x, y}. x \<rightarrow> y \<approx>\<^isub>\<alpha> \<forall>{y, x}. x \<rightarrow> y"} |
1572 | 93 |
\end{equation} |
1520
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
94 |
|
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
95 |
\noindent |
1657 | 96 |
but assuming that @{text x}, @{text y} and @{text z} are distinct variables, |
2341 | 97 |
the following two should \emph{not} be $\alpha$-equivalent |
1572 | 98 |
% |
99 |
\begin{equation}\label{ex2} |
|
1667 | 100 |
@{text "\<forall>{x, y}. x \<rightarrow> y \<notapprox>\<^isub>\<alpha> \<forall>{z}. z \<rightarrow> z"} |
1572 | 101 |
\end{equation} |
1520
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
102 |
|
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
103 |
\noindent |
2341 | 104 |
Moreover, we like to regard type-schemes as $\alpha$-equivalent, if they differ |
1657 | 105 |
only on \emph{vacuous} binders, such as |
1572 | 106 |
% |
107 |
\begin{equation}\label{ex3} |
|
1667 | 108 |
@{text "\<forall>{x}. x \<rightarrow> y \<approx>\<^isub>\<alpha> \<forall>{x, z}. x \<rightarrow> y"} |
1572 | 109 |
\end{equation} |
1485
c004e7448dca
temporarily disabled tests in Nominal/ROOT
Christian Urban <urbanc@in.tum.de>
parents:
1484
diff
changeset
|
110 |
|
1520
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
111 |
\noindent |
1657 | 112 |
where @{text z} does not occur freely in the type. In this paper we will |
2341 | 113 |
give a general binding mechanism and associated notion of $\alpha$-equivalence |
1657 | 114 |
that can be used to faithfully represent this kind of binding in Nominal |
2341 | 115 |
Isabelle. The difficulty of finding the right notion for $\alpha$-equivalence |
1657 | 116 |
can be appreciated in this case by considering that the definition given by |
2331
f170ee51eed2
some slight polishing on the paper
Christian Urban <urbanc@in.tum.de>
parents:
2330
diff
changeset
|
117 |
Leroy in \cite{Leroy92} is incorrect (it omits a side-condition). |
1524 | 118 |
|
2341 | 119 |
However, the notion of $\alpha$-equivalence that is preserved by vacuous |
1657 | 120 |
binders is not always wanted. For example in terms like |
1587 | 121 |
% |
1535
a37c65fe10de
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1528
diff
changeset
|
122 |
\begin{equation}\label{one} |
1657 | 123 |
@{text "\<LET> x = 3 \<AND> y = 2 \<IN> x - y \<END>"} |
1535
a37c65fe10de
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1528
diff
changeset
|
124 |
\end{equation} |
1520
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
125 |
|
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
126 |
\noindent |
2341 | 127 |
we might not care in which order the assignments @{text "x = 3"} and |
128 |
\mbox{@{text "y = 2"}} are given, but it would be unusual to regard |
|
129 |
\eqref{one} as $\alpha$-equivalent with |
|
1587 | 130 |
% |
1520
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
131 |
\begin{center} |
1657 | 132 |
@{text "\<LET> x = 3 \<AND> y = 2 \<AND> z = loop \<IN> x - y \<END>"} |
1520
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
133 |
\end{center} |
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
134 |
|
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
135 |
\noindent |
1550 | 136 |
Therefore we will also provide a separate binding mechanism for cases in |
137 |
which the order of binders does not matter, but the ``cardinality'' of the |
|
1535
a37c65fe10de
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1528
diff
changeset
|
138 |
binders has to agree. |
1520
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
139 |
|
1550 | 140 |
However, we found that this is still not sufficient for dealing with |
141 |
language constructs frequently occurring in programming language |
|
1690 | 142 |
research. For example in @{text "\<LET>"}s containing patterns like |
1587 | 143 |
% |
1535
a37c65fe10de
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1528
diff
changeset
|
144 |
\begin{equation}\label{two} |
1657 | 145 |
@{text "\<LET> (x, y) = (3, 2) \<IN> x - y \<END>"} |
1535
a37c65fe10de
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1528
diff
changeset
|
146 |
\end{equation} |
1520
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
147 |
|
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
148 |
\noindent |
1535
a37c65fe10de
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1528
diff
changeset
|
149 |
we want to bind all variables from the pattern inside the body of the |
a37c65fe10de
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1528
diff
changeset
|
150 |
$\mathtt{let}$, but we also care about the order of these variables, since |
2341 | 151 |
we do not want to regard \eqref{two} as $\alpha$-equivalent with |
1587 | 152 |
% |
1520
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
153 |
\begin{center} |
1657 | 154 |
@{text "\<LET> (y, x) = (3, 2) \<IN> x - y \<END>"} |
1520
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
155 |
\end{center} |
2218
502eaa199726
added to the popl-paper a pointer to work by Altenkirch
Christian Urban <urbanc@in.tum.de>
parents:
2203
diff
changeset
|
156 |
% |
1520
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
157 |
\noindent |
1657 | 158 |
As a result, we provide three general binding mechanisms each of which binds |
159 |
multiple variables at once, and let the user chose which one is intended |
|
1711 | 160 |
when formalising a term-calculus. |
1485
c004e7448dca
temporarily disabled tests in Nominal/ROOT
Christian Urban <urbanc@in.tum.de>
parents:
1484
diff
changeset
|
161 |
|
1657 | 162 |
By providing these general binding mechanisms, however, we have to work |
163 |
around a problem that has been pointed out by Pottier \cite{Pottier06} and |
|
164 |
Cheney \cite{Cheney05}: in @{text "\<LET>"}-constructs of the form |
|
1587 | 165 |
% |
1520
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
166 |
\begin{center} |
1657 | 167 |
@{text "\<LET> x\<^isub>1 = t\<^isub>1 \<AND> \<dots> \<AND> x\<^isub>n = t\<^isub>n \<IN> s \<END>"} |
1520
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
168 |
\end{center} |
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
169 |
|
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
170 |
\noindent |
1657 | 171 |
which bind all the @{text "x\<^isub>i"} in @{text s}, we might not care |
172 |
about the order in which the @{text "x\<^isub>i = t\<^isub>i"} are given, |
|
173 |
but we do care about the information that there are as many @{text |
|
174 |
"x\<^isub>i"} as there are @{text "t\<^isub>i"}. We lose this information if |
|
175 |
we represent the @{text "\<LET>"}-constructor by something like |
|
1587 | 176 |
% |
1523
eb95360d6ac6
another little bit for the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1520
diff
changeset
|
177 |
\begin{center} |
2341 | 178 |
@{text "\<LET> (\<lambda>x\<^isub>1\<dots>x\<^isub>n . s) [t\<^isub>1,\<dots>,t\<^isub>n]"} |
1523
eb95360d6ac6
another little bit for the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1520
diff
changeset
|
179 |
\end{center} |
1520
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
180 |
|
1523
eb95360d6ac6
another little bit for the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1520
diff
changeset
|
181 |
\noindent |
2341 | 182 |
where the notation @{text "\<lambda>_ . _"} indicates that the list of @{text |
183 |
"x\<^isub>i"} becomes bound in @{text s}. In this representation the term |
|
184 |
\mbox{@{text "\<LET> (\<lambda>x . s) [t\<^isub>1, t\<^isub>2]"}} is a perfectly legal |
|
185 |
instance, but the lengths of the two lists do not agree. To exclude such |
|
186 |
terms, additional predicates about well-formed terms are needed in order to |
|
187 |
ensure that the two lists are of equal length. This can result in very messy |
|
188 |
reasoning (see for example~\cite{BengtsonParow09}). To avoid this, we will |
|
189 |
allow type specifications for @{text "\<LET>"}s as follows |
|
1587 | 190 |
% |
1528
d6ee4a1b34ce
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1524
diff
changeset
|
191 |
\begin{center} |
d6ee4a1b34ce
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1524
diff
changeset
|
192 |
\begin{tabular}{r@ {\hspace{2mm}}r@ {\hspace{2mm}}l} |
1657 | 193 |
@{text trm} & @{text "::="} & @{text "\<dots>"}\\ |
2341 | 194 |
& @{text "|"} & @{text "\<LET> as::assn s::trm"}\hspace{4mm} |
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
195 |
\isacommand{bind} @{text "bn(as)"} \isacommand{in} @{text "s"}\\[1mm] |
1657 | 196 |
@{text assn} & @{text "::="} & @{text "\<ANIL>"}\\ |
2341 | 197 |
& @{text "|"} & @{text "\<ACONS> name trm assn"} |
1528
d6ee4a1b34ce
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1524
diff
changeset
|
198 |
\end{tabular} |
d6ee4a1b34ce
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1524
diff
changeset
|
199 |
\end{center} |
d6ee4a1b34ce
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1524
diff
changeset
|
200 |
|
d6ee4a1b34ce
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1524
diff
changeset
|
201 |
\noindent |
1657 | 202 |
where @{text assn} is an auxiliary type representing a list of assignments |
203 |
and @{text bn} an auxiliary function identifying the variables to be bound |
|
1687 | 204 |
by the @{text "\<LET>"}. This function can be defined by recursion over @{text |
1657 | 205 |
assn} as follows |
1528
d6ee4a1b34ce
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1524
diff
changeset
|
206 |
|
d6ee4a1b34ce
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1524
diff
changeset
|
207 |
\begin{center} |
1657 | 208 |
@{text "bn(\<ANIL>) ="} @{term "{}"} \hspace{5mm} |
209 |
@{text "bn(\<ACONS> x t as) = {x} \<union> bn(as)"} |
|
1528
d6ee4a1b34ce
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1524
diff
changeset
|
210 |
\end{center} |
1523
eb95360d6ac6
another little bit for the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1520
diff
changeset
|
211 |
|
1528
d6ee4a1b34ce
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1524
diff
changeset
|
212 |
\noindent |
1550 | 213 |
The scope of the binding is indicated by labels given to the types, for |
1657 | 214 |
example @{text "s::trm"}, and a binding clause, in this case |
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
215 |
\isacommand{bind} @{text "bn(as)"} \isacommand{in} @{text "s"}. This binding |
2346 | 216 |
clause states that all the names the function @{text |
217 |
"bn(as)"} returns should be bound in @{text s}. This style of specifying terms and bindings is heavily |
|
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
218 |
inspired by the syntax of the Ott-tool \cite{ott-jfp}. |
1657 | 219 |
|
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
220 |
However, we will not be able to cope with all specifications that are |
2176
5054f170024e
edits from the reviewers
Christian Urban <urbanc@in.tum.de>
parents:
2175
diff
changeset
|
221 |
allowed by Ott. One reason is that Ott lets the user specify ``empty'' |
1617
99cee15cb5ff
more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents:
1613
diff
changeset
|
222 |
types like |
1570 | 223 |
|
224 |
\begin{center} |
|
1657 | 225 |
@{text "t ::= t t | \<lambda>x. t"} |
1570 | 226 |
\end{center} |
227 |
||
228 |
\noindent |
|
1617
99cee15cb5ff
more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents:
1613
diff
changeset
|
229 |
where no clause for variables is given. Arguably, such specifications make |
99cee15cb5ff
more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents:
1613
diff
changeset
|
230 |
some sense in the context of Coq's type theory (which Ott supports), but not |
99cee15cb5ff
more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents:
1613
diff
changeset
|
231 |
at all in a HOL-based environment where every datatype must have a non-empty |
1719
0c3c66f5c0e7
removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents:
1717
diff
changeset
|
232 |
set-theoretic model \cite{Berghofer99}. |
1570 | 233 |
|
234 |
Another reason is that we establish the reasoning infrastructure |
|
2341 | 235 |
for $\alpha$-\emph{equated} terms. In contrast, Ott produces a reasoning |
1570 | 236 |
infrastructure in Isabelle/HOL for |
2341 | 237 |
\emph{non}-$\alpha$-equated, or ``raw'', terms. While our $\alpha$-equated terms |
1556 | 238 |
and the raw terms produced by Ott use names for bound variables, |
2341 | 239 |
there is a key difference: working with $\alpha$-equated terms means, for example, |
1693 | 240 |
that the two type-schemes |
1528
d6ee4a1b34ce
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1524
diff
changeset
|
241 |
|
d6ee4a1b34ce
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1524
diff
changeset
|
242 |
\begin{center} |
1667 | 243 |
@{text "\<forall>{x}. x \<rightarrow> y = \<forall>{x, z}. x \<rightarrow> y"} |
1528
d6ee4a1b34ce
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1524
diff
changeset
|
244 |
\end{center} |
d6ee4a1b34ce
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1524
diff
changeset
|
245 |
|
d6ee4a1b34ce
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1524
diff
changeset
|
246 |
\noindent |
2341 | 247 |
are not just $\alpha$-equal, but actually \emph{equal}! As a result, we can |
248 |
only support specifications that make sense on the level of $\alpha$-equated |
|
1657 | 249 |
terms (offending specifications, which for example bind a variable according |
250 |
to a variable bound somewhere else, are not excluded by Ott, but we have |
|
1687 | 251 |
to). |
252 |
||
2341 | 253 |
Our insistence on reasoning with $\alpha$-equated terms comes from the |
1657 | 254 |
wealth of experience we gained with the older version of Nominal Isabelle: |
2341 | 255 |
for non-trivial properties, reasoning with $\alpha$-equated terms is much |
1657 | 256 |
easier than reasoning with raw terms. The fundamental reason for this is |
257 |
that the HOL-logic underlying Nominal Isabelle allows us to replace |
|
258 |
``equals-by-equals''. In contrast, replacing |
|
2341 | 259 |
``$\alpha$-equals-by-$\alpha$-equals'' in a representation based on raw terms |
1657 | 260 |
requires a lot of extra reasoning work. |
1535
a37c65fe10de
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1528
diff
changeset
|
261 |
|
2341 | 262 |
Although in informal settings a reasoning infrastructure for $\alpha$-equated |
1657 | 263 |
terms is nearly always taken for granted, establishing it automatically in |
264 |
the Isabelle/HOL theorem prover is a rather non-trivial task. For every |
|
265 |
specification we will need to construct a type containing as elements the |
|
2341 | 266 |
$\alpha$-equated terms. To do so, we use the standard HOL-technique of defining |
1657 | 267 |
a new type by identifying a non-empty subset of an existing type. The |
1667 | 268 |
construction we perform in Isabelle/HOL can be illustrated by the following picture: |
1657 | 269 |
|
1528
d6ee4a1b34ce
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1524
diff
changeset
|
270 |
\begin{center} |
1552 | 271 |
\begin{tikzpicture} |
272 |
%\draw[step=2mm] (-4,-1) grid (4,1); |
|
273 |
||
274 |
\draw[very thick] (0.7,0.4) circle (4.25mm); |
|
275 |
\draw[rounded corners=1mm, very thick] ( 0.0,-0.8) rectangle ( 1.8, 0.9); |
|
276 |
\draw[rounded corners=1mm, very thick] (-1.95,0.85) rectangle (-2.85,-0.05); |
|
277 |
||
278 |
\draw (-2.0, 0.845) -- (0.7,0.845); |
|
279 |
\draw (-2.0,-0.045) -- (0.7,-0.045); |
|
280 |
||
281 |
\draw ( 0.7, 0.4) node {\begin{tabular}{@ {}c@ {}}$\alpha$-\\[-1mm]clas.\end{tabular}}; |
|
282 |
\draw (-2.4, 0.4) node {\begin{tabular}{@ {}c@ {}}$\alpha$-eq.\\[-1mm]terms\end{tabular}}; |
|
283 |
\draw (1.8, 0.48) node[right=-0.1mm] |
|
284 |
{\begin{tabular}{@ {}l@ {}}existing\\[-1mm] type\\ (sets of raw terms)\end{tabular}}; |
|
285 |
\draw (0.9, -0.35) node {\begin{tabular}{@ {}l@ {}}non-empty\\[-1mm]subset\end{tabular}}; |
|
286 |
\draw (-3.25, 0.55) node {\begin{tabular}{@ {}l@ {}}new\\[-1mm]type\end{tabular}}; |
|
287 |
||
288 |
\draw[<->, very thick] (-1.8, 0.3) -- (-0.1,0.3); |
|
289 |
\draw (-0.95, 0.3) node[above=0mm] {isomorphism}; |
|
290 |
||
291 |
\end{tikzpicture} |
|
1528
d6ee4a1b34ce
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1524
diff
changeset
|
292 |
\end{center} |
d6ee4a1b34ce
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1524
diff
changeset
|
293 |
|
d6ee4a1b34ce
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1524
diff
changeset
|
294 |
\noindent |
1657 | 295 |
We take as the starting point a definition of raw terms (defined as a |
2341 | 296 |
datatype in Isabelle/HOL); identify then the $\alpha$-equivalence classes in |
297 |
the type of sets of raw terms according to our $\alpha$-equivalence relation, |
|
298 |
and finally define the new type as these $\alpha$-equivalence classes |
|
1657 | 299 |
(non-emptiness is satisfied whenever the raw terms are definable as datatype |
2341 | 300 |
in Isabelle/HOL and the property that our relation for $\alpha$-equivalence is |
1657 | 301 |
indeed an equivalence relation). |
1556 | 302 |
|
1657 | 303 |
The fact that we obtain an isomorphism between the new type and the |
304 |
non-empty subset shows that the new type is a faithful representation of |
|
2341 | 305 |
$\alpha$-equated terms. That is not the case for example for terms using the |
1657 | 306 |
locally nameless representation of binders \cite{McKinnaPollack99}: in this |
307 |
representation there are ``junk'' terms that need to be excluded by |
|
308 |
reasoning about a well-formedness predicate. |
|
1556 | 309 |
|
1657 | 310 |
The problem with introducing a new type in Isabelle/HOL is that in order to |
311 |
be useful, a reasoning infrastructure needs to be ``lifted'' from the |
|
312 |
underlying subset to the new type. This is usually a tricky and arduous |
|
313 |
task. To ease it, we re-implemented in Isabelle/HOL the quotient package |
|
314 |
described by Homeier \cite{Homeier05} for the HOL4 system. This package |
|
315 |
allows us to lift definitions and theorems involving raw terms to |
|
2341 | 316 |
definitions and theorems involving $\alpha$-equated terms. For example if we |
1657 | 317 |
define the free-variable function over raw lambda-terms |
1577 | 318 |
|
319 |
\begin{center} |
|
1657 | 320 |
@{text "fv(x) = {x}"}\hspace{10mm} |
321 |
@{text "fv(t\<^isub>1 t\<^isub>2) = fv(t\<^isub>1) \<union> fv(t\<^isub>2)"}\\[1mm] |
|
322 |
@{text "fv(\<lambda>x.t) = fv(t) - {x}"} |
|
1577 | 323 |
\end{center} |
324 |
||
325 |
\noindent |
|
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
326 |
then with the help of the quotient package we can obtain a function @{text "fv\<^sup>\<alpha>"} |
2341 | 327 |
operating on quotients, or $\alpha$-equivalence classes of lambda-terms. This |
1628 | 328 |
lifted function is characterised by the equations |
1577 | 329 |
|
330 |
\begin{center} |
|
1657 | 331 |
@{text "fv\<^sup>\<alpha>(x) = {x}"}\hspace{10mm} |
332 |
@{text "fv\<^sup>\<alpha>(t\<^isub>1 t\<^isub>2) = fv\<^sup>\<alpha>(t\<^isub>1) \<union> fv\<^sup>\<alpha>(t\<^isub>2)"}\\[1mm] |
|
333 |
@{text "fv\<^sup>\<alpha>(\<lambda>x.t) = fv\<^sup>\<alpha>(t) - {x}"} |
|
1577 | 334 |
\end{center} |
335 |
||
336 |
\noindent |
|
337 |
(Note that this means also the term-constructors for variables, applications |
|
338 |
and lambda are lifted to the quotient level.) This construction, of course, |
|
2341 | 339 |
only works if $\alpha$-equivalence is indeed an equivalence relation, and the |
340 |
``raw'' definitions and theorems are respectful w.r.t.~$\alpha$-equivalence. |
|
1694
3bf0fddb7d44
clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents:
1693
diff
changeset
|
341 |
For example, we will not be able to lift a bound-variable function. Although |
3bf0fddb7d44
clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents:
1693
diff
changeset
|
342 |
this function can be defined for raw terms, it does not respect |
2341 | 343 |
$\alpha$-equivalence and therefore cannot be lifted. To sum up, every lifting |
1694
3bf0fddb7d44
clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents:
1693
diff
changeset
|
344 |
of theorems to the quotient level needs proofs of some respectfulness |
3bf0fddb7d44
clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents:
1693
diff
changeset
|
345 |
properties (see \cite{Homeier05}). In the paper we show that we are able to |
2128 | 346 |
automate these proofs and as a result can automatically establish a reasoning |
2341 | 347 |
infrastructure for $\alpha$-equated terms. |
1667 | 348 |
|
349 |
The examples we have in mind where our reasoning infrastructure will be |
|
1694
3bf0fddb7d44
clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents:
1693
diff
changeset
|
350 |
helpful includes the term language of System @{text "F\<^isub>C"}, also |
3bf0fddb7d44
clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents:
1693
diff
changeset
|
351 |
known as Core-Haskell (see Figure~\ref{corehas}). This term language |
1711 | 352 |
involves patterns that have lists of type-, coercion- and term-variables, |
1703 | 353 |
all of which are bound in @{text "\<CASE>"}-expressions. One |
1926 | 354 |
feature is that we do not know in advance how many variables need to |
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
355 |
be bound. Another is that each bound variable comes with a kind or type |
1694
3bf0fddb7d44
clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents:
1693
diff
changeset
|
356 |
annotation. Representing such binders with single binders and reasoning |
3bf0fddb7d44
clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents:
1693
diff
changeset
|
357 |
about them in a theorem prover would be a major pain. \medskip |
1506
7c607df46a0a
slightly more in the paper
Christian Urban <urbanc@in.tum.de>
parents:
1493
diff
changeset
|
358 |
|
1528
d6ee4a1b34ce
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1524
diff
changeset
|
359 |
\noindent |
2347 | 360 |
{\bf Contributions:} We provide three novel definitions for when terms |
2341 | 361 |
involving general binders are $\alpha$-equivalent. These definitions are |
1607 | 362 |
inspired by earlier work of Pitts \cite{Pitts04}. By means of automatic |
2341 | 363 |
proofs, we establish a reasoning infrastructure for $\alpha$-equated |
1528
d6ee4a1b34ce
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1524
diff
changeset
|
364 |
terms, including properties about support, freshness and equality |
2341 | 365 |
conditions for $\alpha$-equated terms. We are also able to derive strong |
2218
502eaa199726
added to the popl-paper a pointer to work by Altenkirch
Christian Urban <urbanc@in.tum.de>
parents:
2203
diff
changeset
|
366 |
induction principles that have the variable convention already built in. |
2343 | 367 |
The method behind our specification of general binders is taken |
2346 | 368 |
from the Ott-tool, but we introduce crucial restrictions, and also extensions, so |
2343 | 369 |
that our specifications make sense for reasoning about $\alpha$-equated terms. |
2341 | 370 |
|
1667 | 371 |
|
372 |
\begin{figure} |
|
1687 | 373 |
\begin{boxedminipage}{\linewidth} |
374 |
\begin{center} |
|
1699
2dca07aca287
small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents:
1694
diff
changeset
|
375 |
\begin{tabular}{r@ {\hspace{1mm}}r@ {\hspace{2mm}}l} |
1690 | 376 |
\multicolumn{3}{@ {}l}{Type Kinds}\\ |
1699
2dca07aca287
small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents:
1694
diff
changeset
|
377 |
@{text "\<kappa>"} & @{text "::="} & @{text "\<star> | \<kappa>\<^isub>1 \<rightarrow> \<kappa>\<^isub>2"}\smallskip\\ |
1690 | 378 |
\multicolumn{3}{@ {}l}{Coercion Kinds}\\ |
1699
2dca07aca287
small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents:
1694
diff
changeset
|
379 |
@{text "\<iota>"} & @{text "::="} & @{text "\<sigma>\<^isub>1 \<sim> \<sigma>\<^isub>2"}\smallskip\\ |
1690 | 380 |
\multicolumn{3}{@ {}l}{Types}\\ |
1694
3bf0fddb7d44
clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents:
1693
diff
changeset
|
381 |
@{text "\<sigma>"} & @{text "::="} & @{text "a | T | \<sigma>\<^isub>1 \<sigma>\<^isub>2 | S\<^isub>n"}$\;\overline{@{text "\<sigma>"}}$@{text "\<^sup>n"} |
1699
2dca07aca287
small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents:
1694
diff
changeset
|
382 |
@{text "| \<forall>a:\<kappa>. \<sigma> | \<iota> \<Rightarrow> \<sigma>"}\smallskip\\ |
1690 | 383 |
\multicolumn{3}{@ {}l}{Coercion Types}\\ |
1694
3bf0fddb7d44
clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents:
1693
diff
changeset
|
384 |
@{text "\<gamma>"} & @{text "::="} & @{text "c | C | \<gamma>\<^isub>1 \<gamma>\<^isub>2 | S\<^isub>n"}$\;\overline{@{text "\<gamma>"}}$@{text "\<^sup>n"} |
1699
2dca07aca287
small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents:
1694
diff
changeset
|
385 |
@{text "| \<forall>c:\<iota>. \<gamma> | \<iota> \<Rightarrow> \<gamma> "}\\ |
2dca07aca287
small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents:
1694
diff
changeset
|
386 |
& @{text "|"} & @{text "refl \<sigma> | sym \<gamma> | \<gamma>\<^isub>1 \<circ> \<gamma>\<^isub>2 | \<gamma> @ \<sigma> | left \<gamma> | right \<gamma>"}\\ |
2dca07aca287
small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents:
1694
diff
changeset
|
387 |
& @{text "|"} & @{text "\<gamma>\<^isub>1 \<sim> \<gamma>\<^isub>2 | rightc \<gamma> | leftc \<gamma> | \<gamma>\<^isub>1 \<triangleright> \<gamma>\<^isub>2"}\smallskip\\ |
1690 | 388 |
\multicolumn{3}{@ {}l}{Terms}\\ |
1699
2dca07aca287
small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents:
1694
diff
changeset
|
389 |
@{text "e"} & @{text "::="} & @{text "x | K | \<Lambda>a:\<kappa>. e | \<Lambda>c:\<iota>. e | e \<sigma> | e \<gamma>"}\\ |
2dca07aca287
small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents:
1694
diff
changeset
|
390 |
& @{text "|"} & @{text "\<lambda>x:\<sigma>. e | e\<^isub>1 e\<^isub>2 | \<LET> x:\<sigma> = e\<^isub>1 \<IN> e\<^isub>2"}\\ |
2dca07aca287
small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents:
1694
diff
changeset
|
391 |
& @{text "|"} & @{text "\<CASE> e\<^isub>1 \<OF>"}$\;\overline{@{text "p \<rightarrow> e\<^isub>2"}}$ @{text "| e \<triangleright> \<gamma>"}\smallskip\\ |
1690 | 392 |
\multicolumn{3}{@ {}l}{Patterns}\\ |
1699
2dca07aca287
small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents:
1694
diff
changeset
|
393 |
@{text "p"} & @{text "::="} & @{text "K"}$\;\overline{@{text "a:\<kappa>"}}\;\overline{@{text "c:\<iota>"}}\;\overline{@{text "x:\<sigma>"}}$\smallskip\\ |
1690 | 394 |
\multicolumn{3}{@ {}l}{Constants}\\ |
1699
2dca07aca287
small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents:
1694
diff
changeset
|
395 |
& @{text C} & coercion constants\\ |
2dca07aca287
small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents:
1694
diff
changeset
|
396 |
& @{text T} & value type constructors\\ |
2dca07aca287
small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents:
1694
diff
changeset
|
397 |
& @{text "S\<^isub>n"} & n-ary type functions (which need to be fully applied)\\ |
2dca07aca287
small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents:
1694
diff
changeset
|
398 |
& @{text K} & data constructors\smallskip\\ |
1690 | 399 |
\multicolumn{3}{@ {}l}{Variables}\\ |
1699
2dca07aca287
small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents:
1694
diff
changeset
|
400 |
& @{text a} & type variables\\ |
2dca07aca287
small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents:
1694
diff
changeset
|
401 |
& @{text c} & coercion variables\\ |
2dca07aca287
small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents:
1694
diff
changeset
|
402 |
& @{text x} & term variables\\ |
1687 | 403 |
\end{tabular} |
404 |
\end{center} |
|
405 |
\end{boxedminipage} |
|
2345 | 406 |
\caption{The System @{text "F\<^isub>C"} |
1699
2dca07aca287
small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents:
1694
diff
changeset
|
407 |
\cite{CoreHaskell}, also often referred to as \emph{Core-Haskell}. In this |
2345 | 408 |
version of @{text "F\<^isub>C"} we made a modification by separating the |
1711 | 409 |
grammars for type kinds and coercion kinds, as well as for types and coercion |
1702 | 410 |
types. For this paper the interesting term-constructor is @{text "\<CASE>"}, |
411 |
which binds multiple type-, coercion- and term-variables.\label{corehas}} |
|
1667 | 412 |
\end{figure} |
1485
c004e7448dca
temporarily disabled tests in Nominal/ROOT
Christian Urban <urbanc@in.tum.de>
parents:
1484
diff
changeset
|
413 |
*} |
c004e7448dca
temporarily disabled tests in Nominal/ROOT
Christian Urban <urbanc@in.tum.de>
parents:
1484
diff
changeset
|
414 |
|
1493
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
415 |
section {* A Short Review of the Nominal Logic Work *} |
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
416 |
|
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
417 |
text {* |
1556 | 418 |
At its core, Nominal Isabelle is an adaption of the nominal logic work by |
419 |
Pitts \cite{Pitts03}. This adaptation for Isabelle/HOL is described in |
|
1694
3bf0fddb7d44
clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents:
1693
diff
changeset
|
420 |
\cite{HuffmanUrban10} (including proofs). We shall briefly review this work |
3bf0fddb7d44
clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents:
1693
diff
changeset
|
421 |
to aid the description of what follows. |
3bf0fddb7d44
clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents:
1693
diff
changeset
|
422 |
|
1711 | 423 |
Two central notions in the nominal logic work are sorted atoms and |
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
424 |
sort-respecting permutations of atoms. We will use the letters @{text "a, |
1711 | 425 |
b, c, \<dots>"} to stand for atoms and @{text "p, q, \<dots>"} to stand for |
2347 | 426 |
permutations. The purpose of atoms is to represent variables, be they bound or free. |
427 |
The sorts of atoms can be used to represent different kinds of |
|
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
428 |
variables, such as the term-, coercion- and type-variables in Core-Haskell. |
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
429 |
It is assumed that there is an infinite supply of atoms for each |
1847 | 430 |
sort. However, in the interest of brevity, we shall restrict ourselves |
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
431 |
in what follows to only one sort of atoms. |
1493
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
432 |
|
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
433 |
Permutations are bijective functions from atoms to atoms that are |
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
434 |
the identity everywhere except on a finite number of atoms. There is a |
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
435 |
two-place permutation operation written |
1617
99cee15cb5ff
more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents:
1613
diff
changeset
|
436 |
% |
1703 | 437 |
\begin{center} |
438 |
@{text "_ \<bullet> _ :: perm \<Rightarrow> \<beta> \<Rightarrow> \<beta>"} |
|
439 |
\end{center} |
|
1493
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
440 |
|
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
441 |
\noindent |
1628 | 442 |
in which the generic type @{text "\<beta>"} stands for the type of the object |
1694
3bf0fddb7d44
clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents:
1693
diff
changeset
|
443 |
over which the permutation |
1617
99cee15cb5ff
more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents:
1613
diff
changeset
|
444 |
acts. In Nominal Isabelle, the identity permutation is written as @{term "0::perm"}, |
1690 | 445 |
the composition of two permutations @{term p} and @{term q} as \mbox{@{term "p + q"}}, |
1570 | 446 |
and the inverse permutation of @{term p} as @{text "- p"}. The permutation |
1890
23e3dc4f2c59
small updates to the paper; remaining points in PAPER-TODO
Christian Urban <urbanc@in.tum.de>
parents:
1859
diff
changeset
|
447 |
operation is defined by induction over the type-hierarchy \cite{HuffmanUrban10}; |
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
448 |
for example permutations acting on products, lists, sets, functions and booleans is |
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
449 |
given by: |
1702 | 450 |
% |
1703 | 451 |
\begin{equation}\label{permute} |
1694
3bf0fddb7d44
clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents:
1693
diff
changeset
|
452 |
\mbox{\begin{tabular}{@ {}cc@ {}} |
1690 | 453 |
\begin{tabular}{@ {}l@ {}} |
454 |
@{thm permute_prod.simps[no_vars, THEN eq_reflection]}\\[2mm] |
|
455 |
@{thm permute_list.simps(1)[no_vars, THEN eq_reflection]}\\ |
|
456 |
@{thm permute_list.simps(2)[no_vars, THEN eq_reflection]}\\ |
|
457 |
\end{tabular} & |
|
458 |
\begin{tabular}{@ {}l@ {}} |
|
459 |
@{thm permute_set_eq[no_vars, THEN eq_reflection]}\\ |
|
1694
3bf0fddb7d44
clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents:
1693
diff
changeset
|
460 |
@{text "p \<bullet> f \<equiv> \<lambda>x. p \<bullet> (f (- p \<bullet> x))"}\\ |
1690 | 461 |
@{thm permute_bool_def[no_vars, THEN eq_reflection]}\\ |
462 |
\end{tabular} |
|
1694
3bf0fddb7d44
clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents:
1693
diff
changeset
|
463 |
\end{tabular}} |
3bf0fddb7d44
clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents:
1693
diff
changeset
|
464 |
\end{equation} |
1690 | 465 |
|
466 |
\noindent |
|
1730
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
467 |
Concrete permutations in Nominal Isabelle are built up from swappings, |
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
468 |
written as \mbox{@{text "(a b)"}}, which are permutations that behave |
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
469 |
as follows: |
1617
99cee15cb5ff
more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents:
1613
diff
changeset
|
470 |
% |
1703 | 471 |
\begin{center} |
472 |
@{text "(a b) = \<lambda>c. if a = c then b else if b = c then a else c"} |
|
473 |
\end{center} |
|
474 |
||
1570 | 475 |
The most original aspect of the nominal logic work of Pitts is a general |
1703 | 476 |
definition for the notion of the ``set of free variables of an object @{text |
1570 | 477 |
"x"}''. This notion, written @{term "supp x"}, is general in the sense that |
2341 | 478 |
it applies not only to lambda-terms ($\alpha$-equated or not), but also to lists, |
1570 | 479 |
products, sets and even functions. The definition depends only on the |
480 |
permutation operation and on the notion of equality defined for the type of |
|
481 |
@{text x}, namely: |
|
1617
99cee15cb5ff
more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents:
1613
diff
changeset
|
482 |
% |
1703 | 483 |
\begin{equation}\label{suppdef} |
484 |
@{thm supp_def[no_vars, THEN eq_reflection]} |
|
485 |
\end{equation} |
|
1493
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
486 |
|
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
487 |
\noindent |
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
488 |
There is also the derived notion for when an atom @{text a} is \emph{fresh} |
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
489 |
for an @{text x}, defined as |
1617
99cee15cb5ff
more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents:
1613
diff
changeset
|
490 |
% |
1703 | 491 |
\begin{center} |
492 |
@{thm fresh_def[no_vars]} |
|
493 |
\end{center} |
|
1493
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
494 |
|
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
495 |
\noindent |
1954
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
496 |
We use for sets of atoms the abbreviation |
1703 | 497 |
@{thm (lhs) fresh_star_def[no_vars]}, defined as |
1517
62d6f7acc110
corrected the strong induction principle in the lambda-calculus case; gave a second (oartial) version that is more elegant
Christian Urban <urbanc@in.tum.de>
parents:
1506
diff
changeset
|
498 |
@{thm (rhs) fresh_star_def[no_vars]}. |
1493
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
499 |
A striking consequence of these definitions is that we can prove |
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
500 |
without knowing anything about the structure of @{term x} that |
2140 | 501 |
swapping two fresh atoms, say @{text a} and @{text b}, leaves |
502 |
@{text x} unchanged: |
|
1506
7c607df46a0a
slightly more in the paper
Christian Urban <urbanc@in.tum.de>
parents:
1493
diff
changeset
|
503 |
|
1711 | 504 |
\begin{property}\label{swapfreshfresh} |
1506
7c607df46a0a
slightly more in the paper
Christian Urban <urbanc@in.tum.de>
parents:
1493
diff
changeset
|
505 |
@{thm[mode=IfThen] swap_fresh_fresh[no_vars]} |
1517
62d6f7acc110
corrected the strong induction principle in the lambda-calculus case; gave a second (oartial) version that is more elegant
Christian Urban <urbanc@in.tum.de>
parents:
1506
diff
changeset
|
506 |
\end{property} |
1506
7c607df46a0a
slightly more in the paper
Christian Urban <urbanc@in.tum.de>
parents:
1493
diff
changeset
|
507 |
|
1711 | 508 |
While often the support of an object can be relatively easily |
1730
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
509 |
described, for example for atoms, products, lists, function applications, |
2341 | 510 |
booleans and permutations as follows |
1690 | 511 |
% |
512 |
\begin{eqnarray} |
|
1703 | 513 |
@{term "supp a"} & = & @{term "{a}"}\\ |
1690 | 514 |
@{term "supp (x, y)"} & = & @{term "supp x \<union> supp y"}\\ |
515 |
@{term "supp []"} & = & @{term "{}"}\\ |
|
1711 | 516 |
@{term "supp (x#xs)"} & = & @{term "supp x \<union> supp xs"}\\ |
1730
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
517 |
@{text "supp (f x)"} & @{text "\<subseteq>"} & @{term "supp f \<union> supp x"}\label{suppfun}\\ |
1703 | 518 |
@{term "supp b"} & = & @{term "{}"}\\ |
519 |
@{term "supp p"} & = & @{term "{a. p \<bullet> a \<noteq> a}"} |
|
1690 | 520 |
\end{eqnarray} |
521 |
||
522 |
\noindent |
|
2347 | 523 |
in some cases it can be difficult to characterise the support precisely, and |
1730
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
524 |
only an approximation can be established (see \eqref{suppfun} above). Reasoning about |
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
525 |
such approximations can be simplified with the notion \emph{supports}, defined |
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
526 |
as follows: |
1693 | 527 |
|
528 |
\begin{defn} |
|
529 |
A set @{text S} \emph{supports} @{text x} if for all atoms @{text a} and @{text b} |
|
530 |
not in @{text S} we have @{term "(a \<rightleftharpoons> b) \<bullet> x = x"}. |
|
531 |
\end{defn} |
|
1690 | 532 |
|
1693 | 533 |
\noindent |
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
534 |
The main point of @{text supports} is that we can establish the following |
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
535 |
two properties. |
1693 | 536 |
|
1703 | 537 |
\begin{property}\label{supportsprop} |
2341 | 538 |
Given a set @{text "as"} of atoms. |
539 |
{\it i)} @{thm[mode=IfThen] supp_is_subset[where S="as", no_vars]} |
|
1693 | 540 |
{\it ii)} @{thm supp_supports[no_vars]}. |
541 |
\end{property} |
|
542 |
||
543 |
Another important notion in the nominal logic work is \emph{equivariance}. |
|
1703 | 544 |
For a function @{text f}, say of type @{text "\<alpha> \<Rightarrow> \<beta>"}, to be equivariant |
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
545 |
it is required that every permutation leaves @{text f} unchanged, that is |
1711 | 546 |
% |
547 |
\begin{equation}\label{equivariancedef} |
|
548 |
@{term "\<forall>p. p \<bullet> f = f"} |
|
549 |
\end{equation} |
|
550 |
||
551 |
\noindent or equivalently that a permutation applied to the application |
|
1730
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
552 |
@{text "f x"} can be moved to the argument @{text x}. That means for equivariant |
2341 | 553 |
functions @{text f}, we have for all permutations @{text p}: |
1703 | 554 |
% |
555 |
\begin{equation}\label{equivariance} |
|
1711 | 556 |
@{text "p \<bullet> f = f"} \;\;\;\textit{if and only if}\;\;\; |
557 |
@{text "p \<bullet> (f x) = f (p \<bullet> x)"} |
|
1703 | 558 |
\end{equation} |
1694
3bf0fddb7d44
clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents:
1693
diff
changeset
|
559 |
|
3bf0fddb7d44
clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents:
1693
diff
changeset
|
560 |
\noindent |
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
561 |
From property \eqref{equivariancedef} and the definition of @{text supp}, we |
2175 | 562 |
can easily deduce that equivariant functions have empty support. There is |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
563 |
also a similar notion for equivariant relations, say @{text R}, namely the property |
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
564 |
that |
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
565 |
% |
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
566 |
\begin{center} |
2341 | 567 |
@{text "x R y"} \;\;\textit{implies}\;\; @{text "(p \<bullet> x) R (p \<bullet> y)"} |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
568 |
\end{center} |
1711 | 569 |
|
2343 | 570 |
Finally, the nominal logic work provides us with general means for renaming |
1711 | 571 |
binders. While in the older version of Nominal Isabelle, we used extensively |
2343 | 572 |
Property~\ref{swapfreshfresh} to rename single binders, this property |
2341 | 573 |
proved too unwieldy for dealing with multiple binders. For such binders the |
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
574 |
following generalisations turned out to be easier to use. |
1711 | 575 |
|
576 |
\begin{property}\label{supppermeq} |
|
577 |
@{thm[mode=IfThen] supp_perm_eq[no_vars]} |
|
578 |
\end{property} |
|
1517
62d6f7acc110
corrected the strong induction principle in the lambda-calculus case; gave a second (oartial) version that is more elegant
Christian Urban <urbanc@in.tum.de>
parents:
1506
diff
changeset
|
579 |
|
1747
4abb95a7264b
starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1746
diff
changeset
|
580 |
\begin{property}\label{avoiding} |
1716 | 581 |
For a finite set @{text as} and a finitely supported @{text x} with |
582 |
@{term "as \<sharp>* x"} and also a finitely supported @{text c}, there |
|
583 |
exists a permutation @{text p} such that @{term "(p \<bullet> as) \<sharp>* c"} and |
|
1711 | 584 |
@{term "supp x \<sharp>* p"}. |
585 |
\end{property} |
|
586 |
||
587 |
\noindent |
|
1716 | 588 |
The idea behind the second property is that given a finite set @{text as} |
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
589 |
of binders (being bound, or fresh, in @{text x} is ensured by the |
1716 | 590 |
assumption @{term "as \<sharp>* x"}), then there exists a permutation @{text p} such that |
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
591 |
the renamed binders @{term "p \<bullet> as"} avoid @{text c} (which can be arbitrarily chosen |
1730
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
592 |
as long as it is finitely supported) and also @{text "p"} does not affect anything |
1711 | 593 |
in the support of @{text x} (that is @{term "supp x \<sharp>* p"}). The last |
594 |
fact and Property~\ref{supppermeq} allow us to ``rename'' just the binders |
|
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
595 |
@{text as} in @{text x}, because @{term "p \<bullet> x = x"}. |
1711 | 596 |
|
2128 | 597 |
Most properties given in this section are described in detail in \cite{HuffmanUrban10} |
1737
8b6a285ad480
polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents:
1736
diff
changeset
|
598 |
and of course all are formalised in Isabelle/HOL. In the next sections we will make |
2341 | 599 |
extensive use of these properties in order to define $\alpha$-equivalence in |
1737
8b6a285ad480
polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents:
1736
diff
changeset
|
600 |
the presence of multiple binders. |
1493
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
601 |
*} |
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
602 |
|
1485
c004e7448dca
temporarily disabled tests in Nominal/ROOT
Christian Urban <urbanc@in.tum.de>
parents:
1484
diff
changeset
|
603 |
|
2345 | 604 |
section {* General Bindings\label{sec:binders} *} |
1485
c004e7448dca
temporarily disabled tests in Nominal/ROOT
Christian Urban <urbanc@in.tum.de>
parents:
1484
diff
changeset
|
605 |
|
1517
62d6f7acc110
corrected the strong induction principle in the lambda-calculus case; gave a second (oartial) version that is more elegant
Christian Urban <urbanc@in.tum.de>
parents:
1506
diff
changeset
|
606 |
text {* |
1587 | 607 |
In Nominal Isabelle, the user is expected to write down a specification of a |
608 |
term-calculus and then a reasoning infrastructure is automatically derived |
|
1617
99cee15cb5ff
more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents:
1613
diff
changeset
|
609 |
from this specification (remember that Nominal Isabelle is a definitional |
1587 | 610 |
extension of Isabelle/HOL, which does not introduce any new axioms). |
1579 | 611 |
|
1657 | 612 |
In order to keep our work with deriving the reasoning infrastructure |
613 |
manageable, we will wherever possible state definitions and perform proofs |
|
2341 | 614 |
on the ``user-level'' of Isabelle/HOL, as opposed to write custom ML-code that |
1657 | 615 |
generates them anew for each specification. To that end, we will consider |
616 |
first pairs @{text "(as, x)"} of type @{text "(atom set) \<times> \<beta>"}. These pairs |
|
2128 | 617 |
are intended to represent the abstraction, or binding, of the set of atoms @{text |
1657 | 618 |
"as"} in the body @{text "x"}. |
1570 | 619 |
|
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
620 |
The first question we have to answer is when two pairs @{text "(as, x)"} and |
2341 | 621 |
@{text "(bs, y)"} are $\alpha$-equivalent? (For the moment we are interested in |
622 |
the notion of $\alpha$-equivalence that is \emph{not} preserved by adding |
|
623 |
vacuous binders.) To answer this question, we identify four conditions: {\it (i)} |
|
2347 | 624 |
given a free-atom function @{text "fa"} of type \mbox{@{text "\<beta> \<Rightarrow> atom |
1657 | 625 |
set"}}, then @{text x} and @{text y} need to have the same set of free |
2348 | 626 |
atoms; moreover there must be a permutation @{text p} such that {\it |
2347 | 627 |
(ii)} @{text p} leaves the free atoms of @{text x} and @{text y} unchanged, but |
2341 | 628 |
{\it (iii)} ``moves'' their bound names so that we obtain modulo a relation, |
629 |
say \mbox{@{text "_ R _"}}, two equivalent terms. We also require that {\it (iv)} |
|
1662 | 630 |
@{text p} makes the sets of abstracted atoms @{text as} and @{text bs} equal. The |
2343 | 631 |
requirements {\it (i)} to {\it (iv)} can be stated formally as follows: |
1556 | 632 |
% |
1572 | 633 |
\begin{equation}\label{alphaset} |
2341 | 634 |
\begin{array}{@ {\hspace{10mm}}r@ {\hspace{2mm}}l@ {\hspace{4mm}}r} |
2347 | 635 |
\multicolumn{3}{l}{@{term "(as, x) \<approx>gen R fa p (bs, y)"}\hspace{2mm}@{text "\<equiv>"}}\\[1mm] |
636 |
& @{term "fa(x) - as = fa(y) - bs"} & \mbox{\it (i)}\\ |
|
637 |
@{text "\<and>"} & @{term "(fa(x) - as) \<sharp>* p"} & \mbox{\it (ii)}\\ |
|
2341 | 638 |
@{text "\<and>"} & @{text "(p \<bullet> x) R y"} & \mbox{\it (iii)}\\ |
639 |
@{text "\<and>"} & @{term "(p \<bullet> as) = bs"} & \mbox{\it (iv)}\\ |
|
1572 | 640 |
\end{array} |
1556 | 641 |
\end{equation} |
642 |
||
643 |
\noindent |
|
2175 | 644 |
Note that this relation depends on the permutation @{text |
2341 | 645 |
"p"}; $\alpha$-equivalence between two pairs is then the relation where we |
1657 | 646 |
existentially quantify over this @{text "p"}. Also note that the relation is |
2347 | 647 |
dependent on a free-atom function @{text "fa"} and a relation @{text |
1657 | 648 |
"R"}. The reason for this extra generality is that we will use |
2341 | 649 |
$\approx_{\,\textit{set}}$ for both ``raw'' terms and $\alpha$-equated terms. In |
650 |
the latter case, @{text R} will be replaced by equality @{text "="} and we |
|
2347 | 651 |
will prove that @{text "fa"} is equal to @{text "supp"}. |
1572 | 652 |
|
653 |
The definition in \eqref{alphaset} does not make any distinction between the |
|
2347 | 654 |
order of abstracted atoms. If we want this, then we can define $\alpha$-equivalence |
1579 | 655 |
for pairs of the form \mbox{@{text "(as, x)"}} with type @{text "(atom list) \<times> \<beta>"} |
656 |
as follows |
|
1572 | 657 |
% |
658 |
\begin{equation}\label{alphalist} |
|
2341 | 659 |
\begin{array}{@ {\hspace{10mm}}r@ {\hspace{2mm}}l@ {\hspace{4mm}}r} |
2347 | 660 |
\multicolumn{2}{l}{@{term "(as, x) \<approx>lst R fa p (bs, y)"}\hspace{2mm}@{text "\<equiv>"}}\\[1mm] |
661 |
& @{term "fa(x) - (set as) = fa(y) - (set bs)"} & \mbox{\it (i)}\\ |
|
662 |
\wedge & @{term "(fa(x) - set as) \<sharp>* p"} & \mbox{\it (ii)}\\ |
|
2341 | 663 |
\wedge & @{text "(p \<bullet> x) R y"} & \mbox{\it (iii)}\\ |
664 |
\wedge & @{term "(p \<bullet> as) = bs"} & \mbox{\it (iv)}\\ |
|
1572 | 665 |
\end{array} |
666 |
\end{equation} |
|
667 |
||
668 |
\noindent |
|
2341 | 669 |
where @{term set} is the function that coerces a list of atoms into a set of atoms. |
1752
9e09253c80cf
added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents:
1749
diff
changeset
|
670 |
Now the last clause ensures that the order of the binders matters (since @{text as} |
9e09253c80cf
added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents:
1749
diff
changeset
|
671 |
and @{text bs} are lists of atoms). |
1556 | 672 |
|
1657 | 673 |
If we do not want to make any difference between the order of binders \emph{and} |
1579 | 674 |
also allow vacuous binders, then we keep sets of binders, but drop the fourth |
675 |
condition in \eqref{alphaset}: |
|
1572 | 676 |
% |
1579 | 677 |
\begin{equation}\label{alphares} |
2341 | 678 |
\begin{array}{@ {\hspace{10mm}}r@ {\hspace{2mm}}l@ {\hspace{4mm}}r} |
2347 | 679 |
\multicolumn{2}{l}{@{term "(as, x) \<approx>res R fa p (bs, y)"}\hspace{2mm}@{text "\<equiv>"}}\\[1mm] |
680 |
& @{term "fa(x) - as = fa(y) - bs"} & \mbox{\it (i)}\\ |
|
681 |
\wedge & @{term "(fa(x) - as) \<sharp>* p"} & \mbox{\it (ii)}\\ |
|
2341 | 682 |
\wedge & @{text "(p \<bullet> x) R y"} & \mbox{\it (iii)}\\ |
1572 | 683 |
\end{array} |
684 |
\end{equation} |
|
1556 | 685 |
|
2345 | 686 |
It might be useful to consider first some examples about how these definitions |
2341 | 687 |
of $\alpha$-equivalence pan out in practice. For this consider the case of |
2347 | 688 |
abstracting a set of atoms over types (as in type-schemes). We set |
689 |
@{text R} to be the usual equality @{text "="} and for @{text "fa(T)"} we |
|
2341 | 690 |
define |
1572 | 691 |
|
692 |
\begin{center} |
|
2347 | 693 |
@{text "fa(x) = {x}"} \hspace{5mm} @{text "fa(T\<^isub>1 \<rightarrow> T\<^isub>2) = fa(T\<^isub>1) \<union> fa(T\<^isub>2)"} |
1572 | 694 |
\end{center} |
695 |
||
696 |
\noindent |
|
1657 | 697 |
Now recall the examples shown in \eqref{ex1}, \eqref{ex2} and |
1687 | 698 |
\eqref{ex3}. It can be easily checked that @{text "({x, y}, x \<rightarrow> y)"} and |
2341 | 699 |
@{text "({y, x}, y \<rightarrow> x)"} are $\alpha$-equivalent according to |
700 |
$\approx_{\,\textit{set}}$ and $\approx_{\,\textit{res}}$ by taking @{text p} to |
|
2175 | 701 |
be the swapping @{term "(x \<rightleftharpoons> y)"}. In case of @{text "x \<noteq> y"}, then @{text |
2341 | 702 |
"([x, y], x \<rightarrow> y)"} $\not\approx_{\,\textit{list}}$ @{text "([y, x], x \<rightarrow> y)"} |
2175 | 703 |
since there is no permutation that makes the lists @{text "[x, y]"} and |
704 |
@{text "[y, x]"} equal, and also leaves the type \mbox{@{text "x \<rightarrow> y"}} |
|
2341 | 705 |
unchanged. Another example is @{text "({x}, x)"} $\approx_{\,\textit{res}}$ |
2175 | 706 |
@{text "({x, y}, x)"} which holds by taking @{text p} to be the identity |
707 |
permutation. However, if @{text "x \<noteq> y"}, then @{text "({x}, x)"} |
|
2341 | 708 |
$\not\approx_{\,\textit{set}}$ @{text "({x, y}, x)"} since there is no |
2175 | 709 |
permutation that makes the sets @{text "{x}"} and @{text "{x, y}"} equal |
2341 | 710 |
(similarly for $\approx_{\,\textit{list}}$). It can also relatively easily be |
711 |
shown that all three notions of $\alpha$-equivalence coincide, if we only |
|
2175 | 712 |
abstract a single atom. |
1579 | 713 |
|
1730
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
714 |
In the rest of this section we are going to introduce three abstraction |
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
715 |
types. For this we define |
1657 | 716 |
% |
717 |
\begin{equation} |
|
718 |
@{term "abs_set (as, x) (bs, x) \<equiv> \<exists>p. alpha_gen (as, x) equal supp p (bs, x)"} |
|
719 |
\end{equation} |
|
720 |
||
1579 | 721 |
\noindent |
2341 | 722 |
(similarly for $\approx_{\,\textit{abs\_res}}$ |
723 |
and $\approx_{\,\textit{abs\_list}}$). We can show that these relations are equivalence |
|
1687 | 724 |
relations and equivariant. |
1579 | 725 |
|
1739 | 726 |
\begin{lemma}\label{alphaeq} |
2341 | 727 |
The relations $\approx_{\,\textit{abs\_set}}$, $\approx_{\,\textit{abs\_list}}$ |
728 |
and $\approx_{\,\textit{abs\_res}}$ are equivalence relations, and if @{term |
|
1739 | 729 |
"abs_set (as, x) (bs, y)"} then also @{term "abs_set (p \<bullet> as, p \<bullet> x) (p \<bullet> |
730 |
bs, p \<bullet> y)"} (similarly for the other two relations). |
|
1657 | 731 |
\end{lemma} |
732 |
||
733 |
\begin{proof} |
|
734 |
Reflexivity is by taking @{text "p"} to be @{text "0"}. For symmetry we have |
|
735 |
a permutation @{text p} and for the proof obligation take @{term "-p"}. In case |
|
1662 | 736 |
of transitivity, we have two permutations @{text p} and @{text q}, and for the |
737 |
proof obligation use @{text "q + p"}. All conditions are then by simple |
|
1657 | 738 |
calculations. |
739 |
\end{proof} |
|
740 |
||
741 |
\noindent |
|
2343 | 742 |
This lemma allows us to use our quotient package for introducing |
1662 | 743 |
new types @{text "\<beta> abs_set"}, @{text "\<beta> abs_res"} and @{text "\<beta> abs_list"} |
2341 | 744 |
representing $\alpha$-equivalence classes of pairs of type |
2128 | 745 |
@{text "(atom set) \<times> \<beta>"} (in the first two cases) and of type @{text "(atom list) \<times> \<beta>"} |
746 |
(in the third case). |
|
1954
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
747 |
The elements in these types will be, respectively, written as: |
1657 | 748 |
|
749 |
\begin{center} |
|
750 |
@{term "Abs as x"} \hspace{5mm} |
|
1954
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
751 |
@{term "Abs_res as x"} \hspace{5mm} |
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
752 |
@{term "Abs_lst as x"} |
1657 | 753 |
\end{center} |
754 |
||
1662 | 755 |
\noindent |
1859 | 756 |
indicating that a set (or list) of atoms @{text as} is abstracted in @{text x}. We will |
1716 | 757 |
call the types \emph{abstraction types} and their elements |
1752
9e09253c80cf
added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents:
1749
diff
changeset
|
758 |
\emph{abstractions}. The important property we need to derive is the support of |
1737
8b6a285ad480
polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents:
1736
diff
changeset
|
759 |
abstractions, namely: |
1662 | 760 |
|
1687 | 761 |
\begin{thm}[Support of Abstractions]\label{suppabs} |
1703 | 762 |
Assuming @{text x} has finite support, then\\[-6mm] |
1662 | 763 |
\begin{center} |
1687 | 764 |
\begin{tabular}{l@ {\hspace{2mm}}c@ {\hspace{2mm}}l} |
765 |
@{thm (lhs) supp_abs(1)[no_vars]} & $=$ & @{thm (rhs) supp_abs(1)[no_vars]}\\ |
|
1954
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
766 |
@{thm (lhs) supp_abs(2)[no_vars]} & $=$ & @{thm (rhs) supp_abs(2)[no_vars]}\\ |
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
767 |
@{thm (lhs) supp_abs(3)[where bs="as", no_vars]} & $=$ & @{thm (rhs) supp_abs(3)[where bs="as", no_vars]} |
1687 | 768 |
\end{tabular} |
1662 | 769 |
\end{center} |
1687 | 770 |
\end{thm} |
1662 | 771 |
|
772 |
\noindent |
|
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
773 |
Below we will show the first equation. The others |
1730
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
774 |
follow by similar arguments. By definition of the abstraction type @{text "abs_set"} |
1687 | 775 |
we have |
776 |
% |
|
777 |
\begin{equation}\label{abseqiff} |
|
1703 | 778 |
@{thm (lhs) abs_eq_iff(1)[where bs="as" and cs="bs", no_vars]} \;\;\text{if and only if}\;\; |
1687 | 779 |
@{thm (rhs) abs_eq_iff(1)[where bs="as" and cs="bs", no_vars]} |
780 |
\end{equation} |
|
781 |
||
782 |
\noindent |
|
1703 | 783 |
and also |
784 |
% |
|
2128 | 785 |
\begin{equation}\label{absperm} |
1703 | 786 |
@{thm permute_Abs[no_vars]} |
787 |
\end{equation} |
|
1662 | 788 |
|
1703 | 789 |
\noindent |
1716 | 790 |
The second fact derives from the definition of permutations acting on pairs |
2341 | 791 |
\eqref{permute} and $\alpha$-equivalence being equivariant |
1716 | 792 |
(see Lemma~\ref{alphaeq}). With these two facts at our disposal, we can show |
2341 | 793 |
the following lemma about swapping two atoms in an abstraction. |
1703 | 794 |
|
1662 | 795 |
\begin{lemma} |
1716 | 796 |
@{thm[mode=IfThen] abs_swap1(1)[where bs="as", no_vars]} |
1662 | 797 |
\end{lemma} |
798 |
||
799 |
\begin{proof} |
|
1730
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
800 |
This lemma is straightforward using \eqref{abseqiff} and observing that |
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
801 |
the assumptions give us @{term "(a \<rightleftharpoons> b) \<bullet> (supp x - as) = (supp x - as)"}. |
1730
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
802 |
Moreover @{text supp} and set difference are equivariant (see \cite{HuffmanUrban10}). |
1662 | 803 |
\end{proof} |
1587 | 804 |
|
1687 | 805 |
\noindent |
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
806 |
Assuming that @{text "x"} has finite support, this lemma together |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
807 |
with \eqref{absperm} allows us to show |
1687 | 808 |
% |
809 |
\begin{equation}\label{halfone} |
|
810 |
@{thm abs_supports(1)[no_vars]} |
|
811 |
\end{equation} |
|
812 |
||
813 |
\noindent |
|
1716 | 814 |
which by Property~\ref{supportsprop} gives us ``one half'' of |
1752
9e09253c80cf
added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents:
1749
diff
changeset
|
815 |
Theorem~\ref{suppabs}. The ``other half'' is a bit more involved. To establish |
1716 | 816 |
it, we use a trick from \cite{Pitts04} and first define an auxiliary |
1737
8b6a285ad480
polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents:
1736
diff
changeset
|
817 |
function @{text aux}, taking an abstraction as argument: |
1687 | 818 |
% |
819 |
\begin{center} |
|
1703 | 820 |
@{thm supp_gen.simps[THEN eq_reflection, no_vars]} |
1687 | 821 |
\end{center} |
822 |
||
1703 | 823 |
\noindent |
824 |
Using the second equation in \eqref{equivariance}, we can show that |
|
1716 | 825 |
@{text "aux"} is equivariant (since @{term "p \<bullet> (supp x - as) = |
826 |
(supp (p \<bullet> x)) - (p \<bullet> as)"}) and therefore has empty support. |
|
827 |
This in turn means |
|
1703 | 828 |
% |
829 |
\begin{center} |
|
1716 | 830 |
@{term "supp (supp_gen (Abs as x)) \<subseteq> supp (Abs as x)"} |
1703 | 831 |
\end{center} |
1687 | 832 |
|
833 |
\noindent |
|
1954
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
834 |
using \eqref{suppfun}. Assuming @{term "supp x - as"} is a finite set, |
1716 | 835 |
we further obtain |
1703 | 836 |
% |
837 |
\begin{equation}\label{halftwo} |
|
838 |
@{thm (concl) supp_abs_subset1(1)[no_vars]} |
|
839 |
\end{equation} |
|
840 |
||
841 |
\noindent |
|
1737
8b6a285ad480
polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents:
1736
diff
changeset
|
842 |
since for finite sets of atoms, @{text "bs"}, we have |
8b6a285ad480
polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents:
1736
diff
changeset
|
843 |
@{thm (concl) supp_finite_atom_set[where S="bs", no_vars]}. |
8b6a285ad480
polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents:
1736
diff
changeset
|
844 |
Finally, taking \eqref{halfone} and \eqref{halftwo} together establishes |
8b6a285ad480
polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents:
1736
diff
changeset
|
845 |
Theorem~\ref{suppabs}. |
1703 | 846 |
|
1737
8b6a285ad480
polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents:
1736
diff
changeset
|
847 |
The method of first considering abstractions of the |
1956
028705c98304
more polishing on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1954
diff
changeset
|
848 |
form @{term "Abs as x"} etc is motivated by the fact that |
028705c98304
more polishing on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1954
diff
changeset
|
849 |
we can conveniently establish at the Isabelle/HOL level |
028705c98304
more polishing on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1954
diff
changeset
|
850 |
properties about them. It would be |
028705c98304
more polishing on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1954
diff
changeset
|
851 |
laborious to write custom ML-code that derives automatically such properties |
1730
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
852 |
for every term-constructor that binds some atoms. Also the generality of |
2341 | 853 |
the definitions for $\alpha$-equivalence will help us in the next section. |
1517
62d6f7acc110
corrected the strong induction principle in the lambda-calculus case; gave a second (oartial) version that is more elegant
Christian Urban <urbanc@in.tum.de>
parents:
1506
diff
changeset
|
854 |
*} |
62d6f7acc110
corrected the strong induction principle in the lambda-calculus case; gave a second (oartial) version that is more elegant
Christian Urban <urbanc@in.tum.de>
parents:
1506
diff
changeset
|
855 |
|
2345 | 856 |
section {* Specifying General Bindings\label{sec:spec} *} |
1491
f970ca9b5bec
paper uses now a heap file - does not compile so long anymore
Christian Urban <urbanc@in.tum.de>
parents:
1485
diff
changeset
|
857 |
|
1520
6ac75fd979d4
more of the introduction
Christian Urban <urbanc@in.tum.de>
parents:
1517
diff
changeset
|
858 |
text {* |
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
859 |
Our choice of syntax for specifications is influenced by the existing |
1765
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
860 |
datatype package of Isabelle/HOL \cite{Berghofer99} and by the syntax of the |
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
861 |
Ott-tool \cite{ott-jfp}. For us a specification of a term-calculus is a |
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
862 |
collection of (possibly mutual recursive) type declarations, say @{text |
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
863 |
"ty\<AL>\<^isub>1, \<dots>, ty\<AL>\<^isub>n"}, and an associated collection of |
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
864 |
binding functions, say @{text "bn\<AL>\<^isub>1, \<dots>, bn\<AL>\<^isub>m"}. The |
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
865 |
syntax in Nominal Isabelle for such specifications is roughly as follows: |
1628 | 866 |
% |
1619 | 867 |
\begin{equation}\label{scheme} |
1636 | 868 |
\mbox{\begin{tabular}{@ {\hspace{-5mm}}p{1.8cm}l} |
1617
99cee15cb5ff
more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents:
1613
diff
changeset
|
869 |
type \mbox{declaration part} & |
1611 | 870 |
$\begin{cases} |
871 |
\mbox{\begin{tabular}{l} |
|
1765
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
872 |
\isacommand{nominal\_datatype} @{text "ty\<AL>\<^isub>1 = \<dots>"}\\ |
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
873 |
\isacommand{and} @{text "ty\<AL>\<^isub>2 = \<dots>"}\\ |
1587 | 874 |
$\ldots$\\ |
1765
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
875 |
\isacommand{and} @{text "ty\<AL>\<^isub>n = \<dots>"}\\ |
1611 | 876 |
\end{tabular}} |
877 |
\end{cases}$\\ |
|
1617
99cee15cb5ff
more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents:
1613
diff
changeset
|
878 |
binding \mbox{function part} & |
1611 | 879 |
$\begin{cases} |
880 |
\mbox{\begin{tabular}{l} |
|
1954
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
881 |
\isacommand{binder} @{text "bn\<AL>\<^isub>1"} \isacommand{and} \ldots \isacommand{and} @{text "bn\<AL>\<^isub>m"}\\ |
1611 | 882 |
\isacommand{where}\\ |
1587 | 883 |
$\ldots$\\ |
1611 | 884 |
\end{tabular}} |
885 |
\end{cases}$\\ |
|
1619 | 886 |
\end{tabular}} |
887 |
\end{equation} |
|
1587 | 888 |
|
889 |
\noindent |
|
1637 | 890 |
Every type declaration @{text ty}$^\alpha_{1..n}$ consists of a collection of |
2341 | 891 |
term-constructors, each of which comes with a list of labelled |
1620 | 892 |
types that stand for the types of the arguments of the term-constructor. |
1765
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
893 |
For example a term-constructor @{text "C\<^sup>\<alpha>"} might be specified with |
1611 | 894 |
|
895 |
\begin{center} |
|
1637 | 896 |
@{text "C\<^sup>\<alpha> label\<^isub>1::ty"}$'_1$ @{text "\<dots> label\<^isub>l::ty"}$'_l\;\;$ @{text "binding_clauses"} |
1611 | 897 |
\end{center} |
1587 | 898 |
|
1611 | 899 |
\noindent |
2128 | 900 |
whereby some of the @{text ty}$'_{1..l}$ (or their components) can be contained |
1730
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
901 |
in the collection of @{text ty}$^\alpha_{1..n}$ declared in |
1737
8b6a285ad480
polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents:
1736
diff
changeset
|
902 |
\eqref{scheme}. |
1765
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
903 |
In this case we will call the corresponding argument a |
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
904 |
\emph{recursive argument} of @{text "C\<^sup>\<alpha>"}. |
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
905 |
%The types of such recursive |
1737
8b6a285ad480
polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents:
1736
diff
changeset
|
906 |
%arguments need to satisfy a ``positivity'' |
8b6a285ad480
polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents:
1736
diff
changeset
|
907 |
%restriction, which ensures that the type has a set-theoretic semantics |
8b6a285ad480
polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents:
1736
diff
changeset
|
908 |
%\cite{Berghofer99}. |
8b6a285ad480
polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents:
1736
diff
changeset
|
909 |
The labels |
1730
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
910 |
annotated on the types are optional. Their purpose is to be used in the |
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
911 |
(possibly empty) list of \emph{binding clauses}, which indicate the binders |
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
912 |
and their scope in a term-constructor. They come in three \emph{modes}: |
1587 | 913 |
|
1611 | 914 |
\begin{center} |
1617
99cee15cb5ff
more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents:
1613
diff
changeset
|
915 |
\begin{tabular}{l} |
2343 | 916 |
\isacommand{bind}\; {\it binders}\; \isacommand{in}\; {\it bodies}\\ |
917 |
\isacommand{bind\_set}\; {\it binders}\; \isacommand{in}\; {\it bodies}\\ |
|
918 |
\isacommand{bind\_res}\; {\it binders}\; \isacommand{in}\; {\it bodies}\\ |
|
1617
99cee15cb5ff
more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents:
1613
diff
changeset
|
919 |
\end{tabular} |
1611 | 920 |
\end{center} |
921 |
||
922 |
\noindent |
|
1730
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
923 |
The first mode is for binding lists of atoms (the order of binders matters); |
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
924 |
the second is for sets of binders (the order does not matter, but the |
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
925 |
cardinality does) and the last is for sets of binders (with vacuous binders |
2343 | 926 |
preserving $\alpha$-equivalence). As indicated, the ``\isacommand{in}-part'' of a binding |
927 |
clause will be called \emph{bodies}; the |
|
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
928 |
``\isacommand{bind}-part'' will be called \emph{binders}. In contrast to |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
929 |
Ott, we allow multiple labels in binders and bodies. For example we allow |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
930 |
binding clauses of the form: |
1956
028705c98304
more polishing on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1954
diff
changeset
|
931 |
|
028705c98304
more polishing on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1954
diff
changeset
|
932 |
\begin{center} |
2156 | 933 |
\begin{tabular}{@ {}ll@ {}} |
2341 | 934 |
@{text "Foo\<^isub>1 x::name y::name t::trm s::trm"} & |
2156 | 935 |
\isacommand{bind} @{text "x y"} \isacommand{in} @{text "t s"}\\ |
2341 | 936 |
@{text "Foo\<^isub>2 x::name y::name t::trm s::trm"} & |
2156 | 937 |
\isacommand{bind} @{text "x y"} \isacommand{in} @{text "t"}, |
938 |
\isacommand{bind} @{text "x y"} \isacommand{in} @{text "s"}\\ |
|
1956
028705c98304
more polishing on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1954
diff
changeset
|
939 |
\end{tabular} |
028705c98304
more polishing on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1954
diff
changeset
|
940 |
\end{center} |
028705c98304
more polishing on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1954
diff
changeset
|
941 |
|
028705c98304
more polishing on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1954
diff
changeset
|
942 |
\noindent |
2343 | 943 |
Similarly for the other binding modes. |
944 |
%Interestingly, in case of \isacommand{bind\_set} |
|
945 |
%and \isacommand{bind\_res} the binding clauses above will make a difference to the semantics |
|
946 |
%of the specifications (the corresponding $\alpha$-equivalence will differ). We will |
|
947 |
%show this later with an example. |
|
2140 | 948 |
|
2347 | 949 |
There are also some restrictions we need to impose on our binding clauses in comparison to |
950 |
the ones of Ott. The |
|
2343 | 951 |
main idea behind these restrictions is that we obtain a sensible notion of |
2347 | 952 |
$\alpha$-equivalence where it is ensured that within a given scope an |
2348 | 953 |
atom occurrence cannot be both bound and free at the same time. The first |
2344 | 954 |
restriction is that a body can only occur in |
2343 | 955 |
\emph{one} binding clause of a term constructor (this ensures that the bound |
2347 | 956 |
atoms of a body cannot be free at the same time by specifying an |
2344 | 957 |
alternative binder for the same body). For binders we distinguish between |
2343 | 958 |
\emph{shallow} and \emph{deep} binders. Shallow binders are just |
959 |
labels. The restriction we need to impose on them is that in case of |
|
960 |
\isacommand{bind\_set} and \isacommand{bind\_res} the labels must either |
|
961 |
refer to atom types or to sets of atom types; in case of \isacommand{bind} |
|
962 |
the labels must refer to atom types or lists of atom types. Two examples for |
|
963 |
the use of shallow binders are the specification of lambda-terms, where a |
|
964 |
single name is bound, and type-schemes, where a finite set of names is |
|
965 |
bound: |
|
966 |
||
1611 | 967 |
|
968 |
\begin{center} |
|
1612 | 969 |
\begin{tabular}{@ {}cc@ {}} |
970 |
\begin{tabular}{@ {}l@ {\hspace{-1mm}}} |
|
2341 | 971 |
\isacommand{nominal\_datatype} @{text lam} $=$\\ |
1719
0c3c66f5c0e7
removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents:
1717
diff
changeset
|
972 |
\hspace{5mm}\phantom{$\mid$}~@{text "Var name"}\\ |
0c3c66f5c0e7
removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents:
1717
diff
changeset
|
973 |
\hspace{5mm}$\mid$~@{text "App lam lam"}\\ |
0c3c66f5c0e7
removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents:
1717
diff
changeset
|
974 |
\hspace{5mm}$\mid$~@{text "Lam x::name t::lam"}\\ |
0c3c66f5c0e7
removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents:
1717
diff
changeset
|
975 |
\hspace{21mm}\isacommand{bind} @{text x} \isacommand{in} @{text t}\\ |
1611 | 976 |
\end{tabular} & |
1612 | 977 |
\begin{tabular}{@ {}l@ {}} |
2341 | 978 |
\isacommand{nominal\_datatype}~@{text ty} $=$\\ |
1719
0c3c66f5c0e7
removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents:
1717
diff
changeset
|
979 |
\hspace{5mm}\phantom{$\mid$}~@{text "TVar name"}\\ |
0c3c66f5c0e7
removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents:
1717
diff
changeset
|
980 |
\hspace{5mm}$\mid$~@{text "TFun ty ty"}\\ |
0c3c66f5c0e7
removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents:
1717
diff
changeset
|
981 |
\isacommand{and}~@{text "tsc = All xs::(name fset) T::ty"}\\ |
0c3c66f5c0e7
removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents:
1717
diff
changeset
|
982 |
\hspace{24mm}\isacommand{bind\_res} @{text xs} \isacommand{in} @{text T}\\ |
1611 | 983 |
\end{tabular} |
984 |
\end{tabular} |
|
985 |
\end{center} |
|
1587 | 986 |
|
1612 | 987 |
\noindent |
2341 | 988 |
In these specifications @{text "name"} refers to an atom type, and @{text |
989 |
"fset"} to the type of finite sets. |
|
2156 | 990 |
Note that for @{text lam} it does not matter which binding mode we use. The |
991 |
reason is that we bind only a single @{text name}. However, having |
|
2175 | 992 |
\isacommand{bind\_set} or \isacommand{bind} in the second case makes a |
2345 | 993 |
difference to the semantics of the specification (which we will define in the next section). |
2156 | 994 |
|
2128 | 995 |
|
2134 | 996 |
A \emph{deep} binder uses an auxiliary binding function that ``picks'' out |
2156 | 997 |
the atoms in one argument of the term-constructor, which can be bound in |
998 |
other arguments and also in the same argument (we will call such binders |
|
2341 | 999 |
\emph{recursive}, see below). The binding functions are |
2156 | 1000 |
expected to return either a set of atoms (for \isacommand{bind\_set} and |
1001 |
\isacommand{bind\_res}) or a list of atoms (for \isacommand{bind}). They can |
|
2343 | 1002 |
be defined by recursion over the corresponding type; the equations |
2156 | 1003 |
must be given in the binding function part of the scheme shown in |
1004 |
\eqref{scheme}. For example a term-calculus containing @{text "Let"}s with |
|
1005 |
tuple patterns might be specified as: |
|
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1006 |
% |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1007 |
\begin{equation}\label{letpat} |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1008 |
\mbox{% |
1619 | 1009 |
\begin{tabular}{l} |
1719
0c3c66f5c0e7
removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents:
1717
diff
changeset
|
1010 |
\isacommand{nominal\_datatype} @{text trm} =\\ |
0c3c66f5c0e7
removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents:
1717
diff
changeset
|
1011 |
\hspace{5mm}\phantom{$\mid$}~@{term "Var name"}\\ |
0c3c66f5c0e7
removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents:
1717
diff
changeset
|
1012 |
\hspace{5mm}$\mid$~@{term "App trm trm"}\\ |
0c3c66f5c0e7
removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents:
1717
diff
changeset
|
1013 |
\hspace{5mm}$\mid$~@{text "Lam x::name t::trm"} |
0c3c66f5c0e7
removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents:
1717
diff
changeset
|
1014 |
\;\;\isacommand{bind} @{text x} \isacommand{in} @{text t}\\ |
0c3c66f5c0e7
removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents:
1717
diff
changeset
|
1015 |
\hspace{5mm}$\mid$~@{text "Let p::pat trm t::trm"} |
0c3c66f5c0e7
removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents:
1717
diff
changeset
|
1016 |
\;\;\isacommand{bind} @{text "bn(p)"} \isacommand{in} @{text t}\\ |
0c3c66f5c0e7
removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents:
1717
diff
changeset
|
1017 |
\isacommand{and} @{text pat} =\\ |
0c3c66f5c0e7
removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents:
1717
diff
changeset
|
1018 |
\hspace{5mm}\phantom{$\mid$}~@{text PNil}\\ |
0c3c66f5c0e7
removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents:
1717
diff
changeset
|
1019 |
\hspace{5mm}$\mid$~@{text "PVar name"}\\ |
0c3c66f5c0e7
removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents:
1717
diff
changeset
|
1020 |
\hspace{5mm}$\mid$~@{text "PTup pat pat"}\\ |
1954
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1021 |
\isacommand{binder}~@{text "bn::pat \<Rightarrow> atom list"}\\ |
1719
0c3c66f5c0e7
removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents:
1717
diff
changeset
|
1022 |
\isacommand{where}~@{text "bn(PNil) = []"}\\ |
0c3c66f5c0e7
removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents:
1717
diff
changeset
|
1023 |
\hspace{5mm}$\mid$~@{text "bn(PVar x) = [atom x]"}\\ |
2341 | 1024 |
\hspace{5mm}$\mid$~@{text "bn(PTup p\<^isub>1 p\<^isub>2) = bn(p\<^isub>1) @ bn(p\<^isub>2)"}\smallskip\\ |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1025 |
\end{tabular}} |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1026 |
\end{equation} |
1617
99cee15cb5ff
more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents:
1613
diff
changeset
|
1027 |
|
1619 | 1028 |
\noindent |
2140 | 1029 |
In this specification the function @{text "bn"} determines which atoms of |
2346 | 1030 |
the pattern @{text p} are bound in the argument @{text "t"}. Note that in the |
2140 | 1031 |
second-last @{text bn}-clause the function @{text "atom"} coerces a name |
1032 |
into the generic atom type of Nominal Isabelle \cite{HuffmanUrban10}. This |
|
1033 |
allows us to treat binders of different atom type uniformly. |
|
1637 | 1034 |
|
2140 | 1035 |
As said above, for deep binders we allow binding clauses such as |
1036 |
% |
|
1620 | 1037 |
\begin{center} |
1038 |
\begin{tabular}{ll} |
|
2140 | 1039 |
@{text "Bar p::pat t::trm"} & |
1954
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1040 |
\isacommand{bind} @{text "bn(p)"} \isacommand{in} @{text "p t"}\\ |
1620 | 1041 |
\end{tabular} |
1042 |
\end{center} |
|
1043 |
||
1044 |
\noindent |
|
2344 | 1045 |
where the argument of the deep binder also occurs in the body. We call such |
2140 | 1046 |
binders \emph{recursive}. To see the purpose of such recursive binders, |
1047 |
compare ``plain'' @{text "Let"}s and @{text "Let_rec"}s in the following |
|
1048 |
specification: |
|
2343 | 1049 |
% |
1725
1801cc460fc9
polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents:
1724
diff
changeset
|
1050 |
\begin{equation}\label{letrecs} |
1801cc460fc9
polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents:
1724
diff
changeset
|
1051 |
\mbox{% |
1637 | 1052 |
\begin{tabular}{@ {}l@ {}} |
1725
1801cc460fc9
polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents:
1724
diff
changeset
|
1053 |
\isacommand{nominal\_datatype}~@{text "trm ="}\\ |
1636 | 1054 |
\hspace{5mm}\phantom{$\mid$}\ldots\\ |
1725
1801cc460fc9
polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents:
1724
diff
changeset
|
1055 |
\hspace{5mm}$\mid$~@{text "Let as::assn t::trm"} |
1801cc460fc9
polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents:
1724
diff
changeset
|
1056 |
\;\;\isacommand{bind} @{text "bn(as)"} \isacommand{in} @{text t}\\ |
1954
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1057 |
\hspace{5mm}$\mid$~@{text "Let_rec as::assn t::trm"} |
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1058 |
\;\;\isacommand{bind} @{text "bn(as)"} \isacommand{in} @{text "as t"}\\ |
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1059 |
\isacommand{and} @{text "ass"} =\\ |
1725
1801cc460fc9
polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents:
1724
diff
changeset
|
1060 |
\hspace{5mm}\phantom{$\mid$}~@{text "ANil"}\\ |
1801cc460fc9
polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents:
1724
diff
changeset
|
1061 |
\hspace{5mm}$\mid$~@{text "ACons name trm assn"}\\ |
1954
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1062 |
\isacommand{binder} @{text "bn::assn \<Rightarrow> atom list"}\\ |
1725
1801cc460fc9
polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents:
1724
diff
changeset
|
1063 |
\isacommand{where}~@{text "bn(ANil) = []"}\\ |
1801cc460fc9
polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents:
1724
diff
changeset
|
1064 |
\hspace{5mm}$\mid$~@{text "bn(ACons a t as) = [atom a] @ bn(as)"}\\ |
1801cc460fc9
polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents:
1724
diff
changeset
|
1065 |
\end{tabular}} |
1801cc460fc9
polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents:
1724
diff
changeset
|
1066 |
\end{equation} |
1636 | 1067 |
|
1068 |
\noindent |
|
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
1069 |
The difference is that with @{text Let} we only want to bind the atoms @{text |
1730
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
1070 |
"bn(as)"} in the term @{text t}, but with @{text "Let_rec"} we also want to bind the atoms |
2346 | 1071 |
inside the assignment. This difference has consequences for the associated |
2347 | 1072 |
notions of free-atoms and $\alpha$-equivalence. |
2341 | 1073 |
|
2347 | 1074 |
To make sure that atoms bound by deep binders cannot be free at the |
2346 | 1075 |
same time, we cannot have more than one binding function for a deep binder. |
2344 | 1076 |
Consequently we exclude specifications such as |
2140 | 1077 |
|
1078 |
\begin{center} |
|
2341 | 1079 |
\begin{tabular}{@ {}l@ {\hspace{2mm}}l@ {}} |
1080 |
@{text "Baz\<^isub>1 p::pat t::trm"} & |
|
2140 | 1081 |
\isacommand{bind} @{text "bn\<^isub>1(p) bn\<^isub>2(p)"} \isacommand{in} @{text t}\\ |
2341 | 1082 |
@{text "Baz\<^isub>2 p::pat t\<^isub>1::trm t\<^isub>2::trm"} & |
1083 |
\isacommand{bind} @{text "bn\<^isub>1(p)"} \isacommand{in} @{text "t\<^isub>1"}, |
|
1084 |
\isacommand{bind} @{text "bn\<^isub>2(p)"} \isacommand{in} @{text "t\<^isub>2"}\\ |
|
2140 | 1085 |
\end{tabular} |
1086 |
\end{center} |
|
1087 |
||
1088 |
\noindent |
|
2344 | 1089 |
Otherwise it is possible that @{text "bn\<^isub>1"} and @{text "bn\<^isub>2"} pick |
2348 | 1090 |
out different atoms to become bound, respectively be free, in @{text "p"}. |
1091 |
(Since the Ott-tool does not derive a reasoning for $\alpha$-equated terms, it can permit |
|
1092 |
such specifications.) |
|
2343 | 1093 |
|
2344 | 1094 |
We also need to restrict the form of the binding functions in order |
2345 | 1095 |
to ensure the @{text "bn"}-functions can be defined for $\alpha$-equated |
2346 | 1096 |
terms. The main restriction is that we cannot return an atom in a binding function that is also |
1097 |
bound in the corresponding term-constructor. That means in \eqref{letpat} |
|
1098 |
that the term-constructors @{text PVar} and @{text PTup} may |
|
1961 | 1099 |
not have a binding clause (all arguments are used to define @{text "bn"}). |
1100 |
In contrast, in case of \eqref{letrecs} the term-constructor @{text ACons} |
|
2341 | 1101 |
may have a binding clause involving the argument @{text t} (the only one that |
2343 | 1102 |
is \emph{not} used in the definition of the binding function). This restriction |
2345 | 1103 |
is sufficient for defining the binding function over $\alpha$-equated terms. |
2341 | 1104 |
|
1105 |
In the version of |
|
1961 | 1106 |
Nominal Isabelle described here, we also adopted the restriction from the |
1107 |
Ott-tool that binding functions can only return: the empty set or empty list |
|
1108 |
(as in case @{text PNil}), a singleton set or singleton list containing an |
|
1109 |
atom (case @{text PVar}), or unions of atom sets or appended atom lists |
|
2341 | 1110 |
(case @{text PTup}). This restriction will simplify some automatic definitions and proofs |
1961 | 1111 |
later on. |
1112 |
||
2347 | 1113 |
In order to simplify our definitions of free atoms and $\alpha$-equivalence, |
2343 | 1114 |
we shall assume specifications |
2341 | 1115 |
of term-calculi are implicitly \emph{completed}. By this we mean that |
1954
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1116 |
for every argument of a term-constructor that is \emph{not} |
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
1117 |
already part of a binding clause given by the user, we add implicitly a special \emph{empty} binding |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
1118 |
clause, written \isacommand{bind}~@{term "{}"}~\isacommand{in}~@{text "labels"}. In case |
1956
028705c98304
more polishing on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1954
diff
changeset
|
1119 |
of the lambda-calculus, the completion produces |
1954
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1120 |
|
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1121 |
\begin{center} |
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1122 |
\begin{tabular}{@ {}l@ {\hspace{-1mm}}} |
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1123 |
\isacommand{nominal\_datatype} @{text lam} =\\ |
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1124 |
\hspace{5mm}\phantom{$\mid$}~@{text "Var x::name"} |
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1125 |
\;\;\isacommand{bind}~@{term "{}"}~\isacommand{in}~@{text "x"}\\ |
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1126 |
\hspace{5mm}$\mid$~@{text "App t\<^isub>1::lam t\<^isub>2::lam"} |
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
1127 |
\;\;\isacommand{bind}~@{term "{}"}~\isacommand{in}~@{text "t\<^isub>1 t\<^isub>2"}\\ |
1954
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1128 |
\hspace{5mm}$\mid$~@{text "Lam x::name t::lam"} |
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1129 |
\;\;\isacommand{bind}~@{text x} \isacommand{in} @{text t}\\ |
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1130 |
\end{tabular} |
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1131 |
\end{center} |
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1132 |
|
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1133 |
\noindent |
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1134 |
The point of completion is that we can make definitions over the binding |
1961 | 1135 |
clauses and be sure to have captured all arguments of a term constructor. |
2342 | 1136 |
*} |
1954
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1137 |
|
2347 | 1138 |
section {* Alpha-Equivalence and Free Atoms\label{sec:alpha} *} |
2342 | 1139 |
|
1140 |
text {* |
|
1637 | 1141 |
Having dealt with all syntax matters, the problem now is how we can turn |
1142 |
specifications into actual type definitions in Isabelle/HOL and then |
|
1926 | 1143 |
establish a reasoning infrastructure for them. As |
1956
028705c98304
more polishing on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1954
diff
changeset
|
1144 |
Pottier and Cheney pointed out \cite{Pottier06,Cheney05}, just |
1954
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1145 |
re-arranging the arguments of |
1956
028705c98304
more polishing on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1954
diff
changeset
|
1146 |
term-constructors so that binders and their bodies are next to each other will |
2347 | 1147 |
result in inadequate representations in cases like @{text "Let x\<^isub>1 = t\<^isub>1\<dots>x\<^isub>n = t\<^isub>n in s"}. |
2343 | 1148 |
Therefore we will first |
2346 | 1149 |
extract ``raw'' datatype definitions from the specification and then define |
2343 | 1150 |
explicitly an $\alpha$-equivalence relation over them. We subsequently |
1151 |
quotient the datatypes according to our $\alpha$-equivalence. |
|
1637 | 1152 |
|
1153 |
||
2346 | 1154 |
The ``raw'' datatype definition can be obtained by stripping off the |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
1155 |
binding clauses and the labels from the types. We also have to invent |
1637 | 1156 |
new names for the types @{text "ty\<^sup>\<alpha>"} and term-constructors @{text "C\<^sup>\<alpha>"} |
1756 | 1157 |
given by the user. In our implementation we just use the affix ``@{text "_raw"}''. |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
1158 |
But for the purpose of this paper, we use the superscript @{text "_\<^sup>\<alpha>"} to indicate |
2341 | 1159 |
that a notion is defined over $\alpha$-equivalence classes and leave it out |
1724
8c788ad71752
cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents:
1723
diff
changeset
|
1160 |
for the corresponding notion defined on the ``raw'' level. So for example |
8c788ad71752
cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents:
1723
diff
changeset
|
1161 |
we have |
8c788ad71752
cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents:
1723
diff
changeset
|
1162 |
|
1636 | 1163 |
\begin{center} |
1723
1cd509cba23f
tuned beginning of section 4
Christian Urban <urbanc@in.tum.de>
parents:
1722
diff
changeset
|
1164 |
@{text "ty\<^sup>\<alpha> \<mapsto> ty"} \hspace{2mm}and\hspace{2mm} @{text "C\<^sup>\<alpha> \<mapsto> C"} |
1636 | 1165 |
\end{center} |
1166 |
||
1167 |
\noindent |
|
1730
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
1168 |
where @{term ty} is the type used in the quotient construction for |
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
1169 |
@{text "ty\<^sup>\<alpha>"} and @{text "C"} is the term-constructor on the ``raw'' type @{text "ty"}. |
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
1170 |
|
1637 | 1171 |
The resulting datatype definition is legal in Isabelle/HOL provided the datatypes are |
1172 |
non-empty and the types in the constructors only occur in positive |
|
2348 | 1173 |
position (see \cite{Berghofer99} for an in-depth description of the datatype package |
1174 |
in Isabelle/HOL). We subsequently define each of the user-specified binding |
|
1175 |
functions @{term "bn"}$_{1..m}$ by recursion over the corresponding |
|
1730
cfd3a7368543
polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents:
1728
diff
changeset
|
1176 |
raw datatype. We can also easily define permutation operations by |
2345 | 1177 |
recursion so that for each term constructor @{text "C"} we have that |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1178 |
% |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1179 |
\begin{equation}\label{ceqvt} |
1961 | 1180 |
@{text "p \<bullet> (C z\<^isub>1 \<dots> z\<^isub>n) = C (p \<bullet> z\<^isub>1) \<dots> (p \<bullet> z\<^isub>n)"} |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1181 |
\end{equation} |
2343 | 1182 |
|
2341 | 1183 |
The first non-trivial step we have to perform is the generation of |
2348 | 1184 |
free-atom functions from the specification. For the |
2347 | 1185 |
\emph{raw} types @{text "ty"}$_{1..n}$ we define the free-atom functions |
2343 | 1186 |
% |
1187 |
\begin{equation}\label{fvars} |
|
2347 | 1188 |
@{text "fa_ty\<^isub>1, \<dots>, fa_ty\<^isub>n"} |
2343 | 1189 |
\end{equation} |
2341 | 1190 |
|
1191 |
\noindent |
|
2346 | 1192 |
by mutual recursion. |
2347 | 1193 |
We define these functions together with auxiliary free-atom functions for |
2343 | 1194 |
the binding functions. Given raw binding functions @{text "bn"}$_{1..m}$ |
1195 |
we define |
|
1196 |
% |
|
2341 | 1197 |
\begin{center} |
2347 | 1198 |
@{text "fa_bn\<^isub>1, \<dots>, fa_bn\<^isub>m"} |
2341 | 1199 |
\end{center} |
1200 |
||
1201 |
\noindent |
|
1202 |
The reason for this setup is that in a deep binder not all atoms have to be |
|
1203 |
bound, as we saw in the example with ``plain'' @{text Let}s. We need therefore a function |
|
2348 | 1204 |
that calculates those free atoms in a deep binder. |
2343 | 1205 |
|
2347 | 1206 |
While the idea behind these free-atom functions is clear (they just |
2343 | 1207 |
collect all atoms that are not bound), because of our rather complicated |
2345 | 1208 |
binding mechanisms their definitions are somewhat involved. Given |
2346 | 1209 |
a term-constructor @{text "C"} of type @{text ty} and some associated |
2344 | 1210 |
binding clauses @{text "bc\<^isub>1\<dots>bc\<^isub>k"}, the result of @{text |
2347 | 1211 |
"fa_ty (C z\<^isub>1 \<dots> z\<^isub>n)"} will be the union @{text |
2348 | 1212 |
"fa(bc\<^isub>1) \<union> \<dots> \<union> fa(bc\<^isub>k)"} where we will define below what @{text "fa"} for a binding |
2347 | 1213 |
clause means. We only show the details for the mode \isacommand{bind\_set} (the other modes are similar). |
2345 | 1214 |
Suppose the binding clause @{text bc\<^isub>i} is of the form |
2343 | 1215 |
% |
2348 | 1216 |
\begin{center} |
2344 | 1217 |
\mbox{\isacommand{bind\_set} @{text "b\<^isub>1\<dots>b\<^isub>p"} \isacommand{in} @{text "d\<^isub>1\<dots>d\<^isub>q"}} |
2348 | 1218 |
\end{center} |
2341 | 1219 |
|
2343 | 1220 |
\noindent |
2344 | 1221 |
in which the body-labels @{text "d"}$_{1..q}$ refer to types @{text ty}$_{1..q}$, |
1222 |
and the binders @{text b}$_{1..p}$ |
|
2343 | 1223 |
either refer to labels of atom types (in case of shallow binders) or to binding |
2348 | 1224 |
functions taking a single label as argument (in case of deep binders). Assuming |
1225 |
@{text "D"} stands for the set of free atoms of the bodies, @{text B} for the |
|
1226 |
set of binding atoms in the binders and @{text "B'"} for the set of free atoms in |
|
2344 | 1227 |
non-recursive deep binders, |
2348 | 1228 |
then the free atoms of the binding clause @{text bc\<^isub>i} are |
2343 | 1229 |
% |
2348 | 1230 |
\begin{equation}\label{fadef} |
1231 |
\mbox{@{text "fa(bc\<^isub>i) \<equiv> (D - B) \<union> B'"}}. |
|
1232 |
\end{equation} |
|
2343 | 1233 |
|
1234 |
\noindent |
|
2348 | 1235 |
The set @{text D} is formally defined as |
2343 | 1236 |
% |
1237 |
\begin{center} |
|
2347 | 1238 |
@{text "D \<equiv> fa_ty\<^isub>1 d\<^isub>1 \<union> ... \<union> fa_ty\<^isub>q d\<^isub>q"} |
2343 | 1239 |
\end{center} |
1240 |
||
1241 |
\noindent |
|
2348 | 1242 |
where in case @{text "d\<^isub>i"} refers to one of the raw types @{text "ty"}$_{1..n}$ from the |
1243 |
specification, the function @{text "fa_ty\<^isub>i"} is the corresponding free-atom function |
|
1244 |
we are defining by recursion |
|
1245 |
(see \eqref{fvars}); otherwise we set @{text "fa_ty\<^isub>i d\<^isub>i = supp d\<^isub>i"}. |
|
1246 |
||
1247 |
In order to formally define the set @{text B} we use the following auxiliary @{text "bn"}-functions |
|
1248 |
for atom types to which shallow binders may refer |
|
2344 | 1249 |
% |
1954
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1250 |
\begin{center} |
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1251 |
\begin{tabular}{r@ {\hspace{2mm}}c@ {\hspace{2mm}}l} |
2345 | 1252 |
@{text "bn_atom a"} & @{text "\<equiv>"} & @{text "{atom a}"}\\ |
1253 |
@{text "bn_atom_set as"} & @{text "\<equiv>"} & @{text "atoms as"}\\ |
|
1254 |
@{text "bn_atom_list as"} & @{text "\<equiv>"} & @{text "atoms (set as)"} |
|
1954
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1255 |
\end{tabular} |
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1256 |
\end{center} |
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1257 |
|
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1258 |
\noindent |
2348 | 1259 |
Like the function @{text atom}, the function @{text "atoms"} coerces |
1260 |
a set of atoms to a set of the generic atom type. It is defined as |
|
2344 | 1261 |
@{text "atoms as \<equiv> {atom a | a \<in> as}"}. |
2345 | 1262 |
The set @{text B} is then formally defined as |
2344 | 1263 |
% |
1264 |
\begin{center} |
|
1265 |
@{text "B \<equiv> bn_ty\<^isub>1 b\<^isub>1 \<union> ... \<union> bn_ty\<^isub>p b\<^isub>p"} |
|
1266 |
\end{center} |
|
1954
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1267 |
|
2344 | 1268 |
\noindent |
2348 | 1269 |
where we use the auxiliary binding functions for shallow binders. |
2344 | 1270 |
The set @{text "B'"} collects all free atoms in non-recursive deep |
2347 | 1271 |
binders. Let us assume these binders in @{text "bc\<^isub>i"} are |
1956
028705c98304
more polishing on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1954
diff
changeset
|
1272 |
% |
2344 | 1273 |
\begin{center} |
2348 | 1274 |
@{text "bn\<^isub>1 l\<^isub>1, \<dots>, bn\<^isub>r l\<^isub>r"} |
2344 | 1275 |
\end{center} |
1276 |
||
1277 |
\noindent |
|
2348 | 1278 |
with none of the @{text "l"}$_{1..r}$ being among the bodies @{text |
2345 | 1279 |
"d"}$_{1..q}$. The set @{text "B'"} is defined as |
2344 | 1280 |
% |
1281 |
\begin{center} |
|
2348 | 1282 |
@{text "B' \<equiv> fa_bn\<^isub>1 l\<^isub>1 \<union> ... \<union> fa_bn\<^isub>r l\<^isub>r"} |
2344 | 1283 |
\end{center} |
1628 | 1284 |
|
1636 | 1285 |
\noindent |
2348 | 1286 |
This completes the definition of the free-atom functions @{text "fa_ty"}$_{1..n}$. |
2344 | 1287 |
|
2348 | 1288 |
Note that for non-recursive deep binders, we have to add in \eqref{fadef} |
1289 |
the set of atoms that are left unbound by the binding functions @{text |
|
1290 |
"bn"}$_{1..m}$. We use for the definition of |
|
1291 |
this set the functions @{text "fa_bn"}$_{1..m}$, which are also defined by mutual |
|
1292 |
recursion. Assume the user specified a @{text bn}-clause of the form |
|
1956
028705c98304
more polishing on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1954
diff
changeset
|
1293 |
% |
2344 | 1294 |
\begin{center} |
2347 | 1295 |
@{text "bn (C z\<^isub>1 \<dots> z\<^isub>s) = rhs"} |
2344 | 1296 |
\end{center} |
1628 | 1297 |
|
1954
23480003f9c5
some changes to the paper
Christian Urban <urbanc@in.tum.de>
parents:
1926
diff
changeset
|
1298 |
\noindent |
2347 | 1299 |
where the @{text "z"}$_{1..s}$ are of types @{text "ty"}$_{1..s}$. For each of |
2345 | 1300 |
the arguments we calculate the free atoms as follows: |
2344 | 1301 |
% |
1302 |
\begin{center} |
|
1303 |
\begin{tabular}{c@ {\hspace{2mm}}p{7cm}} |
|
2347 | 1304 |
$\bullet$ & @{term "fa_ty\<^isub>i z\<^isub>i"} provided @{text "z\<^isub>i"} does not occur in @{text "rhs"} |
2348 | 1305 |
(that means nothing is bound in @{text "z\<^isub>i"} by the binding function),\\ |
2347 | 1306 |
$\bullet$ & @{term "fa_bn\<^isub>i z\<^isub>i"} provided @{text "z\<^isub>i"} occurs in @{text "rhs"} |
2345 | 1307 |
with the recursive call @{text "bn\<^isub>i z\<^isub>i"}, and\\ |
2344 | 1308 |
$\bullet$ & @{term "{}"} provided @{text "z\<^isub>i"} occurs in @{text "rhs"}, |
2347 | 1309 |
but without a recursive call. |
2344 | 1310 |
\end{tabular} |
1311 |
\end{center} |
|
1758
731d39fb26b7
Update fv_bn definition for bindings allowed in types for which bn is present.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1756
diff
changeset
|
1312 |
|
2344 | 1313 |
\noindent |
2348 | 1314 |
For defining @{text "fa_bn (C z\<^isub>1 \<dots> z\<^isub>n)"} we just union up all these sets. |
2344 | 1315 |
|
2348 | 1316 |
To see how these definitions work in practice, let us reconsider the |
1317 |
term-constructors @{text "Let"} and @{text "Let_rec"} shown in |
|
1318 |
\eqref{letrecs} together with the term-constructors for assignments @{text |
|
1319 |
"ANil"} and @{text "ACons"}. Since there is a binding function defined for |
|
1320 |
assignments, we have three free-atom functions, namely @{text |
|
1321 |
"fa\<^bsub>trm\<^esub>"}, @{text "fa\<^bsub>assn\<^esub>"} and @{text |
|
1322 |
"fa\<^bsub>bn\<^esub>"} as follows: |
|
1725
1801cc460fc9
polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents:
1724
diff
changeset
|
1323 |
% |
1801cc460fc9
polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents:
1724
diff
changeset
|
1324 |
\begin{center} |
1801cc460fc9
polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents:
1724
diff
changeset
|
1325 |
\begin{tabular}{@ {}l@ {\hspace{1mm}}c@ {\hspace{1mm}}l@ {}} |
2347 | 1326 |
@{text "fa\<^bsub>trm\<^esub> (Let as t)"} & @{text "="} & @{text "(fa\<^bsub>trm\<^esub> t - set (bn as)) \<union> fa\<^bsub>bn\<^esub> as"}\\ |
1327 |
@{text "fa\<^bsub>trm\<^esub> (Let_rec as t)"} & @{text "="} & @{text "(fa\<^bsub>assn\<^esub> as \<union> fa\<^bsub>trm\<^esub> t) - set (bn as)"}\\[1mm] |
|
1725
1801cc460fc9
polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents:
1724
diff
changeset
|
1328 |
|
2347 | 1329 |
@{text "fa\<^bsub>assn\<^esub> (ANil)"} & @{text "="} & @{term "{}"}\\ |
1330 |
@{text "fa\<^bsub>assn\<^esub> (ACons a t as)"} & @{text "="} & @{text "(supp a) \<union> (fa\<^bsub>trm\<^esub> t) \<union> (fa\<^bsub>assn\<^esub> as)"}\\[1mm] |
|
1725
1801cc460fc9
polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents:
1724
diff
changeset
|
1331 |
|
2347 | 1332 |
@{text "fa\<^bsub>bn\<^esub> (ANil)"} & @{text "="} & @{term "{}"}\\ |
1333 |
@{text "fa\<^bsub>bn\<^esub> (ACons a t as)"} & @{text "="} & @{text "(fa\<^bsub>trm\<^esub> t) \<union> (fa\<^bsub>bn\<^esub> as)"} |
|
1725
1801cc460fc9
polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents:
1724
diff
changeset
|
1334 |
\end{tabular} |
1801cc460fc9
polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents:
1724
diff
changeset
|
1335 |
\end{center} |
1801cc460fc9
polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents:
1724
diff
changeset
|
1336 |
|
1801cc460fc9
polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents:
1724
diff
changeset
|
1337 |
\noindent |
2348 | 1338 |
For these definitions, recall that @{text ANil} and @{text "ACons"} have no |
2347 | 1339 |
binding clause in the specification. The corresponding free-atom |
2348 | 1340 |
function @{text "fa\<^bsub>assn\<^esub>"} therefore returns all free atoms |
1341 |
occurring in an assignment (in case of @{text "ACons"}, they are given by |
|
1342 |
calls to @{text supp}, @{text "fa\<^bsub>trm\<^esub>"} and @{text "fa\<^bsub>assn\<^esub>"}). |
|
1343 |
The binding only takes place in @{text Let} and |
|
1344 |
@{text "Let_rec"}. In case of @{text "Let"}, the binding clause specifies |
|
2345 | 1345 |
that all atoms given by @{text "set (bn as)"} have to be bound in @{text |
1346 |
t}. Therefore we have to subtract @{text "set (bn as)"} from @{text |
|
2347 | 1347 |
"fa\<^bsub>trm\<^esub> t"}. However, we also need to add all atoms that are |
2348 | 1348 |
free in @{text "as"}. This is |
1349 |
in contrast with @{text "Let_rec"} where we have a recursive |
|
1350 |
binder to bind all occurrences of the atoms in @{text |
|
2345 | 1351 |
"set (bn as)"} also inside @{text "as"}. Therefore we have to subtract |
2348 | 1352 |
@{text "set (bn as)"} from both @{text "fa\<^bsub>trm\<^esub> t"} and @{text "fa\<^bsub>assn\<^esub> as"}. |
1353 |
Like the function @{text "bn"}, the function @{text "fa\<^bsub>bn\<^esub>"} traverses the |
|
1354 |
list of assignments, but instead returns the free atoms, that means in this |
|
1355 |
example the free atoms in the argument @{text "t"}. |
|
1356 |
||
2345 | 1357 |
An interesting point in this |
2348 | 1358 |
example is that a ``naked'' assignment (@{text "ANil"} or @{text "ACons"}) does not bind any |
1359 |
atoms, even if the binding function is specified over assignments. |
|
1360 |
Only in the context of a @{text Let} or @{text "Let_rec"}, where the binding clauses are given, will |
|
1361 |
some atoms actually become bound. This is a phenomenon that has also been pointed |
|
2345 | 1362 |
out in \cite{ott-jfp}. For us this observation is crucial, because we would |
2348 | 1363 |
not be able to lift the @{text "bn"}-functions to $\alpha$-equated terms if they act on |
1364 |
atoms that are bound. In that case, these functions would \emph{not} respect |
|
2345 | 1365 |
$\alpha$-equivalence. |
1366 |
||
2348 | 1367 |
Next we define the $\alpha$-equivalence relations for the raw types @{text |
1368 |
"ty"}$_{1..n}$ from the specification. We write them as |
|
1733
6988077666dc
abbreviations for \<otimes> and \<oplus>
Christian Urban <urbanc@in.tum.de>
parents:
1732
diff
changeset
|
1369 |
% |
2345 | 1370 |
\begin{center} |
1371 |
@{text "\<approx>ty\<^isub>1, \<dots>, \<approx>ty\<^isub>n"}. |
|
1372 |
\end{center} |
|
1725
1801cc460fc9
polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents:
1724
diff
changeset
|
1373 |
|
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1374 |
\noindent |
2347 | 1375 |
Like with the free-atom functions, we also need to |
2345 | 1376 |
define auxiliary $\alpha$-equivalence relations |
1377 |
% |
|
1378 |
\begin{center} |
|
1379 |
@{text "\<approx>bn\<^isub>1, \<dots>, \<approx>bn\<^isub>m"} |
|
1380 |
\end{center} |
|
2344 | 1381 |
|
2345 | 1382 |
\noindent |
1383 |
for the binding functions @{text "bn"}$_{1..m}$, |
|
1384 |
To simplify our definitions we will use the following abbreviations for |
|
2348 | 1385 |
\emph{compound equivalence relations} and \emph{compound free-atom functions} acting on tuples |
1733
6988077666dc
abbreviations for \<otimes> and \<oplus>
Christian Urban <urbanc@in.tum.de>
parents:
1732
diff
changeset
|
1386 |
% |
6988077666dc
abbreviations for \<otimes> and \<oplus>
Christian Urban <urbanc@in.tum.de>
parents:
1732
diff
changeset
|
1387 |
\begin{center} |
1737
8b6a285ad480
polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents:
1736
diff
changeset
|
1388 |
\begin{tabular}{r@ {\hspace{2mm}}c@ {\hspace{2mm}}l} |
2348 | 1389 |
@{text "(x\<^isub>1,.., x\<^isub>n) (R\<^isub>1,.., R\<^isub>n) (x\<PRIME>\<^isub>1,.., x\<PRIME>\<^isub>n)"} & @{text "\<equiv>"} & \\ |
1390 |
\multicolumn{3}{r}{@{text "x\<^isub>1 R\<^isub>1 x\<PRIME>\<^isub>1 \<and> .. \<and> x\<^isub>n R\<^isub>n x\<PRIME>\<^isub>n"}}\\ |
|
1391 |
@{text "(fa\<^isub>1,.., fa\<^isub>n) (x\<^isub>1,.., x\<^isub>n)"} & @{text "\<equiv>"} & @{text "fa\<^isub>1 x\<^isub>1 \<union> .. \<union> fa\<^isub>n x\<^isub>n"}\\ |
|
1733
6988077666dc
abbreviations for \<otimes> and \<oplus>
Christian Urban <urbanc@in.tum.de>
parents:
1732
diff
changeset
|
1392 |
\end{tabular} |
6988077666dc
abbreviations for \<otimes> and \<oplus>
Christian Urban <urbanc@in.tum.de>
parents:
1732
diff
changeset
|
1393 |
\end{center} |
6988077666dc
abbreviations for \<otimes> and \<oplus>
Christian Urban <urbanc@in.tum.de>
parents:
1732
diff
changeset
|
1394 |
|
1727
fd2913415a73
started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents:
1726
diff
changeset
|
1395 |
|
2348 | 1396 |
The $\alpha$-equivalence relations are defined as inductive predicates |
1397 |
having a single clause for each term-constructor. Assuming a |
|
1398 |
term-constructor @{text C} is of type @{text ty} and has the binding clauses |
|
1399 |
@{term "bc"}$_{1..k}$, then the $\alpha$-equivalence clause has the form |
|
1737
8b6a285ad480
polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents:
1736
diff
changeset
|
1400 |
% |
8b6a285ad480
polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents:
1736
diff
changeset
|
1401 |
\begin{center} |
2345 | 1402 |
\mbox{\infer{@{text "C z\<^isub>1 \<dots> z\<^isub>n \<approx>ty C z\<PRIME>\<^isub>1 \<dots> z\<PRIME>\<^isub>n"}} |
2348 | 1403 |
{@{text "prems(bc\<^isub>1) \<dots> prems(bc\<^isub>k)"}}} |
1404 |
\end{center} |
|
1405 |
||
1406 |
\noindent |
|
1407 |
The task below is to specify what the premises of a binding clause are. As a |
|
1408 |
special instance, we first treat the case where @{text "bc\<^isub>i"} is the |
|
1409 |
empty binding clause of the form |
|
1410 |
% |
|
1411 |
\begin{center} |
|
1412 |
\mbox{\isacommand{bind\_set} @{term "{}"} \isacommand{in} @{text "d\<^isub>1\<dots>d\<^isub>q"}.} |
|
1413 |
\end{center} |
|
1414 |
||
1415 |
\noindent |
|
1416 |
In this binding clause no atom is bound and we only have to $\alpha$-relate the bodies. For this |
|
1417 |
we build first the tuples @{text "D \<equiv> (d\<^isub>1,\<dots>, d\<^isub>q)"} and @{text "D' \<equiv> (d\<PRIME>\<^isub>1,\<dots>, d\<PRIME>\<^isub>q)"} |
|
1418 |
whereby the labels @{text "d"}$_{1..q}$ refer to arguments @{text "z"}$_{1..n}$ and |
|
1419 |
respectively @{text "d\<PRIME>"}$_{1..q}$ to @{text "z\<PRIME>"}$_{1..n}$. In order to relate |
|
1420 |
two such tuples we define the compound $\alpha$-equivalence relation @{text "R"} as follows |
|
1421 |
% |
|
1422 |
\begin{equation}\label{rempty} |
|
1423 |
\mbox{@{text "R \<equiv> (R\<^isub>1,\<dots>, R\<^isub>q)"}} |
|
1424 |
\end{equation} |
|
1425 |
||
1426 |
\noindent |
|
1427 |
with @{text "R\<^isub>i"} being @{text "\<approx>ty\<^isub>i"} if the corresponding labels @{text "d\<^isub>i"} and |
|
1428 |
@{text "d\<PRIME>\<^isub>i"} refer |
|
1429 |
to a recursive argument of @{text C} with type @{text "ty\<^isub>i"}; otherwise |
|
1430 |
we take @{text "R\<^isub>i"} to be the equality @{text "="}. This lets us define |
|
1431 |
the premise for an empty binding clause succinctly as @{text "prems(bc\<^isub>i) \<equiv> D R D'"}, |
|
1432 |
which can be unfolded to the series of premises |
|
1433 |
% |
|
1434 |
\begin{center} |
|
1435 |
@{text "d\<^isub>1 R\<^isub>1 d\<PRIME>\<^isub>1 \<dots> d\<^isub>q R\<^isub>q d\<PRIME>\<^isub>q"} |
|
1436 |
\end{center} |
|
1437 |
||
1438 |
\noindent |
|
1439 |
We will use the unfolded version in the examples below. |
|
1440 |
||
1441 |
Now suppose the binding clause @{text "bc\<^isub>i"} is of the general form |
|
1442 |
% |
|
1443 |
\begin{equation}\label{nonempty} |
|
1444 |
\mbox{\isacommand{bind\_set} @{text "b\<^isub>1\<dots>b\<^isub>p"} \isacommand{in} @{text "d\<^isub>1\<dots>d\<^isub>q"}.} |
|
1445 |
\end{equation} |
|
1446 |
||
1447 |
\noindent |
|
1448 |
In this case we define a premise @{text P} using the relation |
|
1449 |
$\approx_{\,\textit{set}}$ given in Section~\ref{sec:binders} (similarly |
|
1450 |
$\approx_{\,\textit{res}}$ and $\approx_{\,\textit{list}}$ for the other |
|
1451 |
binding modes). This premise defines $\alpha$-equivalence of two abstractions |
|
1452 |
involving multiple binders. We first define as above the tuples @{text "D"} and |
|
1453 |
@{text "D'"} for the bodies @{text "d"}$_{1..q}$, and the corresponding |
|
1454 |
compound $\alpha$-relation @{text "R"} (shown in \eqref{rempty}). |
|
1455 |
For $\approx_{\,\textit{set}}$ we also need |
|
1456 |
a compound free-atom function for the bodies defined as |
|
1457 |
% |
|
1458 |
\begin{center} |
|
1459 |
\mbox{@{text "fa \<equiv> (fa_ty\<^isub>1,\<dots>, fa_ty\<^isub>q)"}} |
|
1460 |
\end{center} |
|
1461 |
||
1462 |
\noindent |
|
1463 |
with assumption that the @{text "d"}$_{1..q}$ refer to arguments of types @{text "ty"}$_{1..q}$. |
|
1464 |
The last ingredient we need are the sets of atoms bound in the bodies. |
|
1465 |
For this we take |
|
1466 |
||
1467 |
\begin{center} |
|
1468 |
@{text "B \<equiv> bn_ty\<^isub>1 b\<^isub>1 \<union> \<dots> \<union> bn_ty\<^isub>p b\<^isub>p"}\;.\\ |
|
1737
8b6a285ad480
polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents:
1736
diff
changeset
|
1469 |
\end{center} |
8b6a285ad480
polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents:
1736
diff
changeset
|
1470 |
|
8b6a285ad480
polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents:
1736
diff
changeset
|
1471 |
\noindent |
2348 | 1472 |
Similarly for @{text "B'"} using the labels @{text "b\<PRIME>"}$_{1..p}$. This |
1473 |
lets us formally define the premise @{text P} for a non-empty binding clause as: |
|
1474 |
% |
|
1475 |
\begin{equation}\label{pprem} |
|
1476 |
\mbox{@{term "P \<equiv> \<exists>p. (B, D) \<approx>gen R fa p (B', D')"}}\;. |
|
1477 |
\end{equation} |
|
1478 |
||
1479 |
\noindent |
|
1480 |
This premise accounts for $\alpha$-equivalence of the bodies of the binding |
|
1481 |
clause. However, in case the binders have non-recursive deep binders, then |
|
1482 |
we also have to ``propagate'' $\alpha$-equivalence inside the structure of |
|
1483 |
these binders. An example is @{text "Let"} where we have to make sure the |
|
1484 |
right-hand sides of assignments are $\alpha$-equivalent. For this we use the |
|
1485 |
relations @{text "\<approx>bn"}$_{1..m}$ (which we will formally define shortly). |
|
1486 |
Let us assume the non-recursive deep binders in @{text "bc\<^isub>i"} are |
|
1487 |
% |
|
1488 |
\begin{center} |
|
1489 |
@{text "bn\<^isub>1 l\<^isub>1, \<dots>, bn\<^isub>r l\<^isub>r"}. |
|
1490 |
\end{center} |
|
1491 |
||
1492 |
\noindent |
|
1493 |
The premises for @{text "bc\<^isub>i"} are then defined as |
|
1494 |
% |
|
1495 |
\begin{center} |
|
1496 |
@{text "prems(bc\<^isub>i) \<equiv> P \<and> l\<^isub>1 \<approx>bn\<^isub>1 l\<PRIME>\<^isub>1 \<and> ... \<and> l\<^isub>r \<approx>bn\<^isub>r l\<PRIME>\<^isub>r"} |
|
1497 |
\end{center} |
|
1498 |
||
1499 |
\noindent |
|
1500 |
where @{text "P"} is defined in \eqref{pprem}. |
|
1501 |
||
1502 |
The $\alpha$-equivalence relations @{text "\<approx>bn"}$_{1..m}$ are defined as follows: |
|
1503 |
given a @{text bn}-clause of the form |
|
1504 |
% |
|
1505 |
\begin{center} |
|
1506 |
@{text "bn (C z\<^isub>1 \<dots> z\<^isub>s) = rhs"} |
|
1507 |
\end{center} |
|
1508 |
||
1509 |
\noindent |
|
1510 |
where the @{text "z"}$_{1..s}$ are of types @{text "ty"}$_{1..s}$, |
|
1511 |
then the $\alpha$-equivalence clause for @{text "\<approx>bn"} has the form |
|
1512 |
% |
|
1513 |
\begin{center} |
|
1514 |
\mbox{\infer{@{text "C z\<^isub>1 \<dots> z\<^isub>s \<approx>bn C z\<PRIME>\<^isub>1 \<dots> z\<PRIME>\<^isub>s"}} |
|
1515 |
{@{text "z\<^isub>1 R\<^isub>1 z\<PRIME>\<^isub>1 \<dots> z\<^isub>s R\<^isub>s z\<PRIME>\<^isub>s"}}} |
|
1516 |
\end{center} |
|
1517 |
||
1518 |
\noindent |
|
1519 |
whereby the relations @{text "R"}$_{1..s}$ are given by |
|
1520 |
||
1521 |
\begin{center} |
|
1522 |
\begin{tabular}{c@ {\hspace{2mm}}p{7cm}} |
|
1523 |
$\bullet$ & @{text "z\<^isub>i \<approx>ty z\<PRIME>\<^isub>i"} provided @{text "z\<^isub>i"} does not occur in @{text rhs} and |
|
1524 |
is a recursive argument of @{text C},\\ |
|
1525 |
$\bullet$ & @{text "z\<^isub>i = z\<PRIME>\<^isub>i"} provided @{text "z\<^isub>i"} does not occur in @{text rhs} |
|
1526 |
and is a non-recursive argument of @{text C},\\ |
|
1527 |
$\bullet$ & @{text "z\<^isub>i \<approx>bn\<^isub>i z\<PRIME>\<^isub>i"} provided @{text "z\<^isub>i"} occurs in @{text rhs} |
|
1528 |
with the recursive call @{text "bn\<^isub>i x\<^isub>i"} and\\ |
|
1529 |
$\bullet$ & @{text True} provided @{text "z\<^isub>i"} occurs in @{text rhs} but without a |
|
1530 |
recursive call. |
|
1531 |
\end{tabular} |
|
1532 |
\end{center} |
|
1533 |
||
1534 |
\noindent |
|
1535 |
This completes the definition of $\alpha$-equivalence. As a sanity check, we can show |
|
1536 |
that the premises of empty binding clauses are a special case of the clauses for |
|
1537 |
non-empty ones (we just have to unfold the definition of $\approx_{\,\textit{set}}$ and take @{text "0"} |
|
1538 |
as the permutation). |
|
1735
8f9e2b02470a
added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents:
1733
diff
changeset
|
1539 |
*} |
2348 | 1540 |
(*<*)consts alpha_ty ::'a |
1739 | 1541 |
consts alpha_trm ::'a |
2347 | 1542 |
consts fa_trm :: 'a |
1739 | 1543 |
consts alpha_trm2 ::'a |
2347 | 1544 |
consts fa_trm2 :: 'a |
1739 | 1545 |
notation (latex output) |
1546 |
alpha_ty ("\<approx>ty") and |
|
1547 |
alpha_trm ("\<approx>\<^bsub>trm\<^esub>") and |
|
2347 | 1548 |
fa_trm ("fa\<^bsub>trm\<^esub>") and |
1739 | 1549 |
alpha_trm2 ("\<approx>\<^bsub>assn\<^esub> \<otimes> \<approx>\<^bsub>trm\<^esub>") and |
2348 | 1550 |
fa_trm2 ("fa\<^bsub>assn\<^esub> \<oplus> fa\<^bsub>trm\<^esub>")(*>*) |
1735
8f9e2b02470a
added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents:
1733
diff
changeset
|
1551 |
text {* |
1765
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
1552 |
Again lets take a look at a concrete example for these definitions. For \eqref{letrecs} |
2348 | 1553 |
we have three relations $\approx_{\textit{trm}}$, $\approx_{\textit{assn}}$ and |
1554 |
$\approx_{\textit{bn}}$ with the following clauses: |
|
1739 | 1555 |
|
1556 |
\begin{center} |
|
1557 |
\begin{tabular}{@ {}c @ {}} |
|
1558 |
\infer{@{text "Let as t \<approx>\<^bsub>trm\<^esub> Let as' t'"}} |
|
2348 | 1559 |
{@{term "\<exists>p. (bn as, t) \<approx>lst alpha_trm fa_trm p (bn as', t')"} & @{text "as \<approx>\<^bsub>bn\<^esub> as'"}}\smallskip\\ |
1739 | 1560 |
\infer{@{text "Let_rec as t \<approx>\<^bsub>trm\<^esub> Let_rec as' t'"}} |
2347 | 1561 |
{@{term "\<exists>p. (bn as, (as, t)) \<approx>lst alpha_trm2 fa_trm2 p (bn as', (as', t'))"}} |
1739 | 1562 |
\end{tabular} |
1563 |
\end{center} |
|
1564 |
||
1565 |
\begin{center} |
|
1566 |
\begin{tabular}{@ {}c @ {}} |
|
1567 |
\infer{@{text "ANil \<approx>\<^bsub>assn\<^esub> ANil"}}{}\\ |
|
1568 |
\infer{@{text "ACons a t as \<approx>\<^bsub>assn\<^esub> ACons a' t' as"}} |
|
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
1569 |
{@{text "a = a'"} & @{text "t \<approx>\<^bsub>trm\<^esub> t'"} & @{text "as \<approx>\<^bsub>assn\<^esub> as'"}} |
1739 | 1570 |
\end{tabular} |
1571 |
\end{center} |
|
1572 |
||
1573 |
\begin{center} |
|
1574 |
\begin{tabular}{@ {}c @ {}} |
|
1575 |
\infer{@{text "ANil \<approx>\<^bsub>bn\<^esub> ANil"}}{}\\ |
|
1576 |
\infer{@{text "ACons a t as \<approx>\<^bsub>bn\<^esub> ACons a' t' as"}} |
|
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
1577 |
{@{text "t \<approx>\<^bsub>trm\<^esub> t'"} & @{text "as \<approx>\<^bsub>bn\<^esub> as'"}} |
1739 | 1578 |
\end{tabular} |
1579 |
\end{center} |
|
1580 |
||
1581 |
\noindent |
|
1582 |
Note the difference between $\approx_{\textit{assn}}$ and |
|
2341 | 1583 |
$\approx_{\textit{bn}}$: the latter only ``tracks'' $\alpha$-equivalence of |
1739 | 1584 |
the components in an assignment that are \emph{not} bound. Therefore we have |
1585 |
a $\approx_{\textit{bn}}$-premise in the clause for @{text "Let"} (which is |
|
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
1586 |
a non-recursive binder). The underlying reason is that the terms inside an assignment are not meant |
1765
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
1587 |
to be ``under'' the binder. Such a premise is \emph{not} needed in @{text "Let_rec"}, |
1739 | 1588 |
because there everything from the assignment is under the binder. |
1587 | 1589 |
*} |
1590 |
||
1739 | 1591 |
section {* Establishing the Reasoning Infrastructure *} |
1717
a3ef7fba983f
Beginning of section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1716
diff
changeset
|
1592 |
|
a3ef7fba983f
Beginning of section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1716
diff
changeset
|
1593 |
text {* |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1594 |
Having made all necessary definitions for raw terms, we can start |
2341 | 1595 |
introducing the reasoning infrastructure for the $\alpha$-equated types the |
1767
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1596 |
user originally specified. We sketch in this section the facts we need for establishing |
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1597 |
this reasoning infrastructure. First we have to show that the |
2341 | 1598 |
$\alpha$-equivalence relations defined in the previous section are indeed |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1599 |
equivalence relations. |
1717
a3ef7fba983f
Beginning of section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1716
diff
changeset
|
1600 |
|
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1601 |
\begin{lemma}\label{equiv} |
1739 | 1602 |
Given the raw types @{text "ty\<^isub>1, \<dots>, ty\<^isub>n"} and binding functions |
1603 |
@{text "bn\<^isub>1, \<dots>, bn\<^isub>m"}, the relations @{text "\<approx>ty\<^isub>1, \<dots>, \<approx>ty\<^isub>n"} and |
|
1604 |
@{text "\<approx>bn\<^isub>1 \<dots> \<approx>bn\<^isub>m"} are equivalence relations and equivariant. |
|
1717
a3ef7fba983f
Beginning of section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1716
diff
changeset
|
1605 |
\end{lemma} |
1739 | 1606 |
|
1607 |
\begin{proof} |
|
1752
9e09253c80cf
added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents:
1749
diff
changeset
|
1608 |
The proof is by mutual induction over the definitions. The non-trivial |
2176
5054f170024e
edits from the reviewers
Christian Urban <urbanc@in.tum.de>
parents:
2175
diff
changeset
|
1609 |
cases involve premises built up by $\approx_{\textit{set}}$, |
1739 | 1610 |
$\approx_{\textit{res}}$ and $\approx_{\textit{list}}$. They |
1752
9e09253c80cf
added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents:
1749
diff
changeset
|
1611 |
can be dealt with as in Lemma~\ref{alphaeq}. |
1739 | 1612 |
\end{proof} |
1718 | 1613 |
|
1739 | 1614 |
\noindent |
1615 |
We can feed this lemma into our quotient package and obtain new types @{text |
|
2341 | 1616 |
"ty\<AL>\<^bsub>1..n\<^esub>"} representing $\alpha$-equated terms of types @{text "ty\<^bsub>1..n\<^esub>"}. We also obtain |
1767
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1617 |
definitions for the term-constructors @{text |
1739 | 1618 |
"C"}$^\alpha_{1..m}$ from the raw term-constructors @{text |
2347 | 1619 |
"C"}$_{1..m}$, and similar definitions for the free-atom functions @{text |
1620 |
"fa_ty"}$^\alpha_{1..n}$ and the binding functions @{text |
|
1767
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1621 |
"bn"}$^\alpha_{1..k}$. However, these definitions are not really useful to the |
1775 | 1622 |
user, since they are given in terms of the isomorphisms we obtained by |
1754 | 1623 |
creating new types in Isabelle/HOL (recall the picture shown in the |
1739 | 1624 |
Introduction). |
1625 |
||
1767
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1626 |
The first useful property to the user is the fact that term-constructors are |
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1627 |
distinct, that is |
1760
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
1628 |
% |
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
1629 |
\begin{equation}\label{distinctalpha} |
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
1630 |
\mbox{@{text "C"}$^\alpha_i$@{text "x\<^isub>1 \<dots> x\<^isub>n"} @{text "\<noteq>"} |
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
1631 |
@{text "C"}$^\alpha_j$@{text "y\<^isub>1 \<dots> y\<^isub>m"} holds for @{text "i \<noteq> j"}.} |
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
1632 |
\end{equation} |
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
1633 |
|
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
1634 |
\noindent |
2341 | 1635 |
By definition of $\alpha$-equivalence we can show that |
1760
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
1636 |
for the raw term-constructors |
1765
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
1637 |
% |
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
1638 |
\begin{equation}\label{distinctraw} |
1767
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1639 |
\mbox{@{text "C\<^isub>i x\<^isub>1 \<dots> x\<^isub>n"}\;$\not\approx$@{text ty}\;@{text "C\<^isub>j y\<^isub>1 \<dots> y\<^isub>m"} holds for @{text "i \<noteq> j"}.} |
1765
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
1640 |
\end{equation} |
1760
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
1641 |
|
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
1642 |
\noindent |
1767
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1643 |
In order to generate \eqref{distinctalpha} from \eqref{distinctraw}, the quotient |
1760
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
1644 |
package needs to know that the term-constructors @{text "C\<^isub>i"} and @{text "C\<^isub>j"} |
2341 | 1645 |
are \emph{respectful} w.r.t.~the $\alpha$-equivalence relations (see \cite{Homeier05}). |
1767
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1646 |
Assuming @{text "C\<^isub>i"} is of type @{text "ty"} with argument types |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1647 |
@{text "ty\<^isub>1, \<dots>, ty\<^isub>n"}, then respectfulness amounts to showing that |
1760
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
1648 |
|
1765
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
1649 |
\begin{center} |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1650 |
@{text "C\<^isub>i x\<^isub>1 \<dots> x\<^isub>n \<approx>ty C\<^isub>i y\<^isub>1 \<dots> y\<^isub>n"} |
1765
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
1651 |
\end{center} |
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
1652 |
|
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
1653 |
\noindent |
2341 | 1654 |
are $\alpha$-equivalent under the assumption that @{text "x\<^isub>i \<approx>ty\<^isub>i y\<^isub>i"} holds for all recursive arguments |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1655 |
and @{text "x\<^isub>i = y\<^isub>i"} holds for all non-recursive arguments of @{text "C\<^isub>i"}. We can prove this by |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1656 |
analysing the definition of @{text "\<approx>ty"}. For this proof to succeed we have to establish |
1767
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1657 |
the following auxiliary fact about binding functions. Given a binding function @{text bn\<^isub>i} defined |
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1658 |
for the type @{text ty\<^isub>i}, we have that |
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1659 |
% |
1760
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
1660 |
\begin{center} |
1767
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1661 |
@{text "x \<approx>ty\<^isub>i y"} implies @{text "x \<approx>bn\<^isub>i y"} |
1760
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
1662 |
\end{center} |
1765
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
1663 |
|
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
1664 |
\noindent |
1767
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1665 |
This can be established by induction on the definition of @{text "\<approx>ty\<^isub>i"}. |
1760
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
1666 |
|
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1667 |
Having established respectfulness for every raw term-constructor, the |
1767
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1668 |
quotient package is able to automatically deduce \eqref{distinctalpha} from \eqref{distinctraw}. |
2341 | 1669 |
In fact we can from now on lift facts from the raw level to the $\alpha$-equated level |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1670 |
as long as they contain raw term-constructors only. The |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1671 |
induction principles derived by the datatype package in Isabelle/HOL for the types @{text |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
1672 |
"ty\<^bsub>1..n\<^esub>"} fall into this category. So we can also add to our infrastructure |
1765
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
1673 |
induction principles that establish |
1760
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
1674 |
|
1765
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
1675 |
\begin{center} |
2134 | 1676 |
@{text "P\<^bsub>ty\<AL>\<^esub>\<^isub>1 y\<^isub>1 \<dots> P\<^bsub>ty\<AL>\<^esub>\<^isub>n y\<^isub>n "} |
1765
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
1677 |
\end{center} |
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
1678 |
|
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
1679 |
\noindent |
2176
5054f170024e
edits from the reviewers
Christian Urban <urbanc@in.tum.de>
parents:
2175
diff
changeset
|
1680 |
for all @{text "y\<^isub>i"} whereby the variables @{text "P\<^bsub>ty\<AL>\<^esub>\<^isub>i"} stand for properties |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1681 |
defined over the types @{text "ty\<AL>\<^isub>1 \<dots> ty\<AL>\<^isub>n"}. The premises of |
1767
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1682 |
these induction principles look |
1765
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
1683 |
as follows |
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
1684 |
|
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
1685 |
\begin{center} |
2134 | 1686 |
@{text "\<forall>x\<^isub>1\<dots>x\<^isub>n. P\<^bsub>ty\<AL>\<^esub>\<^isub>i x\<^isub>i \<and> \<dots> \<and> P\<^bsub>ty\<AL>\<^esub>\<^isub>j x\<^isub>j \<Rightarrow> P\<^bsub>ty\<AL>\<^esub> (C\<^sup>\<alpha> x\<^isub>1 \<dots> x\<^isub>n)"} |
1765
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
1687 |
\end{center} |
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
1688 |
|
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
1689 |
\noindent |
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
1690 |
where the @{text "x\<^isub>i, \<dots>, x\<^isub>j"} are the recursive arguments of @{text "C\<^sup>\<alpha>"}. |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1691 |
Next we lift the permutation operations defined in \eqref{ceqvt} for |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1692 |
the raw term-constructors @{text "C"}. These facts contain, in addition |
1775 | 1693 |
to the term-constructors, also permutation operations. In order to make the |
2176
5054f170024e
edits from the reviewers
Christian Urban <urbanc@in.tum.de>
parents:
2175
diff
changeset
|
1694 |
lifting go through, |
1767
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1695 |
we have to know that the permutation operations are respectful |
2341 | 1696 |
w.r.t.~$\alpha$-equivalence. This amounts to showing that the |
1697 |
$\alpha$-equivalence relations are equivariant, which we already established |
|
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1698 |
in Lemma~\ref{equiv}. As a result we can establish the equations |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1699 |
|
1956
028705c98304
more polishing on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1954
diff
changeset
|
1700 |
\begin{equation}\label{calphaeqvt} |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1701 |
@{text "p \<bullet> (C\<^sup>\<alpha> x\<^isub>1 \<dots> x\<^isub>n) = C\<^sup>\<alpha> (p \<bullet> x\<^isub>1) \<dots> (p \<bullet> x\<^isub>n)"} |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1702 |
\end{equation} |
1717
a3ef7fba983f
Beginning of section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1716
diff
changeset
|
1703 |
|
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1704 |
\noindent |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1705 |
for our infrastructure. In a similar fashion we can lift the equations |
2347 | 1706 |
characterising the free-atom functions @{text "fn_ty\<AL>\<^isub>j"} and @{text "fa_bn\<AL>\<^isub>k"}, and the |
1775 | 1707 |
binding functions @{text "bn\<AL>\<^isub>k"}. The necessary respectfulness lemmas for these |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1708 |
lifting are the properties: |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1709 |
% |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1710 |
\begin{equation}\label{fnresp} |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1711 |
\mbox{% |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1712 |
\begin{tabular}{l} |
2347 | 1713 |
@{text "x \<approx>ty\<^isub>j y"} implies @{text "fa_ty\<^isub>j x = fa_ty\<^isub>j y"}\\ |
1714 |
@{text "x \<approx>ty\<^isub>k y"} implies @{text "fa_bn\<^isub>k x = fa_bn\<^isub>k y"}\\ |
|
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1715 |
@{text "x \<approx>ty\<^isub>k y"} implies @{text "bn\<^isub>k x = bn\<^isub>k y"} |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1716 |
\end{tabular}} |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1717 |
\end{equation} |
1717
a3ef7fba983f
Beginning of section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1716
diff
changeset
|
1718 |
|
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1719 |
\noindent |
1767
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1720 |
which can be established by induction on @{text "\<approx>ty"}. Whereas the first |
2347 | 1721 |
property is always true by the way we defined the free-atom |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1722 |
functions for types, the second and third do \emph{not} hold in general. There is, in principle, |
1767
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1723 |
the possibility that the user defines @{text "bn\<^isub>k"} so that it returns an already bound |
2347 | 1724 |
atom. Then the third property is just not true. However, our |
1767
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1725 |
restrictions imposed on the binding functions |
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1726 |
exclude this possibility. |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1727 |
|
1767
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1728 |
Having the facts \eqref{fnresp} at our disposal, we can lift the |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1729 |
definitions that characterise when two terms of the form |
1717
a3ef7fba983f
Beginning of section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1716
diff
changeset
|
1730 |
|
1718 | 1731 |
\begin{center} |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1732 |
@{text "C x\<^isub>1 \<dots> x\<^isub>n \<approx>ty C y\<^isub>1 \<dots> y\<^isub>n"} |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1733 |
\end{center} |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1734 |
|
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1735 |
\noindent |
2341 | 1736 |
are $\alpha$-equivalent. This gives us conditions when the corresponding |
1737 |
$\alpha$-equated terms are \emph{equal}, namely |
|
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1738 |
|
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1739 |
\begin{center} |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1740 |
@{text "C\<^sup>\<alpha> x\<^isub>1 \<dots> x\<^isub>n = C\<^sup>\<alpha> y\<^isub>1 \<dots> y\<^isub>n"} |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1741 |
\end{center} |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1742 |
|
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1743 |
\noindent |
1767
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1744 |
We call these conditions as \emph{quasi-injectivity}. Except for one function, which |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1745 |
we have to lift in the next section, we completed |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1746 |
the lifting part of establishing the reasoning infrastructure. |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1747 |
|
2341 | 1748 |
By working now completely on the $\alpha$-equated level, we can first show that |
2347 | 1749 |
the free-atom functions and binding functions |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1750 |
are equivariant, namely |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1751 |
|
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1752 |
\begin{center} |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1753 |
\begin{tabular}{rcl} |
2347 | 1754 |
@{text "p \<bullet> (fa_ty\<^sup>\<alpha> x)"} & $=$ & @{text "fa_ty\<^sup>\<alpha> (p \<bullet> x)"}\\ |
1755 |
@{text "p \<bullet> (fa_bn\<^sup>\<alpha> x)"} & $=$ & @{text "fa_bn\<^sup>\<alpha> (p \<bullet> x)"}\\ |
|
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1756 |
@{text "p \<bullet> (bn\<^sup>\<alpha> x)"} & $=$ & @{text "bn\<^sup>\<alpha> (p \<bullet> x)"} |
1718 | 1757 |
\end{tabular} |
1758 |
\end{center} |
|
1717
a3ef7fba983f
Beginning of section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1716
diff
changeset
|
1759 |
|
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1760 |
\noindent |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1761 |
These properties can be established by structural induction over the @{text x} |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1762 |
(using the induction principles we lifted above for the types @{text "ty\<AL>\<^bsub>1..n\<^esub>"}). |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1763 |
|
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1764 |
Until now we have not yet derived anything about the support of the |
2341 | 1765 |
$\alpha$-equated terms. This however will be necessary in order to derive |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1766 |
the strong induction principles in the next section. |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1767 |
Using the equivariance properties in \eqref{ceqvt} we can |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1768 |
show for every term-constructor @{text "C\<^sup>\<alpha>"} that |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1769 |
|
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1770 |
\begin{center} |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1771 |
@{text "(supp x\<^isub>1 \<union> \<dots> supp x\<^isub>n) supports (C\<^sup>\<alpha> x\<^isub>1 \<dots> x\<^isub>n)"} |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1772 |
\end{center} |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1773 |
|
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1774 |
\noindent |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1775 |
holds. This together with Property~\ref{supportsprop} allows us to show |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1776 |
|
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1777 |
\begin{center} |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1778 |
@{text "finite (supp x\<^isub>i)"} |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1779 |
\end{center} |
1721 | 1780 |
|
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1781 |
\noindent |
1767
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1782 |
by a structural induction over @{text "x\<^isub>1, \<dots>, x\<^isub>n"} (whereby @{text "x\<^isub>i"} ranges over the types |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1783 |
@{text "ty\<AL>\<^isub>1 \<dots> ty\<AL>\<^isub>n"}). Lastly, we can show that the support of elements in |
2347 | 1784 |
@{text "ty\<AL>\<^bsub>1..n\<^esub>"} coincides with @{text "fa_ty\<AL>\<^bsub>1..n\<^esub>"}. |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1785 |
|
1767
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1786 |
\begin{lemma} |
e6a5651a1d81
polished infrastruct section
Christian Urban <urbanc@in.tum.de>
parents:
1766
diff
changeset
|
1787 |
For every @{text "x\<^isub>i"} of type @{text "ty\<AL>\<^bsub>1..n\<^esub>"}, we have that |
2347 | 1788 |
@{text "supp x\<^isub>i = fa_ty\<AL>\<^isub>i x\<^isub>i"} holds. |
1722 | 1789 |
\end{lemma} |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1790 |
|
1722 | 1791 |
\begin{proof} |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1792 |
The proof proceeds by structural induction over the @{text "x\<^isub>i"}. In each case |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1793 |
we unfold the definition of @{text "supp"}, move the swapping inside the |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1794 |
term-constructors and the use then quasi-injectivity lemmas in order to complete the |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1795 |
proof. For the abstraction cases we use the facts derived in Theorem~\ref{suppabs}. |
1722 | 1796 |
\end{proof} |
1721 | 1797 |
|
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1798 |
\noindent |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1799 |
To sum up, we can established automatically a reasoning infrastructure |
1768
375e15002efc
tuned strong ind section
Christian Urban <urbanc@in.tum.de>
parents:
1767
diff
changeset
|
1800 |
for the types @{text "ty\<AL>\<^isub>1, \<dots>, ty\<AL>\<^isub>n"} |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1801 |
by first lifting definitions from the raw level to the quotient level and |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1802 |
then establish facts about these lifted definitions. All necessary proofs |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1803 |
are generated automatically by custom ML-code. This code can deal with |
1768
375e15002efc
tuned strong ind section
Christian Urban <urbanc@in.tum.de>
parents:
1767
diff
changeset
|
1804 |
specifications like the one shown in Figure~\ref{nominalcorehas} for Core-Haskell. |
1728 | 1805 |
|
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1806 |
\begin{figure}[t!] |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1807 |
\begin{boxedminipage}{\linewidth} |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1808 |
\small |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1809 |
\begin{tabular}{l} |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1810 |
\isacommand{atom\_decl}~@{text "var"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1811 |
\isacommand{atom\_decl}~@{text "cvar"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1812 |
\isacommand{atom\_decl}~@{text "tvar"}\\[1mm] |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1813 |
\isacommand{nominal\_datatype}~@{text "tkind ="}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1814 |
\phantom{$|$}~@{text "KStar"}~$|$~@{text "KFun tkind tkind"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1815 |
\isacommand{and}~@{text "ckind ="}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1816 |
\phantom{$|$}~@{text "CKSim ty ty"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1817 |
\isacommand{and}~@{text "ty ="}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1818 |
\phantom{$|$}~@{text "TVar tvar"}~$|$~@{text "T string"}~$|$~@{text "TApp ty ty"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1819 |
$|$~@{text "TFun string ty_list"}~% |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1820 |
$|$~@{text "TAll tv::tvar tkind ty::ty"} \isacommand{bind}~@{text "tv"}~\isacommand{in}~@{text ty}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1821 |
$|$~@{text "TArr ckind ty"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1822 |
\isacommand{and}~@{text "ty_lst ="}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1823 |
\phantom{$|$}~@{text "TNil"}~$|$~@{text "TCons ty ty_lst"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1824 |
\isacommand{and}~@{text "cty ="}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1825 |
\phantom{$|$}~@{text "CVar cvar"}~% |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1826 |
$|$~@{text "C string"}~$|$~@{text "CApp cty cty"}~$|$~@{text "CFun string co_lst"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1827 |
$|$~@{text "CAll cv::cvar ckind cty::cty"} \isacommand{bind}~@{text "cv"}~\isacommand{in}~@{text cty}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1828 |
$|$~@{text "CArr ckind cty"}~$|$~@{text "CRefl ty"}~$|$~@{text "CSym cty"}~$|$~@{text "CCirc cty cty"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1829 |
$|$~@{text "CAt cty ty"}~$|$~@{text "CLeft cty"}~$|$~@{text "CRight cty"}~$|$~@{text "CSim cty cty"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1830 |
$|$~@{text "CRightc cty"}~$|$~@{text "CLeftc cty"}~$|$~@{text "Coerce cty cty"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1831 |
\isacommand{and}~@{text "co_lst ="}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1832 |
\phantom{$|$}@{text "CNil"}~$|$~@{text "CCons cty co_lst"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1833 |
\isacommand{and}~@{text "trm ="}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1834 |
\phantom{$|$}~@{text "Var var"}~$|$~@{text "K string"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1835 |
$|$~@{text "LAM_ty tv::tvar tkind t::trm"} \isacommand{bind}~@{text "tv"}~\isacommand{in}~@{text t}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1836 |
$|$~@{text "LAM_cty cv::cvar ckind t::trm"} \isacommand{bind}~@{text "cv"}~\isacommand{in}~@{text t}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1837 |
$|$~@{text "App_ty trm ty"}~$|$~@{text "App_cty trm cty"}~$|$~@{text "App trm trm"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1838 |
$|$~@{text "Lam v::var ty t::trm"} \isacommand{bind}~@{text "v"}~\isacommand{in}~@{text t}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1839 |
$|$~@{text "Let x::var ty trm t::trm"} \isacommand{bind}~@{text x}~\isacommand{in}~@{text t}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1840 |
$|$~@{text "Case trm assoc_lst"}~$|$~@{text "Cast trm co"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1841 |
\isacommand{and}~@{text "assoc_lst ="}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1842 |
\phantom{$|$}~@{text ANil}~% |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1843 |
$|$~@{text "ACons p::pat t::trm assoc_lst"} \isacommand{bind}~@{text "bv p"}~\isacommand{in}~@{text t}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1844 |
\isacommand{and}~@{text "pat ="}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1845 |
\phantom{$|$}~@{text "Kpat string tvtk_lst tvck_lst vt_lst"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1846 |
\isacommand{and}~@{text "vt_lst ="}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1847 |
\phantom{$|$}~@{text VTNil}~$|$~@{text "VTCons var ty vt_lst"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1848 |
\isacommand{and}~@{text "tvtk_lst ="}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1849 |
\phantom{$|$}~@{text TVTKNil}~$|$~@{text "TVTKCons tvar tkind tvtk_lst"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1850 |
\isacommand{and}~@{text "tvck_lst ="}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1851 |
\phantom{$|$}~@{text TVCKNil}~$|$ @{text "TVCKCons cvar ckind tvck_lst"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1852 |
\isacommand{binder}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1853 |
@{text "bv :: pat \<Rightarrow> atom list"}~\isacommand{and}~% |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1854 |
@{text "bv1 :: vt_lst \<Rightarrow> atom list"}~\isacommand{and}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1855 |
@{text "bv2 :: tvtk_lst \<Rightarrow> atom list"}~\isacommand{and}~% |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1856 |
@{text "bv3 :: tvck_lst \<Rightarrow> atom list"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1857 |
\isacommand{where}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1858 |
\phantom{$|$}~@{text "bv (K s tvts tvcs vs) = (bv3 tvts) @ (bv2 tvcs) @ (bv1 vs)"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1859 |
$|$~@{text "bv1 VTNil = []"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1860 |
$|$~@{text "bv1 (VTCons x ty tl) = (atom x)::(bv1 tl)"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1861 |
$|$~@{text "bv2 TVTKNil = []"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1862 |
$|$~@{text "bv2 (TVTKCons a ty tl) = (atom a)::(bv2 tl)"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1863 |
$|$~@{text "bv3 TVCKNil = []"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1864 |
$|$~@{text "bv3 (TVCKCons c cty tl) = (atom c)::(bv3 tl)"}\\ |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1865 |
\end{tabular} |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1866 |
\end{boxedminipage} |
1890
23e3dc4f2c59
small updates to the paper; remaining points in PAPER-TODO
Christian Urban <urbanc@in.tum.de>
parents:
1859
diff
changeset
|
1867 |
\caption{The nominal datatype declaration for Core-Haskell. For the moment we |
1766
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1868 |
do not support nested types; therefore we explicitly have to unfold the |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1869 |
lists @{text "co_lst"}, @{text "assoc_lst"} and so on. This will be improved |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1870 |
in a future version of Nominal Isabelle. Apart from that, the |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1871 |
declaration follows closely the original in Figure~\ref{corehas}. The |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1872 |
point of our work is that having made such a declaration in Nominal Isabelle, |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1873 |
one obtains automatically a reasoning infrastructure for Core-Haskell. |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1874 |
\label{nominalcorehas}} |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1875 |
\end{figure} |
a2d5f9ea17ad
completed lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1765
diff
changeset
|
1876 |
*} |
1728 | 1877 |
|
1587 | 1878 |
|
1747
4abb95a7264b
starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1746
diff
changeset
|
1879 |
section {* Strong Induction Principles *} |
4abb95a7264b
starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1746
diff
changeset
|
1880 |
|
4abb95a7264b
starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1746
diff
changeset
|
1881 |
text {* |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1882 |
In the previous section we were able to provide induction principles that |
2341 | 1883 |
allow us to perform structural inductions over $\alpha$-equated terms. |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1884 |
We call such induction principles \emph{weak}, because in case of a term-constructor @{text "C\<^sup>\<alpha> x\<^isub>1 \<dots> x\<^isub>n"}, |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1885 |
the induction hypothesis requires us to establish the implication |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1886 |
% |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1887 |
\begin{equation}\label{weakprem} |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1888 |
@{text "\<forall>x\<^isub>1\<dots>x\<^isub>n. P\<^isub>i x\<^isub>i \<and> \<dots> \<and> P\<^isub>j x\<^isub>j \<Rightarrow> P (C\<^sup>\<alpha> x\<^isub>1 \<dots> x\<^isub>n)"} |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1889 |
\end{equation} |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1890 |
|
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1891 |
\noindent |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1892 |
where the @{text "x\<^isub>i, \<dots>, x\<^isub>j"} are the recursive arguments of @{text "C\<^sup>\<alpha>"}. |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1893 |
The problem with this implication is that in general it is not easy to establish it. |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
1894 |
The reason is that we cannot make any assumption about the binders that might be in @{text "C\<^sup>\<alpha>"} |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1895 |
(for example we cannot assume the variable convention for them). |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1896 |
|
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1897 |
In \cite{UrbanTasson05} we introduced a method for automatically |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1898 |
strengthening weak induction principles for terms containing single |
1768
375e15002efc
tuned strong ind section
Christian Urban <urbanc@in.tum.de>
parents:
1767
diff
changeset
|
1899 |
binders. These stronger induction principles allow the user to make additional |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
1900 |
assumptions about binders. |
1768
375e15002efc
tuned strong ind section
Christian Urban <urbanc@in.tum.de>
parents:
1767
diff
changeset
|
1901 |
These additional assumptions amount to a formal |
375e15002efc
tuned strong ind section
Christian Urban <urbanc@in.tum.de>
parents:
1767
diff
changeset
|
1902 |
version of the informal variable convention for binders. A natural question is |
375e15002efc
tuned strong ind section
Christian Urban <urbanc@in.tum.de>
parents:
1767
diff
changeset
|
1903 |
whether we can also strengthen the weak induction principles involving |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
1904 |
the general binders presented here. We will indeed be able to so, but for this we need an |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1905 |
additional notion for permuting deep binders. |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1906 |
|
1768
375e15002efc
tuned strong ind section
Christian Urban <urbanc@in.tum.de>
parents:
1767
diff
changeset
|
1907 |
Given a binding function @{text "bn"} we define an auxiliary permutation |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1908 |
operation @{text "_ \<bullet>\<^bsub>bn\<^esub> _"} which permutes only bound arguments in a deep binder. |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1909 |
Assuming a clause of @{text bn} is defined as @{text "bn (C x\<^isub>1 \<dots> x\<^isub>n) = rhs"}, then |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1910 |
we define % |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1911 |
\begin{center} |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1912 |
@{text "p \<bullet>\<^bsub>bn\<^esub> (C x\<^isub>1 \<dots> x\<^isub>n) \<equiv> C y\<^isub>1 \<dots> y\<^isub>n"} |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1913 |
\end{center} |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1914 |
|
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1915 |
\noindent |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1916 |
with @{text "y\<^isub>i"} determined as follows: |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1917 |
% |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1918 |
\begin{center} |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1919 |
\begin{tabular}{c@ {\hspace{2mm}}p{7cm}} |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1920 |
$\bullet$ & @{text "y\<^isub>i \<equiv> x\<^isub>i"} provided @{text "x\<^isub>i"} does not occur in @{text "rhs"}\\ |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1921 |
$\bullet$ & @{text "y\<^isub>i \<equiv> p \<bullet>\<^bsub>bn'\<^esub> x\<^isub>i"} provided @{text "bn' x\<^isub>i"} is in @{text "rhs"}\\ |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1922 |
$\bullet$ & @{text "y\<^isub>i \<equiv> p \<bullet> x\<^isub>i"} otherwise |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1923 |
\end{tabular} |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1924 |
\end{center} |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1925 |
|
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1926 |
\noindent |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
1927 |
Using again the quotient package we can lift the @{text "_ \<bullet>\<^bsub>bn\<^esub> _"} function to |
2341 | 1928 |
$\alpha$-equated terms. We can then prove the following two facts |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1929 |
|
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1930 |
\begin{lemma}\label{permutebn} |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1931 |
Given a binding function @{text "bn\<^sup>\<alpha>"} then for all @{text p} |
2134 | 1932 |
{\it i)} @{text "p \<bullet> (bn\<^sup>\<alpha> x) = bn\<^sup>\<alpha> (p \<bullet>\<^bsub>bn\<^esub>\<^sup>\<alpha> x)"} and {\it ii)} |
2347 | 1933 |
@{text "fa_bn\<^isup>\<alpha> x = fa_bn\<^isup>\<alpha> (p \<bullet>\<^bsub>bn\<^esub>\<^sup>\<alpha> x)"}. |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1934 |
\end{lemma} |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1935 |
|
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1936 |
\begin{proof} |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
1937 |
By induction on @{text x}. The equations follow by simple unfolding |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1938 |
of the definitions. |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1939 |
\end{proof} |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1940 |
|
1769 | 1941 |
\noindent |
1768
375e15002efc
tuned strong ind section
Christian Urban <urbanc@in.tum.de>
parents:
1767
diff
changeset
|
1942 |
The first property states that a permutation applied to a binding function is |
375e15002efc
tuned strong ind section
Christian Urban <urbanc@in.tum.de>
parents:
1767
diff
changeset
|
1943 |
equivalent to first permuting the binders and then calculating the bound |
2347 | 1944 |
atoms. The second amounts to the fact that permuting the binders has no |
1945 |
effect on the free-atom function. The main point of this permutation |
|
1769 | 1946 |
function, however, is that if we have a permutation that is fresh |
1947 |
for the support of an object @{text x}, then we can use this permutation |
|
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1948 |
to rename the binders in @{text x}, without ``changing'' @{text x}. In case of the |
1769 | 1949 |
@{text "Let"} term-constructor from the example shown |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1950 |
\eqref{letpat} this means for a permutation @{text "r"}: |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1951 |
% |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1952 |
\begin{equation}\label{renaming} |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
1953 |
\begin{array}{l} |
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
1954 |
\mbox{if @{term "supp (Abs_lst (bn p) t\<^isub>2) \<sharp>* r"}}\\ |
2134 | 1955 |
\qquad\mbox{then @{text "Let p t\<^isub>1 t\<^isub>2 = Let (r \<bullet>\<^bsub>bnpat\<^esub> p) t\<^isub>1 (r \<bullet> t\<^isub>2)"}} |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
1956 |
\end{array} |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1957 |
\end{equation} |
1769 | 1958 |
|
1959 |
\noindent |
|
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
1960 |
This fact will be crucial when establishing the strong induction principles. |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1961 |
In our running example about @{text "Let"}, they state that instead |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1962 |
of establishing the implication |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1963 |
|
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1964 |
\begin{center} |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
1965 |
@{text "\<forall>p t\<^isub>1 t\<^isub>2. P\<^bsub>pat\<^esub> p \<and> P\<^bsub>trm\<^esub> t\<^isub>1 \<and> P\<^bsub>trm\<^esub> t\<^isub>2 \<Rightarrow> P\<^bsub>trm\<^esub> (Let p t\<^isub>1 t\<^isub>2)"} |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1966 |
\end{center} |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1967 |
|
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
1968 |
\noindent |
1769 | 1969 |
it is sufficient to establish the following implication |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1970 |
% |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1971 |
\begin{equation}\label{strong} |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1972 |
\mbox{\begin{tabular}{l} |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
1973 |
@{text "\<forall>p t\<^isub>1 t\<^isub>2 c."}\\ |
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
1974 |
\hspace{5mm}@{text "set (bn p) #\<^sup>* c \<and>"}\\ |
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
1975 |
\hspace{5mm}@{text "(\<forall>d. P\<^bsub>pat\<^esub> d p) \<and> (\<forall>d. P\<^bsub>trm\<^esub> d t\<^isub>1) \<and> (\<forall>d. P\<^bsub>trm\<^esub> d t\<^isub>2)"}\\ |
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
1976 |
\hspace{15mm}@{text "\<Rightarrow> P\<^bsub>trm\<^esub> c (Let p t\<^isub>1 t\<^isub>2)"} |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1977 |
\end{tabular}} |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1978 |
\end{equation} |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1979 |
|
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1980 |
\noindent |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1981 |
While this implication contains an additional argument, namely @{text c}, and |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1982 |
also additional universal quantifications, it is usually easier to establish. |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1983 |
The reason is that we can make the freshness |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1984 |
assumption @{text "set (bn\<^sup>\<alpha> p) #\<^sup>* c"}, whereby @{text c} can be arbitrarily |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1985 |
chosen by the user as long as it has finite support. |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1986 |
|
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1987 |
Let us now show how we derive the strong induction principles from the |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1988 |
weak ones. In case of the @{text "Let"}-example we derive by the weak |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1989 |
induction the following two properties |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1990 |
% |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1991 |
\begin{equation}\label{hyps} |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1992 |
@{text "\<forall>q c. P\<^bsub>trm\<^esub> c (q \<bullet> t)"} \hspace{4mm} |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1993 |
@{text "\<forall>q\<^isub>1 q\<^isub>2 c. P\<^bsub>pat\<^esub> (q\<^isub>1 \<bullet>\<^bsub>bn\<^esub> (q\<^isub>2 \<bullet> p))"} |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1994 |
\end{equation} |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1995 |
|
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
1996 |
\noindent |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
1997 |
For the @{text Let} term-constructor we therefore have to establish @{text "P\<^bsub>trm\<^esub> c (q \<bullet> Let p t\<^isub>1 t\<^isub>2)"} |
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
1998 |
assuming \eqref{hyps} as induction hypotheses (the first for @{text t\<^isub>1} and @{text t\<^isub>2}). |
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
1999 |
By Property~\ref{avoiding} we |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2000 |
obtain a permutation @{text "r"} such that |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2001 |
% |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2002 |
\begin{equation}\label{rprops} |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2003 |
@{term "(r \<bullet> set (bn (q \<bullet> p))) \<sharp>* c "}\hspace{4mm} |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
2004 |
@{term "supp (Abs_lst (bn (q \<bullet> p)) (q \<bullet> t\<^isub>2)) \<sharp>* r"} |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2005 |
\end{equation} |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2006 |
|
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2007 |
\noindent |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2008 |
hold. The latter fact and \eqref{renaming} give us |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2009 |
|
1765
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
2010 |
\begin{center} |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
2011 |
\begin{tabular}{l} |
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
2012 |
@{text "Let (q \<bullet> p) (q \<bullet> t\<^isub>1) (q \<bullet> t\<^isub>2) ="} \\ |
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
2013 |
\hspace{15mm}@{text "Let (r \<bullet>\<^bsub>bn\<^esub> (q \<bullet> p)) (q \<bullet> t\<^isub>1) (r \<bullet> (q \<bullet> t\<^isub>2))"} |
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
2014 |
\end{tabular} |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2015 |
\end{center} |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2016 |
|
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2017 |
\noindent |
2176
5054f170024e
edits from the reviewers
Christian Urban <urbanc@in.tum.de>
parents:
2175
diff
changeset
|
2018 |
So instead of proving @{text "P\<^bsub>trm\<^esub> c (q \<bullet> Let p t\<^isub>1 t\<^isub>2)"}, we can equally |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2019 |
establish |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2020 |
|
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2021 |
\begin{center} |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
2022 |
@{text "P\<^bsub>trm\<^esub> c (Let (r \<bullet>\<^bsub>bn\<^esub> (q \<bullet> p)) (q \<bullet> t\<^isub>1) (r \<bullet> (q \<bullet> t\<^isub>2)))"} |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2023 |
\end{center} |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2024 |
|
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2025 |
\noindent |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2026 |
To do so, we will use the implication \eqref{strong} of the strong induction |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2027 |
principle, which requires us to discharge |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
2028 |
the following four proof obligations: |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2029 |
|
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2030 |
\begin{center} |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2031 |
\begin{tabular}{rl} |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2032 |
{\it i)} & @{text "set (bn (r \<bullet>\<^bsub>bn\<^esub> (q \<bullet> p))) #\<^sup>* c"}\\ |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2033 |
{\it ii)} & @{text "\<forall>d. P\<^bsub>pat\<^esub> d (r \<bullet>\<^bsub>bn\<^esub> (q \<bullet> p))"}\\ |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
2034 |
{\it iii)} & @{text "\<forall>d. P\<^bsub>trm\<^esub> d (q \<bullet> t\<^isub>1)"}\\ |
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
2035 |
{\it iv)} & @{text "\<forall>d. P\<^bsub>trm\<^esub> d (r \<bullet> (q \<bullet> t\<^isub>2))"}\\ |
1765
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
2036 |
\end{tabular} |
9a894c42e80e
more on the lifting section
Christian Urban <urbanc@in.tum.de>
parents:
1764
diff
changeset
|
2037 |
\end{center} |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2038 |
|
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2039 |
\noindent |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2040 |
The first follows from \eqref{rprops} and Lemma~\ref{permutebn}.{\it i)}; the |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
2041 |
others from the induction hypotheses in \eqref{hyps} (in the fourth case |
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
2042 |
we have to use the fact that @{term "(r \<bullet> (q \<bullet> t\<^isub>2)) = (r + q) \<bullet> t\<^isub>2"}). |
1748
014a4ef807dc
Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1747
diff
changeset
|
2043 |
|
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2044 |
Taking now the identity permutation @{text 0} for the permutations in \eqref{hyps}, |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2045 |
we can establish our original goals, namely @{text "P\<^bsub>trm\<^esub> c t"} and \mbox{@{text "P\<^bsub>pat\<^esub> c p"}}. |
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2046 |
This completes the proof showing that the strong induction principle derives from |
1890
23e3dc4f2c59
small updates to the paper; remaining points in PAPER-TODO
Christian Urban <urbanc@in.tum.de>
parents:
1859
diff
changeset
|
2047 |
the weak induction principle. For the moment we can derive the difficult cases of |
2176
5054f170024e
edits from the reviewers
Christian Urban <urbanc@in.tum.de>
parents:
2175
diff
changeset
|
2048 |
the strong induction principles only by hand, but they are very schematic |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
2049 |
so that with little effort we can even derive them for |
1770
26e44bcddb5b
first complete version (slightly less than 3h more to go)
Christian Urban <urbanc@in.tum.de>
parents:
1769
diff
changeset
|
2050 |
Core-Haskell given in Figure~\ref{nominalcorehas}. |
1747
4abb95a7264b
starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1746
diff
changeset
|
2051 |
*} |
4abb95a7264b
starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1746
diff
changeset
|
2052 |
|
1702 | 2053 |
|
1517
62d6f7acc110
corrected the strong induction principle in the lambda-calculus case; gave a second (oartial) version that is more elegant
Christian Urban <urbanc@in.tum.de>
parents:
1506
diff
changeset
|
2054 |
section {* Related Work *} |
62d6f7acc110
corrected the strong induction principle in the lambda-calculus case; gave a second (oartial) version that is more elegant
Christian Urban <urbanc@in.tum.de>
parents:
1506
diff
changeset
|
2055 |
|
1570 | 2056 |
text {* |
2342 | 2057 |
To our knowledge the earliest usage of general binders in a theorem prover |
1760
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
2058 |
is described in \cite{NaraschewskiNipkow99} about a formalisation of the |
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
2059 |
algorithm W. This formalisation implements binding in type schemes using a |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2060 |
de-Bruijn indices representation. Since type schemes of W contain only a single |
1760
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
2061 |
binder, different indices do not refer to different binders (as in the usual |
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
2062 |
de-Bruijn representation), but to different bound variables. A similar idea |
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
2063 |
has been recently explored for general binders in the locally nameless |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2064 |
approach to binding \cite{chargueraud09}. There, de-Bruijn indices consist |
1760
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
2065 |
of two numbers, one referring to the place where a variable is bound and the |
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
2066 |
other to which variable is bound. The reasoning infrastructure for both |
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2067 |
representations of bindings comes for free in theorem provers like Isabelle/HOL or |
2342 | 2068 |
Coq, since the corresponding term-calculi can be implemented as ``normal'' |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2069 |
datatypes. However, in both approaches it seems difficult to achieve our |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2070 |
fine-grained control over the ``semantics'' of bindings (i.e.~whether the |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2071 |
order of binders should matter, or vacuous binders should be taken into |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2072 |
account). To do so, one would require additional predicates that filter out |
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2073 |
unwanted terms. Our guess is that such predicates result in rather |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2074 |
intricate formal reasoning. |
1740
2afee29cf81c
completed related work section
Christian Urban <urbanc@in.tum.de>
parents:
1739
diff
changeset
|
2075 |
|
2afee29cf81c
completed related work section
Christian Urban <urbanc@in.tum.de>
parents:
1739
diff
changeset
|
2076 |
Another representation technique for binding is higher-order abstract syntax |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2077 |
(HOAS), which for example is implemented in the Twelf system. This representation |
1760
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
2078 |
technique supports very elegantly many aspects of \emph{single} binding, and |
2342 | 2079 |
impressive work has been done that uses HOAS for mechanising the metatheory |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2080 |
of SML~\cite{LeeCraryHarper07}. We are, however, not aware how multiple |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2081 |
binders of SML are represented in this work. Judging from the submitted |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2082 |
Twelf-solution for the POPLmark challenge, HOAS cannot easily deal with |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2083 |
binding constructs where the number of bound variables is not fixed. For |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2084 |
example in the second part of this challenge, @{text "Let"}s involve |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2085 |
patterns that bind multiple variables at once. In such situations, HOAS |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2086 |
representations have to resort to the iterated-single-binders-approach with |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2087 |
all the unwanted consequences when reasoning about the resulting terms. |
1740
2afee29cf81c
completed related work section
Christian Urban <urbanc@in.tum.de>
parents:
1739
diff
changeset
|
2088 |
|
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2089 |
Two formalisations involving general binders have also been performed in older |
2342 | 2090 |
versions of Nominal Isabelle (one about Psi-calculi and one about algorithm W |
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2091 |
\cite{BengtsonParow09, UrbanNipkow09}). Both |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2092 |
use the approach based on iterated single binders. Our experience with |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2093 |
the latter formalisation has been disappointing. The major pain arose from |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2094 |
the need to ``unbind'' variables. This can be done in one step with our |
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2095 |
general binders, but needs a cumbersome |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2096 |
iteration with single binders. The resulting formal reasoning turned out to |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2097 |
be rather unpleasant. The hope is that the extension presented in this paper |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2098 |
is a substantial improvement. |
1726
2eafd8ed4bbf
started with a related work section
Christian Urban <urbanc@in.tum.de>
parents:
1725
diff
changeset
|
2099 |
|
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2100 |
The most closely related work to the one presented here is the Ott-tool |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2101 |
\cite{ott-jfp} and the C$\alpha$ml language \cite{Pottier06}. Ott is a nifty |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2102 |
front-end for creating \LaTeX{} documents from specifications of |
2343 | 2103 |
term-calculi involving general binders. For a subset of the specifications |
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2104 |
Ott can also generate theorem prover code using a raw representation of |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2105 |
terms, and in Coq also a locally nameless representation. The developers of |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2106 |
this tool have also put forward (on paper) a definition for |
2341 | 2107 |
$\alpha$-equivalence of terms that can be specified in Ott. This definition is |
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2108 |
rather different from ours, not using any nominal techniques. To our |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2109 |
knowledge there is also no concrete mathematical result concerning this |
2341 | 2110 |
notion of $\alpha$-equivalence. A definition for the notion of free variables |
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2111 |
in a term are work in progress in Ott. |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2112 |
|
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2113 |
Although we were heavily inspired by their syntax, |
2341 | 2114 |
their definition of $\alpha$-equivalence is unsuitable for our extension of |
1760
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
2115 |
Nominal Isabelle. First, it is far too complicated to be a basis for |
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
2116 |
automated proofs implemented on the ML-level of Isabelle/HOL. Second, it |
0bb0f6e662a4
updated related work section
Christian Urban <urbanc@in.tum.de>
parents:
1758
diff
changeset
|
2117 |
covers cases of binders depending on other binders, which just do not make |
2341 | 2118 |
sense for our $\alpha$-equated terms. Third, it allows empty types that have no |
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2119 |
meaning in a HOL-based theorem prover. We also had to generalise slightly their |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2120 |
binding clauses. In Ott you specify binding clauses with a single body; we |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2121 |
allow more than one. We have to do this, because this makes a difference |
2341 | 2122 |
for our notion of $\alpha$-equivalence in case of \isacommand{bind\_set} and |
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2123 |
\isacommand{bind\_res}. This makes |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2124 |
|
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2125 |
\begin{center} |
2341 | 2126 |
\begin{tabular}{@ {}l@ {\hspace{2mm}}l@ {}} |
2127 |
@{text "Foo\<^isub>1 xs::name fset t::trm s::trm"} & |
|
2128 |
\isacommand{bind\_set} @{text "xs"} \isacommand{in} @{text "t s"}\\ |
|
2129 |
@{text "Foo\<^isub>2 xs::name fset t::trm s::trm"} & |
|
2130 |
\isacommand{bind\_set} @{text "xs"} \isacommand{in} @{text "t"}, |
|
2131 |
\isacommand{bind\_set} @{text "xs"} \isacommand{in} @{text "s"}\\ |
|
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2132 |
\end{tabular} |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2133 |
\end{center} |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2134 |
|
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2135 |
\noindent |
2341 | 2136 |
behave differently. In the first term-constructor, we essentially have a single |
2137 |
body, which happens to be ``spread'' over two arguments; in the second we have |
|
2138 |
two independent bodies, in which the same variables are bound. As a result we |
|
2139 |
have |
|
2140 |
||
2141 |
\begin{center} |
|
2142 |
\begin{tabular}{r@ {\hspace{1.5mm}}c@ {\hspace{1.5mm}}l} |
|
2143 |
@{text "Foo\<^isub>1 {a, b} (a, b) (a, b)"} & $\not=$ & |
|
2144 |
@{text "Foo\<^isub>1 {a, b} (a, b) (b, a)"}\\ |
|
2145 |
@{text "Foo\<^isub>2 {a, b} (a, b) (a, b)"} & $=$ & |
|
2146 |
@{text "Foo\<^isub>2 {a, b} (a, b) (b, a)"}\\ |
|
2147 |
\end{tabular} |
|
2148 |
\end{center} |
|
2149 |
||
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2150 |
Because of how we set up our definitions, we had to impose restrictions, |
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2151 |
like a single binding function for a deep binder, that are not present in Ott. Our |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2152 |
expectation is that we can still cover many interesting term-calculi from |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
2153 |
programming language research, for example Core-Haskell. For providing support |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2154 |
of neat features in Ott, such as subgrammars, the existing datatype |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2155 |
infrastructure in Isabelle/HOL is unfortunately not powerful enough. On the |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2156 |
other hand, we are not aware that Ott can make the distinction between our |
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2157 |
three different binding modes. |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2158 |
|
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2159 |
Pottier presents in \cite{Pottier06} a language, called C$\alpha$ml, for |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2160 |
representing terms with general binders inside OCaml. This language is |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2161 |
implemented as a front-end that can be translated to OCaml with a help of |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2162 |
a library. He presents a type-system in which the scope of general binders |
2343 | 2163 |
can be indicated with some special markers, written @{text "inner"} and |
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2164 |
@{text "outer"}. With this, it seems, our and his specifications can be |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2165 |
inter-translated, but we have not proved this. However, we believe the |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2166 |
binding specifications in the style of Ott are a more natural way for |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2167 |
representing terms involving bindings. Pottier gives a definition for |
2341 | 2168 |
$\alpha$-equivalence, which is similar to our binding mode \isacommand{bind}. |
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2169 |
Although he uses also a permutation in case of abstractions, his |
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2170 |
definition is rather different from ours. He proves that his notion |
2341 | 2171 |
of $\alpha$-equivalence is indeed a equivalence relation, but a complete |
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2172 |
reasoning infrastructure is well beyond the purposes of his language. |
2218
502eaa199726
added to the popl-paper a pointer to work by Altenkirch
Christian Urban <urbanc@in.tum.de>
parents:
2203
diff
changeset
|
2173 |
In a slightly different domain (programming with dependent types), the |
502eaa199726
added to the popl-paper a pointer to work by Altenkirch
Christian Urban <urbanc@in.tum.de>
parents:
2203
diff
changeset
|
2174 |
paper \cite{Altenkirch10} presents a calculus with a notion of |
2341 | 2175 |
$\alpha$-equivalence related to our binding mode \isacommand{bind\_res}. |
2218
502eaa199726
added to the popl-paper a pointer to work by Altenkirch
Christian Urban <urbanc@in.tum.de>
parents:
2203
diff
changeset
|
2176 |
This definition is similar to the one by Pottier, except that it |
502eaa199726
added to the popl-paper a pointer to work by Altenkirch
Christian Urban <urbanc@in.tum.de>
parents:
2203
diff
changeset
|
2177 |
has a more operational flavour and calculates a partial (renaming) map. |
2342 | 2178 |
In this way they can handle vacuous binders. However, their notion of |
2218
502eaa199726
added to the popl-paper a pointer to work by Altenkirch
Christian Urban <urbanc@in.tum.de>
parents:
2203
diff
changeset
|
2179 |
equality between terms also includes rules for $\beta$ and to our |
502eaa199726
added to the popl-paper a pointer to work by Altenkirch
Christian Urban <urbanc@in.tum.de>
parents:
2203
diff
changeset
|
2180 |
knowledge no concrete mathematical result concerning their notion |
502eaa199726
added to the popl-paper a pointer to work by Altenkirch
Christian Urban <urbanc@in.tum.de>
parents:
2203
diff
changeset
|
2181 |
of equality has been proved. |
1739 | 2182 |
*} |
2183 |
||
1493
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
2184 |
section {* Conclusion *} |
1485
c004e7448dca
temporarily disabled tests in Nominal/ROOT
Christian Urban <urbanc@in.tum.de>
parents:
1484
diff
changeset
|
2185 |
|
c004e7448dca
temporarily disabled tests in Nominal/ROOT
Christian Urban <urbanc@in.tum.de>
parents:
1484
diff
changeset
|
2186 |
text {* |
2345 | 2187 |
We can also see that |
2188 |
% |
|
2189 |
\begin{equation}\label{bnprop} |
|
2347 | 2190 |
@{text "fa_ty x = bn x \<union> fa_bn x"}. |
2345 | 2191 |
\end{equation} |
2192 |
||
2193 |
\noindent |
|
2194 |
holds for any @{text "bn"}-function defined for the type @{text "ty"}. |
|
2195 |
||
2196 |
*} |
|
2197 |
||
2198 |
||
2199 |
text {* |
|
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2200 |
We have presented an extension of Nominal Isabelle for deriving |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2201 |
automatically a convenient reasoning infrastructure that can deal with |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2202 |
general binders, that is term-constructors binding multiple variables at |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2203 |
once. This extension has been tried out with the Core-Haskell |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2204 |
term-calculus. For such general binders, we can also extend |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2205 |
earlier work that derives strong induction principles which have the usual |
1890
23e3dc4f2c59
small updates to the paper; remaining points in PAPER-TODO
Christian Urban <urbanc@in.tum.de>
parents:
1859
diff
changeset
|
2206 |
variable convention already built in. For the moment we can do so only with manual help, |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2207 |
but future work will automate them completely. The code underlying the presented |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2208 |
extension will become part of the Isabelle distribution, but for the moment |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2209 |
it can be downloaded from the Mercurial repository linked at |
1741 | 2210 |
\href{http://isabelle.in.tum.de/nominal/download} |
2211 |
{http://isabelle.in.tum.de/nominal/download}. |
|
2212 |
||
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2213 |
We have left out a discussion about how functions can be defined over |
2341 | 2214 |
$\alpha$-equated terms that involve general binders. In earlier versions of Nominal |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2215 |
Isabelle \cite{UrbanBerghofer06} this turned out to be a thorny issue. We |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2216 |
hope to do better this time by using the function package that has recently |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2217 |
been implemented in Isabelle/HOL and also by restricting function |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2218 |
definitions to equivariant functions (for such functions it is possible to |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2219 |
provide more automation). |
1741 | 2220 |
|
1847 | 2221 |
There are some restrictions we imposed in this paper, that we would like to lift in |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2222 |
future work. One is the exclusion of nested datatype definitions. Nested |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2223 |
datatype definitions allow one to specify, for instance, the function kinds |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2224 |
in Core-Haskell as @{text "TFun string (ty list)"} instead of the unfolded |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2225 |
version @{text "TFun string ty_list"} in Figure~\ref{nominalcorehas}. For |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2226 |
them we need a more clever implementation than we have at the moment. |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2227 |
|
2163
5dc48e1af733
added comments about pottiers work
Christian Urban <urbanc@in.tum.de>
parents:
2156
diff
changeset
|
2228 |
More interesting line of investigation is whether we can go beyond the |
1771
3e71af53cedb
submitted version (just in time ;o)
Christian Urban <urbanc@in.tum.de>
parents:
1770
diff
changeset
|
2229 |
simple-minded form for binding functions that we adopted from Ott. At the moment, binding |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2230 |
functions can only return the empty set, a singleton atom set or unions |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2231 |
of atom sets (similarly for lists). It remains to be seen whether |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2232 |
properties like \eqref{bnprop} provide us with means to support more interesting |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2233 |
binding functions. |
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2234 |
|
1726
2eafd8ed4bbf
started with a related work section
Christian Urban <urbanc@in.tum.de>
parents:
1725
diff
changeset
|
2235 |
|
1763 | 2236 |
We have also not yet played with other binding modes. For example we can |
1796
5165c350ee1a
clarified comment about distinct lists in th efuture work section
Christian Urban <urbanc@in.tum.de>
parents:
1775
diff
changeset
|
2237 |
imagine that there is need for a binding mode \isacommand{bind\_\#list} with |
5165c350ee1a
clarified comment about distinct lists in th efuture work section
Christian Urban <urbanc@in.tum.de>
parents:
1775
diff
changeset
|
2238 |
an associated abstraction of the form |
1763 | 2239 |
% |
2240 |
\begin{center} |
|
1796
5165c350ee1a
clarified comment about distinct lists in th efuture work section
Christian Urban <urbanc@in.tum.de>
parents:
1775
diff
changeset
|
2241 |
@{term "Abs_dist as x"} |
1763 | 2242 |
\end{center} |
2243 |
||
2244 |
\noindent |
|
1796
5165c350ee1a
clarified comment about distinct lists in th efuture work section
Christian Urban <urbanc@in.tum.de>
parents:
1775
diff
changeset
|
2245 |
where instead of lists, we abstract lists of distinct elements. |
5165c350ee1a
clarified comment about distinct lists in th efuture work section
Christian Urban <urbanc@in.tum.de>
parents:
1775
diff
changeset
|
2246 |
Once we feel confident about such binding modes, our implementation |
1764
9f55d7927e5b
more on the strong induction section
Christian Urban <urbanc@in.tum.de>
parents:
1763
diff
changeset
|
2247 |
can be easily extended to accommodate them. |
1763 | 2248 |
|
2249 |
\medskip |
|
1493
52f68b524fd2
slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents:
1491
diff
changeset
|
2250 |
\noindent |
1528
d6ee4a1b34ce
more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents:
1524
diff
changeset
|
2251 |
{\bf Acknowledgements:} We are very grateful to Andrew Pitts for |
2342 | 2252 |
many discussions about Nominal Isabelle. We also thank Peter Sewell for |
1506
7c607df46a0a
slightly more in the paper
Christian Urban <urbanc@in.tum.de>
parents:
1493
diff
changeset
|
2253 |
making the informal notes \cite{SewellBestiary} available to us and |
2342 | 2254 |
also for patiently explaining some of the finer points of the work on the Ott-tool. |
2255 |
Stephanie Weirich suggested to separate the subgrammars |
|
1739 | 2256 |
of kinds and types in our Core-Haskell example. |
2341 | 2257 |
|
754
b85875d65b10
added a paper for possible notes
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
2258 |
*} |
b85875d65b10
added a paper for possible notes
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
2259 |
|
b85875d65b10
added a paper for possible notes
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
2260 |
(*<*) |
b85875d65b10
added a paper for possible notes
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
2261 |
end |
1704 | 2262 |
(*>*) |