Paper/Paper.thy
author Christian Urban <urbanc@in.tum.de>
Thu, 01 Apr 2010 14:53:14 +0200
changeset 1753 7440bfcdf849
parent 1752 9e09253c80cf
parent 1751 6d6c36f7dd1e
child 1754 0ce4f938e8cc
permissions -rw-r--r--
merged
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
1506
7c607df46a0a slightly more in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1493
diff changeset
     3
imports "../Nominal/Test" "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
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
     6
consts
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
     7
  fv :: "'a \<Rightarrow> 'b"
1728
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
     8
  abs_set :: "'a \<Rightarrow> 'b \<Rightarrow> 'c"
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
     9
  alpha_bn :: "'a \<Rightarrow> 'a \<Rightarrow> bool"
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
    10
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
    11
definition
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
    12
 "equal \<equiv> (op =)" 
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
    13
1493
52f68b524fd2 slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1491
diff changeset
    14
notation (latex output)
52f68b524fd2 slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1491
diff changeset
    15
  swap ("'(_ _')" [1000, 1000] 1000) and
52f68b524fd2 slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1491
diff changeset
    16
  fresh ("_ # _" [51, 51] 50) and
1694
3bf0fddb7d44 clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents: 1693
diff changeset
    17
  fresh_star ("_ #\<^sup>* _" [51, 51] 50) and
1493
52f68b524fd2 slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1491
diff changeset
    18
  supp ("supp _" [78] 73) and
52f68b524fd2 slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1491
diff changeset
    19
  uminus ("-_" [78] 73) and
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
    20
  If  ("if _ then _ else _" 10) and
1739
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
    21
  alpha_gen ("_ \<approx>\<^raw:\raisebox{-1pt}{\makebox[0mm][l]{$\,_{\textit{set}}$}}>\<^bsup>_, _, _\<^esup> _") and
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
    22
  alpha_lst ("_ \<approx>\<^raw:\raisebox{-1pt}{\makebox[0mm][l]{$\,_{\textit{list}}$}}>\<^bsup>_, _, _\<^esup> _") and
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
    23
  alpha_res ("_ \<approx>\<^raw:\raisebox{-1pt}{\makebox[0mm][l]{$\,_{\textit{res}}$}}>\<^bsup>_, _, _\<^esup> _") and
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
    24
  abs_set ("_ \<approx>\<^raw:{$\,_{\textit{abs\_set}}$}> _") and
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
    25
  fv ("fv'(_')" [100] 100) and
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
    26
  equal ("=") and
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
    27
  alpha_abs ("_ \<approx>\<^raw:{$\,_{\textit{abs\_set}}$}> _") and 
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
    28
  Abs ("[_]\<^raw:$\!$>\<^bsub>set\<^esub>._" [20, 101] 999) and
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
    29
  Abs_lst ("[_]\<^raw:$\!$>\<^bsub>list\<^esub>._") and
1690
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
    30
  Abs_res ("[_]\<^raw:$\!$>\<^bsub>res\<^esub>._") and
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
    31
  Cons ("_::_" [78,77] 73) and
1728
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
    32
  supp_gen ("aux _" [1000] 10) and
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
    33
  alpha_bn ("_ \<approx>bn _")
754
b85875d65b10 added a paper for possible notes
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    34
(*>*)
b85875d65b10 added a paper for possible notes
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    35
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
    36
754
b85875d65b10 added a paper for possible notes
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    37
section {* Introduction *}
b85875d65b10 added a paper for possible notes
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    38
b85875d65b10 added a paper for possible notes
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    39
text {*
1746
ec0afa89aab3 General paper minor fixes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1743
diff changeset
    40
%%%  @{text "(1, (2, 3))"}
1739
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
    41
1524
Christian Urban <urbanc@in.tum.de>
parents: 1523
diff changeset
    42
  So far, Nominal Isabelle provides a mechanism for constructing
1607
ac69ed8303cc tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1587
diff changeset
    43
  alpha-equated terms, for example
1485
c004e7448dca temporarily disabled tests in Nominal/ROOT
Christian Urban <urbanc@in.tum.de>
parents: 1484
diff changeset
    44
1520
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
    45
  \begin{center}
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
    46
  @{text "t ::= x | t t | \<lambda>x. t"}
1520
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
    47
  \end{center}
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
    48
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
    49
  \noindent
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
    50
  where free and bound variables have names.  For such alpha-equated terms,  Nominal Isabelle
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
    51
  derives automatically a reasoning infrastructure that has been used
1550
66d388a84e3c polished
Christian Urban <urbanc@in.tum.de>
parents: 1545
diff changeset
    52
  successfully in formalisations of an equivalence checking algorithm for LF
66d388a84e3c polished
Christian Urban <urbanc@in.tum.de>
parents: 1545
diff changeset
    53
  \cite{UrbanCheneyBerghofer08}, Typed
1520
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
    54
  Scheme~\cite{TobinHochstadtFelleisen08}, several calculi for concurrency
1694
3bf0fddb7d44 clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents: 1693
diff changeset
    55
  \cite{BengtsonParow09} and a strong normalisation result
1520
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
    56
  for cut-elimination in classical logic \cite{UrbanZhu08}. It has also been
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
    57
  used by Pollack for formalisations in the locally-nameless approach to
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
    58
  binding \cite{SatoPollack10}.
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
    59
1535
a37c65fe10de more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1528
diff changeset
    60
  However, Nominal Isabelle has fared less well in a formalisation of
1690
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
    61
  the algorithm W \cite{UrbanNipkow09}, where types and type-schemes are,
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
    62
  respectively, of the form
1570
014ddf0d7271 tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1566
diff changeset
    63
  %
014ddf0d7271 tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1566
diff changeset
    64
  \begin{equation}\label{tysch}
014ddf0d7271 tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1566
diff changeset
    65
  \begin{array}{l}
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
    66
  @{text "T ::= x | T \<rightarrow> T"}\hspace{5mm}
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
    67
  @{text "S ::= \<forall>{x\<^isub>1,\<dots>, x\<^isub>n}. T"}
1570
014ddf0d7271 tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1566
diff changeset
    68
  \end{array}
014ddf0d7271 tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1566
diff changeset
    69
  \end{equation}
1520
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
    70
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
    71
  \noindent
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
    72
  and the @{text "\<forall>"}-quantification binds a finite (possibly empty) set of
1550
66d388a84e3c polished
Christian Urban <urbanc@in.tum.de>
parents: 1545
diff changeset
    73
  type-variables.  While it is possible to implement this kind of more general
66d388a84e3c polished
Christian Urban <urbanc@in.tum.de>
parents: 1545
diff changeset
    74
  binders by iterating single binders, this leads to a rather clumsy
66d388a84e3c polished
Christian Urban <urbanc@in.tum.de>
parents: 1545
diff changeset
    75
  formalisation of W. The need of iterating single binders is also one reason
66d388a84e3c polished
Christian Urban <urbanc@in.tum.de>
parents: 1545
diff changeset
    76
  why Nominal Isabelle and similar theorem provers that only provide
66d388a84e3c polished
Christian Urban <urbanc@in.tum.de>
parents: 1545
diff changeset
    77
  mechanisms for binding single variables have not fared extremely well with the
66d388a84e3c polished
Christian Urban <urbanc@in.tum.de>
parents: 1545
diff changeset
    78
  more advanced tasks in the POPLmark challenge \cite{challenge05}, because
66d388a84e3c polished
Christian Urban <urbanc@in.tum.de>
parents: 1545
diff changeset
    79
  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
    80
1577
8466fe2216da tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1572
diff changeset
    81
  Binding multiple variables has interesting properties that cannot be captured
1587
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
    82
  easily by iterating single binders. For example in case of type-schemes we do not
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
    83
  want to make a distinction about the order of the bound variables. Therefore
1550
66d388a84e3c polished
Christian Urban <urbanc@in.tum.de>
parents: 1545
diff changeset
    84
  we would like to regard the following two type-schemes as alpha-equivalent
1572
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
    85
  %
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
    86
  \begin{equation}\label{ex1}
1667
2922b04d9545 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1662
diff changeset
    87
  @{text "\<forall>{x, y}. x \<rightarrow> y  \<approx>\<^isub>\<alpha>  \<forall>{y, x}. y \<rightarrow> x"} 
1572
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
    88
  \end{equation}
1520
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
    89
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
    90
  \noindent
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
    91
  but assuming that @{text x}, @{text y} and @{text z} are distinct variables,
1587
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
    92
  the following two should \emph{not} be alpha-equivalent
1572
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
    93
  %
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
    94
  \begin{equation}\label{ex2}
1667
2922b04d9545 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1662
diff changeset
    95
  @{text "\<forall>{x, y}. x \<rightarrow> y  \<notapprox>\<^isub>\<alpha>  \<forall>{z}. z \<rightarrow> z"} 
1572
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
    96
  \end{equation}
1520
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
    97
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
    98
  \noindent
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
    99
  Moreover, we like to regard type-schemes as alpha-equivalent, if they differ
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   100
  only on \emph{vacuous} binders, such as
1572
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   101
  %
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   102
  \begin{equation}\label{ex3}
1667
2922b04d9545 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1662
diff changeset
   103
  @{text "\<forall>{x}. x \<rightarrow> y  \<approx>\<^isub>\<alpha>  \<forall>{x, z}. x \<rightarrow> y"}
1572
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   104
  \end{equation}
1485
c004e7448dca temporarily disabled tests in Nominal/ROOT
Christian Urban <urbanc@in.tum.de>
parents: 1484
diff changeset
   105
1520
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
   106
  \noindent
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   107
  where @{text z} does not occur freely in the type.  In this paper we will
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   108
  give a general binding mechanism and associated notion of alpha-equivalence
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   109
  that can be used to faithfully represent this kind of binding in Nominal
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   110
  Isabelle.  The difficulty of finding the right notion for alpha-equivalence
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   111
  can be appreciated in this case by considering that the definition given by
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   112
  Leroy in \cite{Leroy92} is incorrect (it omits a side-condition).
1524
Christian Urban <urbanc@in.tum.de>
parents: 1523
diff changeset
   113
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   114
  However, the notion of alpha-equivalence that is preserved by vacuous
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   115
  binders is not always wanted. For example in terms like
1587
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
   116
  %
1535
a37c65fe10de more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1528
diff changeset
   117
  \begin{equation}\label{one}
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   118
  @{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
   119
  \end{equation}
1520
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
   120
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
   121
  \noindent
1524
Christian Urban <urbanc@in.tum.de>
parents: 1523
diff changeset
   122
  we might not care in which order the assignments $x = 3$ and $y = 2$ are
1535
a37c65fe10de more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1528
diff changeset
   123
  given, but it would be unusual to regard \eqref{one} as alpha-equivalent 
1524
Christian Urban <urbanc@in.tum.de>
parents: 1523
diff changeset
   124
  with
1587
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
   125
  %
1520
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
   126
  \begin{center}
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   127
  @{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
   128
  \end{center}
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
   129
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
   130
  \noindent
1550
66d388a84e3c polished
Christian Urban <urbanc@in.tum.de>
parents: 1545
diff changeset
   131
  Therefore we will also provide a separate binding mechanism for cases in
66d388a84e3c polished
Christian Urban <urbanc@in.tum.de>
parents: 1545
diff changeset
   132
  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
   133
  binders has to agree.
1520
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
   134
1550
66d388a84e3c polished
Christian Urban <urbanc@in.tum.de>
parents: 1545
diff changeset
   135
  However, we found that this is still not sufficient for dealing with
66d388a84e3c polished
Christian Urban <urbanc@in.tum.de>
parents: 1545
diff changeset
   136
  language constructs frequently occurring in programming language
1690
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   137
  research. For example in @{text "\<LET>"}s containing patterns like
1587
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
   138
  %
1535
a37c65fe10de more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1528
diff changeset
   139
  \begin{equation}\label{two}
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   140
  @{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
   141
  \end{equation}
1520
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
   142
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
   143
  \noindent
1535
a37c65fe10de more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1528
diff changeset
   144
  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
   145
  $\mathtt{let}$, but we also care about the order of these variables, since
1566
2facd6645599 tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1556
diff changeset
   146
  we do not want to regard \eqref{two} as alpha-equivalent with
1587
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
   147
  %
1520
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
   148
  \begin{center}
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   149
  @{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
   150
  \end{center}
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
   151
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
   152
  \noindent
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   153
  As a result, we provide three general binding mechanisms each of which binds
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   154
  multiple variables at once, and let the user chose which one is intended
1711
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   155
  when formalising a term-calculus.
1485
c004e7448dca temporarily disabled tests in Nominal/ROOT
Christian Urban <urbanc@in.tum.de>
parents: 1484
diff changeset
   156
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   157
  By providing these general binding mechanisms, however, we have to work
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   158
  around a problem that has been pointed out by Pottier \cite{Pottier06} and
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   159
  Cheney \cite{Cheney05}: in @{text "\<LET>"}-constructs of the form
1587
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
   160
  %
1520
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
   161
  \begin{center}
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   162
  @{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
   163
  \end{center}
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
   164
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
   165
  \noindent
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   166
  which bind all the @{text "x\<^isub>i"} in @{text s}, we might not care
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   167
  about the order in which the @{text "x\<^isub>i = t\<^isub>i"} are given,
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   168
  but we do care about the information that there are as many @{text
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   169
  "x\<^isub>i"} as there are @{text "t\<^isub>i"}. We lose this information if
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   170
  we represent the @{text "\<LET>"}-constructor by something like
1587
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
   171
  %
1523
eb95360d6ac6 another little bit for the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1520
diff changeset
   172
  \begin{center}
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   173
  @{text "\<LET> [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
   174
  \end{center}
1520
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
   175
1523
eb95360d6ac6 another little bit for the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1520
diff changeset
   176
  \noindent
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   177
  where the notation @{text "[_]._"} indicates that the list of @{text "x\<^isub>i"}
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   178
  becomes bound in @{text s}. In this representation the term 
1690
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   179
  \mbox{@{text "\<LET> [x].s [t\<^isub>1, t\<^isub>2]"}} is a perfectly legal
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   180
  instance, but the lengths of two lists do not agree. To exclude such terms, 
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   181
  additional predicates about well-formed
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   182
  terms are needed in order to ensure that the two lists are of equal
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   183
  length. This can result into very messy reasoning (see for
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   184
  example~\cite{BengtsonParow09}). To avoid this, we will allow type
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   185
  specifications for $\mathtt{let}$s as follows
1587
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
   186
  %
1528
d6ee4a1b34ce more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1524
diff changeset
   187
  \begin{center}
d6ee4a1b34ce more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1524
diff changeset
   188
  \begin{tabular}{r@ {\hspace{2mm}}r@ {\hspace{2mm}}l}
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   189
  @{text trm} & @{text "::="}  & @{text "\<dots>"}\\ 
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   190
              & @{text "|"}    & @{text "\<LET> as::assn s::trm"}\hspace{4mm} 
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   191
                                 \isacommand{bind} @{text "bn(as)"} \isacommand{in} @{text "s"}\\[1mm]
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   192
  @{text assn} & @{text "::="} & @{text "\<ANIL>"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   193
               & @{text "|"}   & @{text "\<ACONS> name trm assn"}
1528
d6ee4a1b34ce more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1524
diff changeset
   194
  \end{tabular}
d6ee4a1b34ce more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1524
diff changeset
   195
  \end{center}
d6ee4a1b34ce more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1524
diff changeset
   196
d6ee4a1b34ce more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1524
diff changeset
   197
  \noindent
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   198
  where @{text assn} is an auxiliary type representing a list of assignments
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   199
  and @{text bn} an auxiliary function identifying the variables to be bound
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   200
  by the @{text "\<LET>"}. This function can be defined by recursion over @{text
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   201
  assn} as follows
1528
d6ee4a1b34ce more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1524
diff changeset
   202
d6ee4a1b34ce more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1524
diff changeset
   203
  \begin{center}
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   204
  @{text "bn(\<ANIL>) ="} @{term "{}"} \hspace{5mm} 
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   205
  @{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
   206
  \end{center}
1523
eb95360d6ac6 another little bit for the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1520
diff changeset
   207
  
1528
d6ee4a1b34ce more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1524
diff changeset
   208
  \noindent
1550
66d388a84e3c polished
Christian Urban <urbanc@in.tum.de>
parents: 1545
diff changeset
   209
  The scope of the binding is indicated by labels given to the types, for
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   210
  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
   211
  \isacommand{bind} @{text "bn(as)"} \isacommand{in} @{text "s"}. This binding
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   212
  clause states to bind in @{text s} all the names the function call @{text
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   213
  "bn(as)"} returns.  This style of specifying terms and bindings is heavily
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   214
  inspired by the syntax of the Ott-tool \cite{ott-jfp}.
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   215
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   216
  However, we will not be able to cope with all specifications that are
1617
99cee15cb5ff more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1613
diff changeset
   217
  allowed by Ott. One reason is that Ott lets the user to specify ``empty'' 
99cee15cb5ff more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1613
diff changeset
   218
  types like
1570
014ddf0d7271 tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1566
diff changeset
   219
014ddf0d7271 tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1566
diff changeset
   220
  \begin{center}
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   221
  @{text "t ::= t t | \<lambda>x. t"}
1570
014ddf0d7271 tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1566
diff changeset
   222
  \end{center}
014ddf0d7271 tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1566
diff changeset
   223
014ddf0d7271 tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1566
diff changeset
   224
  \noindent
1617
99cee15cb5ff more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1613
diff changeset
   225
  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
   226
  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
   227
  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
   228
  set-theoretic model \cite{Berghofer99}.
1570
014ddf0d7271 tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1566
diff changeset
   229
014ddf0d7271 tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1566
diff changeset
   230
  Another reason is that we establish the reasoning infrastructure
014ddf0d7271 tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1566
diff changeset
   231
  for alpha-\emph{equated} terms. In contrast, Ott produces  a reasoning 
014ddf0d7271 tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1566
diff changeset
   232
  infrastructure in Isabelle/HOL for
1545
f32981105089 more one the paper
Christian Urban <urbanc@in.tum.de>
parents: 1535
diff changeset
   233
  \emph{non}-alpha-equated, or ``raw'', terms. While our alpha-equated terms
1556
a7072d498723 more work on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1552
diff changeset
   234
  and the raw terms produced by Ott use names for bound variables,
1690
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   235
  there is a key difference: working with alpha-equated terms means, for example,  
1693
3668b389edf3 spell check
Christian Urban <urbanc@in.tum.de>
parents: 1690
diff changeset
   236
  that the two type-schemes
1528
d6ee4a1b34ce more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1524
diff changeset
   237
d6ee4a1b34ce more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1524
diff changeset
   238
  \begin{center}
1667
2922b04d9545 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1662
diff changeset
   239
  @{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
   240
  \end{center}
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
  \noindent
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   243
  are not just alpha-equal, but actually \emph{equal}! As a result, we can
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   244
  only support specifications that make sense on the level of alpha-equated
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   245
  terms (offending specifications, which for example bind a variable according
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   246
  to a variable bound somewhere else, are not excluded by Ott, but we have
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   247
  to).  
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   248
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   249
  Our insistence on reasoning with alpha-equated terms comes from the
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   250
  wealth of experience we gained with the older version of Nominal Isabelle:
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   251
  for non-trivial properties, reasoning about alpha-equated terms is much
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   252
  easier than reasoning with raw terms. The fundamental reason for this is
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   253
  that the HOL-logic underlying Nominal Isabelle allows us to replace
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   254
  ``equals-by-equals''. In contrast, replacing
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   255
  ``alpha-equals-by-alpha-equals'' in a representation based on raw terms
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   256
  requires a lot of extra reasoning work.
1535
a37c65fe10de more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1528
diff changeset
   257
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   258
  Although in informal settings a reasoning infrastructure for alpha-equated
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   259
  terms is nearly always taken for granted, establishing it automatically in
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   260
  the Isabelle/HOL theorem prover is a rather non-trivial task. For every
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   261
  specification we will need to construct a type containing as elements the
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   262
  alpha-equated terms. To do so, we use the standard HOL-technique of defining
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   263
  a new type by identifying a non-empty subset of an existing type.  The
1667
2922b04d9545 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1662
diff changeset
   264
  construction we perform in Isabelle/HOL can be illustrated by the following picture:
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   265
1528
d6ee4a1b34ce more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1524
diff changeset
   266
  \begin{center}
1552
d14b8b21bef2 picture
Christian Urban <urbanc@in.tum.de>
parents: 1550
diff changeset
   267
  \begin{tikzpicture}
d14b8b21bef2 picture
Christian Urban <urbanc@in.tum.de>
parents: 1550
diff changeset
   268
  %\draw[step=2mm] (-4,-1) grid (4,1);
d14b8b21bef2 picture
Christian Urban <urbanc@in.tum.de>
parents: 1550
diff changeset
   269
  
d14b8b21bef2 picture
Christian Urban <urbanc@in.tum.de>
parents: 1550
diff changeset
   270
  \draw[very thick] (0.7,0.4) circle (4.25mm);
d14b8b21bef2 picture
Christian Urban <urbanc@in.tum.de>
parents: 1550
diff changeset
   271
  \draw[rounded corners=1mm, very thick] ( 0.0,-0.8) rectangle ( 1.8, 0.9);
d14b8b21bef2 picture
Christian Urban <urbanc@in.tum.de>
parents: 1550
diff changeset
   272
  \draw[rounded corners=1mm, very thick] (-1.95,0.85) rectangle (-2.85,-0.05);
d14b8b21bef2 picture
Christian Urban <urbanc@in.tum.de>
parents: 1550
diff changeset
   273
  
d14b8b21bef2 picture
Christian Urban <urbanc@in.tum.de>
parents: 1550
diff changeset
   274
  \draw (-2.0, 0.845) --  (0.7,0.845);
d14b8b21bef2 picture
Christian Urban <urbanc@in.tum.de>
parents: 1550
diff changeset
   275
  \draw (-2.0,-0.045)  -- (0.7,-0.045);
d14b8b21bef2 picture
Christian Urban <urbanc@in.tum.de>
parents: 1550
diff changeset
   276
d14b8b21bef2 picture
Christian Urban <urbanc@in.tum.de>
parents: 1550
diff changeset
   277
  \draw ( 0.7, 0.4) node {\begin{tabular}{@ {}c@ {}}$\alpha$-\\[-1mm]clas.\end{tabular}};
d14b8b21bef2 picture
Christian Urban <urbanc@in.tum.de>
parents: 1550
diff changeset
   278
  \draw (-2.4, 0.4) node {\begin{tabular}{@ {}c@ {}}$\alpha$-eq.\\[-1mm]terms\end{tabular}};
d14b8b21bef2 picture
Christian Urban <urbanc@in.tum.de>
parents: 1550
diff changeset
   279
  \draw (1.8, 0.48) node[right=-0.1mm]
d14b8b21bef2 picture
Christian Urban <urbanc@in.tum.de>
parents: 1550
diff changeset
   280
    {\begin{tabular}{@ {}l@ {}}existing\\[-1mm] type\\ (sets of raw terms)\end{tabular}};
d14b8b21bef2 picture
Christian Urban <urbanc@in.tum.de>
parents: 1550
diff changeset
   281
  \draw (0.9, -0.35) node {\begin{tabular}{@ {}l@ {}}non-empty\\[-1mm]subset\end{tabular}};
d14b8b21bef2 picture
Christian Urban <urbanc@in.tum.de>
parents: 1550
diff changeset
   282
  \draw (-3.25, 0.55) node {\begin{tabular}{@ {}l@ {}}new\\[-1mm]type\end{tabular}};
d14b8b21bef2 picture
Christian Urban <urbanc@in.tum.de>
parents: 1550
diff changeset
   283
  
d14b8b21bef2 picture
Christian Urban <urbanc@in.tum.de>
parents: 1550
diff changeset
   284
  \draw[<->, very thick] (-1.8, 0.3) -- (-0.1,0.3);
d14b8b21bef2 picture
Christian Urban <urbanc@in.tum.de>
parents: 1550
diff changeset
   285
  \draw (-0.95, 0.3) node[above=0mm] {isomorphism};
d14b8b21bef2 picture
Christian Urban <urbanc@in.tum.de>
parents: 1550
diff changeset
   286
d14b8b21bef2 picture
Christian Urban <urbanc@in.tum.de>
parents: 1550
diff changeset
   287
  \end{tikzpicture}
1528
d6ee4a1b34ce more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1524
diff changeset
   288
  \end{center}
d6ee4a1b34ce more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1524
diff changeset
   289
d6ee4a1b34ce more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1524
diff changeset
   290
  \noindent
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   291
  We take as the starting point a definition of raw terms (defined as a
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   292
  datatype in Isabelle/HOL); identify then the alpha-equivalence classes in
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   293
  the type of sets of raw terms according to our alpha-equivalence relation
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   294
  and finally define the new type as these alpha-equivalence classes
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   295
  (non-emptiness is satisfied whenever the raw terms are definable as datatype
1690
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   296
  in Isabelle/HOL and the property that our relation for alpha-equivalence is
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   297
  indeed an equivalence relation).
1556
a7072d498723 more work on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1552
diff changeset
   298
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   299
  The fact that we obtain an isomorphism between the new type and the
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   300
  non-empty subset shows that the new type is a faithful representation of
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   301
  alpha-equated terms. That is not the case for example for terms using the
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   302
  locally nameless representation of binders \cite{McKinnaPollack99}: in this
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   303
  representation there are ``junk'' terms that need to be excluded by
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   304
  reasoning about a well-formedness predicate.
1556
a7072d498723 more work on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1552
diff changeset
   305
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   306
  The problem with introducing a new type in Isabelle/HOL is that in order to
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   307
  be useful, a reasoning infrastructure needs to be ``lifted'' from the
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   308
  underlying subset to the new type. This is usually a tricky and arduous
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   309
  task. To ease it, we re-implemented in Isabelle/HOL the quotient package
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   310
  described by Homeier \cite{Homeier05} for the HOL4 system. This package
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   311
  allows us to lift definitions and theorems involving raw terms to
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   312
  definitions and theorems involving alpha-equated terms. For example if we
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   313
  define the free-variable function over raw lambda-terms
1577
8466fe2216da tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1572
diff changeset
   314
8466fe2216da tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1572
diff changeset
   315
  \begin{center}
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   316
  @{text "fv(x) = {x}"}\hspace{10mm}
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   317
  @{text "fv(t\<^isub>1 t\<^isub>2) = fv(t\<^isub>1) \<union> fv(t\<^isub>2)"}\\[1mm]
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   318
  @{text "fv(\<lambda>x.t) = fv(t) - {x}"}
1577
8466fe2216da tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1572
diff changeset
   319
  \end{center}
8466fe2216da tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1572
diff changeset
   320
  
8466fe2216da tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1572
diff changeset
   321
  \noindent
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   322
  then with the help of the quotient package we can obtain a function @{text "fv\<^sup>\<alpha>"}
1617
99cee15cb5ff more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1613
diff changeset
   323
  operating on quotients, or alpha-equivalence classes of lambda-terms. This
1628
ddf409b2da2b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1620
diff changeset
   324
  lifted function is characterised by the equations
1577
8466fe2216da tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1572
diff changeset
   325
8466fe2216da tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1572
diff changeset
   326
  \begin{center}
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   327
  @{text "fv\<^sup>\<alpha>(x) = {x}"}\hspace{10mm}
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   328
  @{text "fv\<^sup>\<alpha>(t\<^isub>1 t\<^isub>2) = fv\<^sup>\<alpha>(t\<^isub>1) \<union> fv\<^sup>\<alpha>(t\<^isub>2)"}\\[1mm]
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   329
  @{text "fv\<^sup>\<alpha>(\<lambda>x.t) = fv\<^sup>\<alpha>(t) - {x}"}
1577
8466fe2216da tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1572
diff changeset
   330
  \end{center}
8466fe2216da tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1572
diff changeset
   331
8466fe2216da tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1572
diff changeset
   332
  \noindent
8466fe2216da tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1572
diff changeset
   333
  (Note that this means also the term-constructors for variables, applications
8466fe2216da tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1572
diff changeset
   334
  and lambda are lifted to the quotient level.)  This construction, of course,
1694
3bf0fddb7d44 clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents: 1693
diff changeset
   335
  only works if alpha-equivalence is indeed an equivalence relation, and the
3bf0fddb7d44 clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents: 1693
diff changeset
   336
  lifted definitions and theorems are respectful w.r.t.~alpha-equivalence.
3bf0fddb7d44 clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents: 1693
diff changeset
   337
  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
   338
  this function can be defined for raw terms, it does not respect
3bf0fddb7d44 clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents: 1693
diff changeset
   339
  alpha-equivalence and therefore cannot be lifted. To sum up, every lifting
3bf0fddb7d44 clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents: 1693
diff changeset
   340
  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
   341
  properties (see \cite{Homeier05}). In the paper we show that we are able to
3bf0fddb7d44 clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents: 1693
diff changeset
   342
  automate these proofs and therefore can establish a reasoning infrastructure
3bf0fddb7d44 clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents: 1693
diff changeset
   343
  for alpha-equated terms.
1667
2922b04d9545 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1662
diff changeset
   344
2922b04d9545 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1662
diff changeset
   345
  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
   346
  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
   347
  known as Core-Haskell (see Figure~\ref{corehas}). This term language
1711
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   348
  involves patterns that have lists of type-, coercion- and term-variables,
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   349
  all of which are bound in @{text "\<CASE>"}-expressions. One
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   350
  difficulty is that we do not know in advance how many variables need to
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   351
  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
   352
  annotation. Representing such binders with single binders and reasoning
3bf0fddb7d44 clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents: 1693
diff changeset
   353
  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
   354
1528
d6ee4a1b34ce more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1524
diff changeset
   355
  \noindent
d6ee4a1b34ce more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1524
diff changeset
   356
  {\bf Contributions:}  We provide new definitions for when terms
d6ee4a1b34ce more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1524
diff changeset
   357
  involving multiple binders are alpha-equivalent. These definitions are
1607
ac69ed8303cc tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1587
diff changeset
   358
  inspired by earlier work of Pitts \cite{Pitts04}. By means of automatic
1528
d6ee4a1b34ce more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1524
diff changeset
   359
  proofs, we establish a reasoning infrastructure for alpha-equated
d6ee4a1b34ce more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1524
diff changeset
   360
  terms, including properties about support, freshness and equality
1607
ac69ed8303cc tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1587
diff changeset
   361
  conditions for alpha-equated terms. We are also able to derive, at the moment 
ac69ed8303cc tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1587
diff changeset
   362
  only manually, strong induction principles that 
ac69ed8303cc tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1587
diff changeset
   363
  have the variable convention already built in.
1667
2922b04d9545 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1662
diff changeset
   364
2922b04d9545 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1662
diff changeset
   365
  \begin{figure}
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   366
  \begin{boxedminipage}{\linewidth}
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   367
  \begin{center}
1699
2dca07aca287 small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents: 1694
diff changeset
   368
  \begin{tabular}{r@ {\hspace{1mm}}r@ {\hspace{2mm}}l}
1690
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   369
  \multicolumn{3}{@ {}l}{Type Kinds}\\
1699
2dca07aca287 small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents: 1694
diff changeset
   370
  @{text "\<kappa>"} & @{text "::="} & @{text "\<star> | \<kappa>\<^isub>1 \<rightarrow> \<kappa>\<^isub>2"}\smallskip\\
1690
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   371
  \multicolumn{3}{@ {}l}{Coercion Kinds}\\
1699
2dca07aca287 small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents: 1694
diff changeset
   372
  @{text "\<iota>"} & @{text "::="} & @{text "\<sigma>\<^isub>1 \<sim> \<sigma>\<^isub>2"}\smallskip\\
1690
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   373
  \multicolumn{3}{@ {}l}{Types}\\
1694
3bf0fddb7d44 clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents: 1693
diff changeset
   374
  @{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
   375
  @{text "| \<forall>a:\<kappa>. \<sigma> | \<iota> \<Rightarrow> \<sigma>"}\smallskip\\
1690
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   376
  \multicolumn{3}{@ {}l}{Coercion Types}\\
1694
3bf0fddb7d44 clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents: 1693
diff changeset
   377
  @{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
   378
  @{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
   379
  & @{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
   380
  & @{text "|"} & @{text "\<gamma>\<^isub>1 \<sim> \<gamma>\<^isub>2 | rightc \<gamma> | leftc \<gamma> | \<gamma>\<^isub>1 \<triangleright> \<gamma>\<^isub>2"}\smallskip\\
1690
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   381
  \multicolumn{3}{@ {}l}{Terms}\\
1699
2dca07aca287 small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents: 1694
diff changeset
   382
  @{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
   383
  & @{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
   384
  & @{text "|"} & @{text "\<CASE> e\<^isub>1 \<OF>"}$\;\overline{@{text "p \<rightarrow> e\<^isub>2"}}$ @{text "| e \<triangleright> \<gamma>"}\smallskip\\
1690
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   385
  \multicolumn{3}{@ {}l}{Patterns}\\
1699
2dca07aca287 small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents: 1694
diff changeset
   386
  @{text "p"} & @{text "::="} & @{text "K"}$\;\overline{@{text "a:\<kappa>"}}\;\overline{@{text "c:\<iota>"}}\;\overline{@{text "x:\<sigma>"}}$\smallskip\\
1690
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   387
  \multicolumn{3}{@ {}l}{Constants}\\
1699
2dca07aca287 small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents: 1694
diff changeset
   388
  & @{text C} & coercion constants\\
2dca07aca287 small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents: 1694
diff changeset
   389
  & @{text T} & value type constructors\\
2dca07aca287 small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents: 1694
diff changeset
   390
  & @{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
   391
  & @{text K} & data constructors\smallskip\\
1690
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   392
  \multicolumn{3}{@ {}l}{Variables}\\
1699
2dca07aca287 small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents: 1694
diff changeset
   393
  & @{text a} & type variables\\
2dca07aca287 small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents: 1694
diff changeset
   394
  & @{text c} & coercion variables\\
2dca07aca287 small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents: 1694
diff changeset
   395
  & @{text x} & term variables\\
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   396
  \end{tabular}
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   397
  \end{center}
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   398
  \end{boxedminipage}
1699
2dca07aca287 small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents: 1694
diff changeset
   399
  \caption{The term-language of System @{text "F\<^isub>C"}
2dca07aca287 small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents: 1694
diff changeset
   400
  \cite{CoreHaskell}, also often referred to as \emph{Core-Haskell}. In this
2dca07aca287 small changes in the core-haskell spec
Christian Urban <urbanc@in.tum.de>
parents: 1694
diff changeset
   401
  version of the term-language we made a modification by separating the
1711
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   402
  grammars for type kinds and coercion kinds, as well as for types and coercion
1702
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
   403
  types. For this paper the interesting term-constructor is @{text "\<CASE>"},
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
   404
  which binds multiple type-, coercion- and term-variables.\label{corehas}}
1667
2922b04d9545 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1662
diff changeset
   405
  \end{figure}
1485
c004e7448dca temporarily disabled tests in Nominal/ROOT
Christian Urban <urbanc@in.tum.de>
parents: 1484
diff changeset
   406
*}
c004e7448dca temporarily disabled tests in Nominal/ROOT
Christian Urban <urbanc@in.tum.de>
parents: 1484
diff changeset
   407
1493
52f68b524fd2 slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1491
diff changeset
   408
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
   409
52f68b524fd2 slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1491
diff changeset
   410
text {*
1556
a7072d498723 more work on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1552
diff changeset
   411
  At its core, Nominal Isabelle is an adaption of the nominal logic work by
a7072d498723 more work on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1552
diff changeset
   412
  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
   413
  \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
   414
  to aid the description of what follows. 
3bf0fddb7d44 clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents: 1693
diff changeset
   415
1711
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   416
  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
   417
  sort-respecting permutations of atoms. We will use the letters @{text "a,
1711
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   418
  b, c, \<dots>"} to stand for atoms and @{text "p, q, \<dots>"} to stand for
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   419
  permutations.  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
   420
  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
   421
  It is assumed that there is an infinite supply of atoms for each
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   422
  sort. However, in order to simplify the description, we shall restrict ourselves 
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   423
  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
   424
52f68b524fd2 slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1491
diff changeset
   425
  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
   426
  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
   427
  two-place permutation operation written
1617
99cee15cb5ff more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1613
diff changeset
   428
  %
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   429
  \begin{center}
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   430
  @{text "_ \<bullet> _  ::  perm \<Rightarrow> \<beta> \<Rightarrow> \<beta>"}
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   431
  \end{center}
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
  \noindent 
1628
ddf409b2da2b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1620
diff changeset
   434
  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
   435
  over which the permutation 
1617
99cee15cb5ff more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1613
diff changeset
   436
  acts. In Nominal Isabelle, the identity permutation is written as @{term "0::perm"},
1690
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   437
  the composition of two permutations @{term p} and @{term q} as \mbox{@{term "p + q"}}, 
1570
014ddf0d7271 tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1566
diff changeset
   438
  and the inverse permutation of @{term p} as @{text "- p"}. The permutation
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   439
  operation is defined by induction over the type-hierarchy (see \cite{HuffmanUrban10});
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   440
  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
   441
  given by:
1702
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
   442
  %
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   443
  \begin{equation}\label{permute}
1694
3bf0fddb7d44 clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents: 1693
diff changeset
   444
  \mbox{\begin{tabular}{@ {}cc@ {}}
1690
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   445
  \begin{tabular}{@ {}l@ {}}
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   446
  @{thm permute_prod.simps[no_vars, THEN eq_reflection]}\\[2mm]
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   447
  @{thm permute_list.simps(1)[no_vars, THEN eq_reflection]}\\
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   448
  @{thm permute_list.simps(2)[no_vars, THEN eq_reflection]}\\
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   449
  \end{tabular} &
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   450
  \begin{tabular}{@ {}l@ {}}
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   451
  @{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
   452
  @{text "p \<bullet> f \<equiv> \<lambda>x. p \<bullet> (f (- p \<bullet> x))"}\\
1690
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   453
  @{thm permute_bool_def[no_vars, THEN eq_reflection]}\\
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   454
  \end{tabular}
1694
3bf0fddb7d44 clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents: 1693
diff changeset
   455
  \end{tabular}}
3bf0fddb7d44 clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents: 1693
diff changeset
   456
  \end{equation}
1690
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   457
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   458
  \noindent
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
   459
  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
   460
  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
   461
  as follows:
1617
99cee15cb5ff more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1613
diff changeset
   462
  %
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   463
  \begin{center}
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   464
  @{text "(a b) = \<lambda>c. if a = c then b else if b = c then a else c"}
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   465
  \end{center}
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   466
1570
014ddf0d7271 tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1566
diff changeset
   467
  The most original aspect of the nominal logic work of Pitts is a general
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   468
  definition for the notion of the ``set of free variables of an object @{text
1570
014ddf0d7271 tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1566
diff changeset
   469
  "x"}''.  This notion, written @{term "supp x"}, is general in the sense that
1628
ddf409b2da2b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1620
diff changeset
   470
  it applies not only to lambda-terms (alpha-equated or not), but also to lists,
1570
014ddf0d7271 tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1566
diff changeset
   471
  products, sets and even functions. The definition depends only on the
014ddf0d7271 tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1566
diff changeset
   472
  permutation operation and on the notion of equality defined for the type of
014ddf0d7271 tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1566
diff changeset
   473
  @{text x}, namely:
1617
99cee15cb5ff more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1613
diff changeset
   474
  %
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   475
  \begin{equation}\label{suppdef}
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   476
  @{thm supp_def[no_vars, THEN eq_reflection]}
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   477
  \end{equation}
1493
52f68b524fd2 slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1491
diff changeset
   478
52f68b524fd2 slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1491
diff changeset
   479
  \noindent
52f68b524fd2 slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1491
diff changeset
   480
  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
   481
  for an @{text x}, defined as
1617
99cee15cb5ff more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1613
diff changeset
   482
  %
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   483
  \begin{center}
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   484
  @{thm fresh_def[no_vars]}
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   485
  \end{center}
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
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
   488
  We also use for sets of atoms the abbreviation 
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   489
  @{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
   490
  @{thm (rhs) fresh_star_def[no_vars]}.
1493
52f68b524fd2 slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1491
diff changeset
   491
  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
   492
  without knowing anything about the structure of @{term x} that
52f68b524fd2 slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1491
diff changeset
   493
  swapping two fresh atoms, say @{text a} and @{text b}, leave 
1506
7c607df46a0a slightly more in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1493
diff changeset
   494
  @{text x} unchanged. 
7c607df46a0a slightly more in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1493
diff changeset
   495
1711
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   496
  \begin{property}\label{swapfreshfresh}
1506
7c607df46a0a slightly more in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1493
diff changeset
   497
  @{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
   498
  \end{property}
1506
7c607df46a0a slightly more in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1493
diff changeset
   499
1711
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   500
  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
   501
  described, for example for atoms, products, lists, function applications, 
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
   502
  booleans and permutations as follows\\[-6mm]
1690
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   503
  %
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   504
  \begin{eqnarray}
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   505
  @{term "supp a"} & = & @{term "{a}"}\\
1690
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   506
  @{term "supp (x, y)"} & = & @{term "supp x \<union> supp y"}\\
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   507
  @{term "supp []"} & = & @{term "{}"}\\
1711
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   508
  @{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
   509
  @{text "supp (f x)"} & @{text "\<subseteq>"} & @{term "supp f \<union> supp x"}\label{suppfun}\\
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   510
  @{term "supp b"} & = & @{term "{}"}\\
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   511
  @{term "supp p"} & = & @{term "{a. p \<bullet> a \<noteq> a}"}
1690
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   512
  \end{eqnarray}
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   513
  
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   514
  \noindent 
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
   515
  in some cases it can be difficult to characterise the support precisely, and
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
   516
  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
   517
  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
   518
  as follows:
1693
3668b389edf3 spell check
Christian Urban <urbanc@in.tum.de>
parents: 1690
diff changeset
   519
3668b389edf3 spell check
Christian Urban <urbanc@in.tum.de>
parents: 1690
diff changeset
   520
  \begin{defn}
3668b389edf3 spell check
Christian Urban <urbanc@in.tum.de>
parents: 1690
diff changeset
   521
  A set @{text S} \emph{supports} @{text x} if for all atoms @{text a} and @{text b}
3668b389edf3 spell check
Christian Urban <urbanc@in.tum.de>
parents: 1690
diff changeset
   522
  not in @{text S} we have @{term "(a \<rightleftharpoons> b) \<bullet> x = x"}.
3668b389edf3 spell check
Christian Urban <urbanc@in.tum.de>
parents: 1690
diff changeset
   523
  \end{defn}
1690
44a5edac90ad more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1687
diff changeset
   524
1693
3668b389edf3 spell check
Christian Urban <urbanc@in.tum.de>
parents: 1690
diff changeset
   525
  \noindent
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   526
  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
   527
  two properties.
1693
3668b389edf3 spell check
Christian Urban <urbanc@in.tum.de>
parents: 1690
diff changeset
   528
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   529
  \begin{property}\label{supportsprop}
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   530
  {\it i)} @{thm[mode=IfThen] supp_is_subset[no_vars]}\\ 
1693
3668b389edf3 spell check
Christian Urban <urbanc@in.tum.de>
parents: 1690
diff changeset
   531
  {\it ii)} @{thm supp_supports[no_vars]}.
3668b389edf3 spell check
Christian Urban <urbanc@in.tum.de>
parents: 1690
diff changeset
   532
  \end{property}
3668b389edf3 spell check
Christian Urban <urbanc@in.tum.de>
parents: 1690
diff changeset
   533
3668b389edf3 spell check
Christian Urban <urbanc@in.tum.de>
parents: 1690
diff changeset
   534
  Another important notion in the nominal logic work is \emph{equivariance}.
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   535
  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
   536
  it is required that every permutation leaves @{text f} unchanged, that is
1711
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   537
  %
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   538
  \begin{equation}\label{equivariancedef}
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   539
  @{term "\<forall>p. p \<bullet> f = f"}
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   540
  \end{equation}
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   541
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   542
  \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
   543
  @{text "f x"} can be moved to the argument @{text x}. That means for equivariant
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
   544
  functions @{text f} we have for all permutations @{text p}
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   545
  %
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   546
  \begin{equation}\label{equivariance}
1711
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   547
  @{text "p \<bullet> f = f"} \;\;\;\textit{if and only if}\;\;\;
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   548
  @{text "p \<bullet> (f x) = f (p \<bullet> x)"}
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   549
  \end{equation}
1694
3bf0fddb7d44 clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents: 1693
diff changeset
   550
 
3bf0fddb7d44 clarified core-haskell example
Christian Urban <urbanc@in.tum.de>
parents: 1693
diff changeset
   551
  \noindent
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   552
  From property \eqref{equivariancedef} and the definition of @{text supp}, we 
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
   553
  can be easily deduce that equivariant functions have empty support.
1711
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   554
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   555
  Finally, the nominal logic work provides us with convenient means to rename 
1711
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   556
  binders. While in the older version of Nominal Isabelle, we used extensively 
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   557
  Property~\ref{swapfreshfresh} for renaming single binders, this property 
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
   558
  proved 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
   559
  following generalisations turned out to be easier to use.
1711
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   560
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   561
  \begin{property}\label{supppermeq}
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   562
  @{thm[mode=IfThen] supp_perm_eq[no_vars]}
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   563
  \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
   564
1747
4abb95a7264b starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1746
diff changeset
   565
  \begin{property}\label{avoiding}
1716
Christian Urban <urbanc@in.tum.de>
parents: 1715
diff changeset
   566
  For a finite set @{text as} and a finitely supported @{text x} with
Christian Urban <urbanc@in.tum.de>
parents: 1715
diff changeset
   567
  @{term "as \<sharp>* x"} and also a finitely supported @{text c}, there
Christian Urban <urbanc@in.tum.de>
parents: 1715
diff changeset
   568
  exists a permutation @{text p} such that @{term "(p \<bullet> as) \<sharp>* c"} and
1711
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   569
  @{term "supp x \<sharp>* p"}.
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   570
  \end{property}
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   571
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   572
  \noindent
1716
Christian Urban <urbanc@in.tum.de>
parents: 1715
diff changeset
   573
  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
   574
  of binders (being bound, or fresh, in @{text x} is ensured by the
1716
Christian Urban <urbanc@in.tum.de>
parents: 1715
diff changeset
   575
  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
   576
  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
   577
  as long as it is finitely supported) and also @{text "p"} does not affect anything
1711
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   578
  in the support of @{text x} (that is @{term "supp x \<sharp>* p"}). The last 
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   579
  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
   580
  @{text as} in @{text x}, because @{term "p \<bullet> x = x"}.
1711
55cb244b020c changes to section 2
Christian Urban <urbanc@in.tum.de>
parents: 1708
diff changeset
   581
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
   582
  Most properties given in this section are described in \cite{HuffmanUrban10}
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
   583
  and of course all are formalised in Isabelle/HOL. In the next sections we will make 
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
   584
  extensively use of these properties in order to define alpha-equivalence in 
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
   585
  the presence of multiple binders.
1493
52f68b524fd2 slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1491
diff changeset
   586
*}
52f68b524fd2 slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1491
diff changeset
   587
1485
c004e7448dca temporarily disabled tests in Nominal/ROOT
Christian Urban <urbanc@in.tum.de>
parents: 1484
diff changeset
   588
1620
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
   589
section {* General Binders\label{sec:binders} *}
1485
c004e7448dca temporarily disabled tests in Nominal/ROOT
Christian Urban <urbanc@in.tum.de>
parents: 1484
diff changeset
   590
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
   591
text {*
1587
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
   592
  In Nominal Isabelle, the user is expected to write down a specification of a
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
   593
  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
   594
  from this specification (remember that Nominal Isabelle is a definitional
1587
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
   595
  extension of Isabelle/HOL, which does not introduce any new axioms).
1579
5b0bdd64956e more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1577
diff changeset
   596
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   597
  In order to keep our work with deriving the reasoning infrastructure
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   598
  manageable, we will wherever possible state definitions and perform proofs
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   599
  on the user-level of Isabelle/HOL, as opposed to write custom ML-code that
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   600
  generates them anew for each specification. To that end, we will consider
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   601
  first pairs @{text "(as, x)"} of type @{text "(atom set) \<times> \<beta>"}.  These pairs
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   602
  are intended to represent the abstraction, or binding, of the set @{text
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   603
  "as"} in the body @{text "x"}.
1570
014ddf0d7271 tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1566
diff changeset
   604
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   605
  The first question we have to answer is when two pairs @{text "(as, x)"} and
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   606
  @{text "(bs, y)"} are alpha-equivalent? (At the moment we are interested in
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   607
  the notion of alpha-equivalence that is \emph{not} preserved by adding
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   608
  vacuous binders.) To answer this, we identify four conditions: {\it i)}
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   609
  given a free-variable function @{text "fv"} of type \mbox{@{text "\<beta> \<Rightarrow> atom
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   610
  set"}}, then @{text x} and @{text y} need to have the same set of free
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   611
  variables; moreover there must be a permutation @{text p} such that {\it
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   612
  ii)} @{text p} leaves the free variables of @{text x} and @{text y} unchanged, but
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   613
  {\it iii)} ``moves'' their bound names so that we obtain modulo a relation,
1662
e78cd33a246f more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1657
diff changeset
   614
  say \mbox{@{text "_ R _"}}, two equivalent terms. We also require {\it iv)} that
e78cd33a246f more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1657
diff changeset
   615
  @{text p} makes the sets of abstracted atoms @{text as} and @{text bs} equal. The
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   616
  requirements {\it i)} to {\it iv)} can be stated formally as follows:
1556
a7072d498723 more work on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1552
diff changeset
   617
  %
1572
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   618
  \begin{equation}\label{alphaset}
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   619
  \begin{array}{@ {\hspace{10mm}}r@ {\hspace{2mm}}l}
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   620
  \multicolumn{2}{l}{@{term "(as, x) \<approx>gen R fv p (bs, y)"}\hspace{2mm}@{text "\<equiv>"}\hspace{30mm}}\\[1mm]
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   621
               & @{term "fv(x) - as = fv(y) - bs"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   622
  @{text "\<and>"} & @{term "(fv(x) - as) \<sharp>* p"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   623
  @{text "\<and>"} & @{text "(p \<bullet> x) R y"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   624
  @{text "\<and>"} & @{term "(p \<bullet> as) = bs"}\\ 
1572
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   625
  \end{array}
1556
a7072d498723 more work on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1552
diff changeset
   626
  \end{equation}
a7072d498723 more work on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1552
diff changeset
   627
a7072d498723 more work on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1552
diff changeset
   628
  \noindent
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   629
  Note that this relation is dependent on the permutation @{text
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   630
  "p"}. Alpha-equivalence between two pairs is then the relation where we
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   631
  existentially quantify over this @{text "p"}. Also note that the relation is
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   632
  dependent on a free-variable function @{text "fv"} and a relation @{text
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   633
  "R"}. The reason for this extra generality is that we will use
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   634
  $\approx_{\textit{set}}$ for both ``raw'' terms and alpha-equated terms. In
1716
Christian Urban <urbanc@in.tum.de>
parents: 1715
diff changeset
   635
  the latter case, $R$ will be replaced by equality @{text "="} and we
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   636
  will prove that @{text "fv"} is equal to @{text "supp"}.
1572
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   637
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   638
  The definition in \eqref{alphaset} does not make any distinction between the
1579
5b0bdd64956e more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1577
diff changeset
   639
  order of abstracted variables. If we want this, then we can define alpha-equivalence 
5b0bdd64956e more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1577
diff changeset
   640
  for pairs of the form \mbox{@{text "(as, x)"}} with type @{text "(atom list) \<times> \<beta>"} 
5b0bdd64956e more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1577
diff changeset
   641
  as follows
1572
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   642
  %
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   643
  \begin{equation}\label{alphalist}
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   644
  \begin{array}{@ {\hspace{10mm}}r@ {\hspace{2mm}}l}
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   645
  \multicolumn{2}{l}{@{term "(as, x) \<approx>lst R fv p (bs, y)"}\hspace{2mm}@{text "\<equiv>"}\hspace{30mm}}\\[1mm]
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   646
             & @{term "fv(x) - (set as) = fv(y) - (set bs)"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   647
  \wedge     & @{term "(fv(x) - set as) \<sharp>* p"}\\
1572
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   648
  \wedge     & @{text "(p \<bullet> x) R y"}\\
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   649
  \wedge     & @{term "(p \<bullet> as) = bs"}\\ 
1572
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   650
  \end{array}
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   651
  \end{equation}
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   652
  
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   653
  \noindent
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   654
  where @{term set} is a 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
   655
  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
   656
  and @{text bs} are lists of atoms).
1556
a7072d498723 more work on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1552
diff changeset
   657
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   658
  If we do not want to make any difference between the order of binders \emph{and}
1579
5b0bdd64956e more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1577
diff changeset
   659
  also allow vacuous binders, then we keep sets of binders, but drop the fourth 
5b0bdd64956e more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1577
diff changeset
   660
  condition in \eqref{alphaset}:
1572
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   661
  %
1579
5b0bdd64956e more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1577
diff changeset
   662
  \begin{equation}\label{alphares}
1572
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   663
  \begin{array}{@ {\hspace{10mm}}r@ {\hspace{2mm}}l}
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   664
  \multicolumn{2}{l}{@{term "(as, x) \<approx>res R fv p (bs, y)"}\hspace{2mm}@{text "\<equiv>"}\hspace{30mm}}\\[1mm]
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   665
             & @{term "fv(x) - as = fv(y) - bs"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   666
  \wedge     & @{term "(fv(x) - as) \<sharp>* p"}\\
1572
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   667
  \wedge     & @{text "(p \<bullet> x) R y"}\\
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   668
  \end{array}
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   669
  \end{equation}
1556
a7072d498723 more work on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1552
diff changeset
   670
1662
e78cd33a246f more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1657
diff changeset
   671
  It might be useful to consider some examples for how these definitions of alpha-equivalence
e78cd33a246f more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1657
diff changeset
   672
  pan out in practise.
1579
5b0bdd64956e more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1577
diff changeset
   673
  For this consider the case of abstracting a set of variables over types (as in type-schemes). 
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   674
  We set @{text R} to be the equality and for @{text "fv(T)"} we define
1572
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   675
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   676
  \begin{center}
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   677
  @{text "fv(x) = {x}"}  \hspace{5mm} @{text "fv(T\<^isub>1 \<rightarrow> T\<^isub>2) = fv(T\<^isub>1) \<union> fv(T\<^isub>2)"}
1572
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   678
  \end{center}
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   679
0368aef38e6a more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1570
diff changeset
   680
  \noindent
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   681
  Now recall the examples shown in \eqref{ex1}, \eqref{ex2} and
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   682
  \eqref{ex3}. It can be easily checked that @{text "({x, y}, x \<rightarrow> y)"} and
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   683
  @{text "({y, x}, y \<rightarrow> x)"} are alpha-equivalent according to $\approx_{\textit{set}}$ and
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   684
  $\approx_{\textit{res}}$ by taking @{text p} to be the swapping @{term "(x \<rightleftharpoons>
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   685
  y)"}. In case of @{text "x \<noteq> y"}, then @{text "([x, y], x \<rightarrow> y)"}
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   686
  $\not\approx_{\textit{list}}$ @{text "([y, x], x \<rightarrow> y)"} since there is no permutation
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   687
  that makes the lists @{text "[x, y]"} and @{text "[y, x]"} equal, and also
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   688
  leaves the type \mbox{@{text "x \<rightarrow> y"}} unchanged. Another example is
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   689
  @{text "({x}, x)"} $\approx_{\textit{res}}$ @{text "({x, y}, x)"} which holds by 
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   690
  taking @{text p} to be the
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   691
  identity permutation.  However, if @{text "x \<noteq> y"}, then @{text "({x}, x)"}
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   692
  $\not\approx_{\textit{set}}$ @{text "({x, y}, x)"} since there is no permutation 
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   693
  that makes the
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   694
  sets @{text "{x}"} and @{text "{x, y}"} equal (similarly for $\approx_{\textit{list}}$).
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   695
  It can also relatively easily be shown that all tree notions of alpha-equivalence
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   696
  coincide, if we only abstract a single atom. 
1579
5b0bdd64956e more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1577
diff changeset
   697
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   698
  % looks too ugly
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   699
  %\noindent
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   700
  %Let $\star$ range over $\{set, res, list\}$. We prove next under which 
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   701
  %conditions the $\approx\hspace{0.05mm}_\star^{\fv, R, p}$ are equivalence 
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   702
  %relations and equivariant:
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   703
  %
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   704
  %\begin{lemma}
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   705
  %{\it i)} Given the fact that $x\;R\;x$ holds, then 
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   706
  %$(as, x) \approx\hspace{0.05mm}^{\fv, R, 0}_\star (as, x)$. {\it ii)} Given
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   707
  %that @{text "(p \<bullet> x) R y"} implies @{text "(-p \<bullet> y) R x"}, then
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   708
  %$(as, x) \approx\hspace{0.05mm}^{\fv, R, p}_\star (bs, y)$ implies
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   709
  %$(bs, y) \approx\hspace{0.05mm}^{\fv, R, - p}_\star (as, x)$. {\it iii)} Given
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   710
  %that @{text "(p \<bullet> x) R y"} and @{text "(q \<bullet> y) R z"} implies 
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   711
  %@{text "((q + p) \<bullet> x) R z"}, then $(as, x) \approx\hspace{0.05mm}^{\fv, R, p}_\star (bs, y)$
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   712
  %and $(bs, y) \approx\hspace{0.05mm}^{\fv, R, q}_\star (cs, z)$ implies
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   713
  %$(as, x) \approx\hspace{0.05mm}^{\fv, R, q + p}_\star (cs, z)$. Given
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   714
  %@{text "(q \<bullet> x) R y"} implies @{text "(p \<bullet> (q \<bullet> x)) R (p \<bullet> y)"} and
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   715
  %@{text "p \<bullet> (fv x) = fv (p \<bullet> x)"} then @{text "p \<bullet> (fv y) = fv (p \<bullet> y)"}, then
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   716
  %$(as, x) \approx\hspace{0.05mm}^{\fv, R, q}_\star (bs, y)$ implies
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   717
  %$(p \;\isasymbullet\; as, p \;\isasymbullet\; x) \approx\hspace{0.05mm}^{\fv, R, q}_\star 
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   718
  %(p \;\isasymbullet\; bs, p \;\isasymbullet\; y)$.
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   719
  %\end{lemma}
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   720
  
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   721
  %\begin{proof}
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   722
  %All properties are by unfolding the definitions and simple calculations. 
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   723
  %\end{proof}
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   724
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   725
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
   726
  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
   727
  types. For this we define 
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   728
  %
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   729
  \begin{equation}
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   730
  @{term "abs_set (as, x) (bs, x) \<equiv> \<exists>p. alpha_gen (as, x) equal supp p (bs, x)"}
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   731
  \end{equation}
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   732
  
1579
5b0bdd64956e more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1577
diff changeset
   733
  \noindent
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   734
  (similarly for $\approx_{\textit{abs\_list}}$ 
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   735
  and $\approx_{\textit{abs\_res}}$). We can show that these relations are equivalence 
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   736
  relations and equivariant.
1579
5b0bdd64956e more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1577
diff changeset
   737
1739
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
   738
  \begin{lemma}\label{alphaeq} 
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
   739
  The relations $\approx_{\textit{abs\_set}}$, $\approx_{\textit{abs\_list}}$
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
   740
  and $\approx_{\textit{abs\_res}}$ are equivalence relations, and if @{term
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
   741
  "abs_set (as, x) (bs, y)"} then also @{term "abs_set (p \<bullet> as, p \<bullet> x) (p \<bullet>
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
   742
  bs, p \<bullet> y)"} (similarly for the other two relations).
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   743
  \end{lemma}
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   744
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   745
  \begin{proof}
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   746
  Reflexivity is by taking @{text "p"} to be @{text "0"}. For symmetry we have
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   747
  a permutation @{text p} and for the proof obligation take @{term "-p"}. In case 
1662
e78cd33a246f more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1657
diff changeset
   748
  of transitivity, we have two permutations @{text p} and @{text q}, and for the
e78cd33a246f more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1657
diff changeset
   749
  proof obligation use @{text "q + p"}. All conditions are then by simple
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   750
  calculations. 
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   751
  \end{proof}
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   752
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   753
  \noindent
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   754
  This lemma allows us to use our quotient package and introduce 
1662
e78cd33a246f more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1657
diff changeset
   755
  new types @{text "\<beta> abs_set"}, @{text "\<beta> abs_res"} and @{text "\<beta> abs_list"}
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   756
  representing alpha-equivalence classes of pairs. The elements in these types 
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   757
  will be, respectively, written as:
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   758
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   759
  \begin{center}
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   760
  @{term "Abs as x"} \hspace{5mm} 
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   761
  @{term "Abs_lst as x"} \hspace{5mm}
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   762
  @{term "Abs_res as x"}
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   763
  \end{center}
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
   764
1662
e78cd33a246f more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1657
diff changeset
   765
  \noindent
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
   766
  indicating that a set (or list) @{text as} is abstracted in @{text x}. We will
1716
Christian Urban <urbanc@in.tum.de>
parents: 1715
diff changeset
   767
  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
   768
  \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
   769
  abstractions, namely:
1662
e78cd33a246f more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1657
diff changeset
   770
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   771
  \begin{thm}[Support of Abstractions]\label{suppabs} 
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   772
  Assuming @{text x} has finite support, then\\[-6mm] 
1662
e78cd33a246f more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1657
diff changeset
   773
  \begin{center}
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   774
  \begin{tabular}{l@ {\hspace{2mm}}c@ {\hspace{2mm}}l}
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   775
  @{thm (lhs) supp_abs(1)[no_vars]} & $=$ & @{thm (rhs) supp_abs(1)[no_vars]}\\
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   776
  @{thm (lhs) supp_abs(2)[no_vars]} & $=$ & @{thm (rhs) supp_abs(2)[no_vars]}\\
1716
Christian Urban <urbanc@in.tum.de>
parents: 1715
diff changeset
   777
  @{thm (lhs) supp_abs(3)[where bs="as", no_vars]} & $=$ & @{thm (rhs) supp_abs(3)[where bs="as", no_vars]}
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   778
  \end{tabular}
1662
e78cd33a246f more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1657
diff changeset
   779
  \end{center}
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   780
  \end{thm}
1662
e78cd33a246f more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1657
diff changeset
   781
e78cd33a246f more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1657
diff changeset
   782
  \noindent
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   783
  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
   784
  follow by similar arguments. By definition of the abstraction type @{text "abs_set"} 
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   785
  we have 
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   786
  %
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   787
  \begin{equation}\label{abseqiff}
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   788
  @{thm (lhs) abs_eq_iff(1)[where bs="as" and cs="bs", no_vars]} \;\;\text{if and only if}\;\; 
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   789
  @{thm (rhs) abs_eq_iff(1)[where bs="as" and cs="bs", no_vars]}
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   790
  \end{equation}
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   791
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   792
  \noindent
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   793
  and also
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   794
  %
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   795
  \begin{equation}
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   796
  @{thm permute_Abs[no_vars]}
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   797
  \end{equation}
1662
e78cd33a246f more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1657
diff changeset
   798
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   799
  \noindent
1716
Christian Urban <urbanc@in.tum.de>
parents: 1715
diff changeset
   800
  The second fact derives from the definition of permutations acting on pairs 
Christian Urban <urbanc@in.tum.de>
parents: 1715
diff changeset
   801
  (see \eqref{permute}) and alpha-equivalence being equivariant 
Christian Urban <urbanc@in.tum.de>
parents: 1715
diff changeset
   802
  (see Lemma~\ref{alphaeq}). With these two facts at our disposal, we can show 
Christian Urban <urbanc@in.tum.de>
parents: 1715
diff changeset
   803
  the following lemma about swapping two atoms.
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   804
  
1662
e78cd33a246f more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1657
diff changeset
   805
  \begin{lemma}
1716
Christian Urban <urbanc@in.tum.de>
parents: 1715
diff changeset
   806
  @{thm[mode=IfThen] abs_swap1(1)[where bs="as", no_vars]}
1662
e78cd33a246f more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1657
diff changeset
   807
  \end{lemma}
e78cd33a246f more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1657
diff changeset
   808
e78cd33a246f more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1657
diff changeset
   809
  \begin{proof}
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
   810
  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
   811
  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
   812
  Moreover @{text supp} and set difference are equivariant (see \cite{HuffmanUrban10}).
1662
e78cd33a246f more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1657
diff changeset
   813
  \end{proof}
1587
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
   814
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   815
  \noindent
1716
Christian Urban <urbanc@in.tum.de>
parents: 1715
diff changeset
   816
  This lemma allows us to show
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   817
  %
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   818
  \begin{equation}\label{halfone}
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   819
  @{thm abs_supports(1)[no_vars]}
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   820
  \end{equation}
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   821
  
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   822
  \noindent
1716
Christian Urban <urbanc@in.tum.de>
parents: 1715
diff changeset
   823
  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
   824
  Theorem~\ref{suppabs}. The ``other half'' is a bit more involved. To establish 
1716
Christian Urban <urbanc@in.tum.de>
parents: 1715
diff changeset
   825
  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
   826
  function @{text aux}, taking an abstraction as argument:
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   827
  %
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   828
  \begin{center}
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   829
  @{thm supp_gen.simps[THEN eq_reflection, no_vars]}
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   830
  \end{center}
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   831
  
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   832
  \noindent
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   833
  Using the second equation in \eqref{equivariance}, we can show that 
1716
Christian Urban <urbanc@in.tum.de>
parents: 1715
diff changeset
   834
  @{text "aux"} is equivariant (since @{term "p \<bullet> (supp x - as) =
Christian Urban <urbanc@in.tum.de>
parents: 1715
diff changeset
   835
  (supp (p \<bullet> x)) - (p \<bullet> as)"}) and therefore has empty support. 
Christian Urban <urbanc@in.tum.de>
parents: 1715
diff changeset
   836
  This in turn means
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   837
  %
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   838
  \begin{center}
1716
Christian Urban <urbanc@in.tum.de>
parents: 1715
diff changeset
   839
  @{term "supp (supp_gen (Abs as x)) \<subseteq> supp (Abs as x)"}
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   840
  \end{center}
1687
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   841
51bc795b81fd more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1667
diff changeset
   842
  \noindent
1716
Christian Urban <urbanc@in.tum.de>
parents: 1715
diff changeset
   843
  using \eqref{suppfun}. Assuming @{term "supp x - as"} is a finite set
Christian Urban <urbanc@in.tum.de>
parents: 1715
diff changeset
   844
  we further obtain
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   845
  %
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   846
  \begin{equation}\label{halftwo}
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   847
  @{thm (concl) supp_abs_subset1(1)[no_vars]}
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   848
  \end{equation}
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   849
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   850
  \noindent
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
   851
  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
   852
  @{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
   853
  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
   854
  Theorem~\ref{suppabs}. 
1703
ac2d0d4ea497 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1702
diff changeset
   855
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
   856
  The method of first considering abstractions of the
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
   857
  form @{term "Abs as x"} etc is motivated by the fact that properties about them
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
   858
  can be conveninetly established at the Isabelle/HOL level.  It would be
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
   859
  difficult to write custom ML-code that derives automatically such properties 
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
   860
  for every term-constructor that binds some atoms. Also the generality of
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
   861
  the definitions for alpha-equivalence will help us in definitions 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
   862
*}
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
   863
1717
a3ef7fba983f Beginning of section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1716
diff changeset
   864
section {* Alpha-Equivalence and Free Variables\label{sec:alpha} *}
1491
f970ca9b5bec paper uses now a heap file - does not compile so long anymore
Christian Urban <urbanc@in.tum.de>
parents: 1485
diff changeset
   865
1520
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
   866
text {*
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   867
  Our choice of syntax for specifications is influenced by the existing
1719
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
   868
  datatype package of Isabelle/HOL \cite{Berghofer99} and by the syntax of the Ott-tool
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   869
  \cite{ott-jfp}. For us a specification of a term-calculus is a collection of (possibly mutual
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
   870
  recursive) type declarations, say @{text "ty"}$^\alpha_1$, \ldots, 
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
   871
  @{text ty}$^\alpha_n$, and an associated collection
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
   872
  of binding functions, say @{text bn}$^\alpha_1$, \ldots, @{text
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
   873
  bn}$^\alpha_m$. The syntax in Nominal Isabelle for such specifications is
1693
3668b389edf3 spell check
Christian Urban <urbanc@in.tum.de>
parents: 1690
diff changeset
   874
  roughly as follows:
1628
ddf409b2da2b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1620
diff changeset
   875
  %
1619
373cd788d327 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1617
diff changeset
   876
  \begin{equation}\label{scheme}
1636
d5b223b9c2bb more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1629
diff changeset
   877
  \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
   878
  type \mbox{declaration part} &
1611
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   879
  $\begin{cases}
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   880
  \mbox{\begin{tabular}{l}
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
   881
  \isacommand{nominal\_datatype} @{text ty}$^\alpha_1 = \ldots$\\
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
   882
  \isacommand{and} @{text ty}$^\alpha_2 = \ldots$\\
1587
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
   883
  $\ldots$\\ 
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
   884
  \isacommand{and} @{text ty}$^\alpha_n = \ldots$\\ 
1611
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   885
  \end{tabular}}
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   886
  \end{cases}$\\
1617
99cee15cb5ff more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1613
diff changeset
   887
  binding \mbox{function part} &
1611
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   888
  $\begin{cases}
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   889
  \mbox{\begin{tabular}{l}
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
   890
  \isacommand{with} @{text bn}$^\alpha_1$ \isacommand{and} \ldots \isacommand{and} @{text bn}$^\alpha_m$\\
1611
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   891
  \isacommand{where}\\
1587
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
   892
  $\ldots$\\
1611
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   893
  \end{tabular}}
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   894
  \end{cases}$\\
1619
373cd788d327 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1617
diff changeset
   895
  \end{tabular}}
373cd788d327 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1617
diff changeset
   896
  \end{equation}
1587
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
   897
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
   898
  \noindent
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
   899
  Every type declaration @{text ty}$^\alpha_{1..n}$ consists of a collection of 
1611
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   900
  term-constructors, each of which comes with a list of labelled 
1620
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
   901
  types that stand for the types of the arguments of the term-constructor.
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
   902
  For example a term-constructor @{text "C\<^sup>\<alpha>"} might have
1611
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   903
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   904
  \begin{center}
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
   905
  @{text "C\<^sup>\<alpha> label\<^isub>1::ty"}$'_1$ @{text "\<dots> label\<^isub>l::ty"}$'_l\;\;$  @{text "binding_clauses"} 
1611
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   906
  \end{center}
1587
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
   907
  
1611
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   908
  \noindent
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
   909
  whereby some of the @{text ty}$'_{1..l}$ (or their components) might be contained
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
   910
  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
   911
  \eqref{scheme}. 
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
   912
  %In this case we will call the corresponding argument a
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
   913
  %\emph{recursive argument} of @{text "C\<^sup>\<alpha>"}. The types of such recursive 
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
   914
  %arguments need to satisfy a  ``positivity''
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
   915
  %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
   916
  %\cite{Berghofer99}.  
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
   917
  The labels
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
   918
  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
   919
  (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
   920
  and their scope in a term-constructor.  They come in three \emph{modes}:
1587
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
   921
1611
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   922
  \begin{center}
1617
99cee15cb5ff more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1613
diff changeset
   923
  \begin{tabular}{l}
99cee15cb5ff more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1613
diff changeset
   924
  \isacommand{bind}\; {\it binders}\; \isacommand{in}\; {\it label}\\
99cee15cb5ff more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1613
diff changeset
   925
  \isacommand{bind\_set}\; {\it binders}\; \isacommand{in}\; {\it label}\\
99cee15cb5ff more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1613
diff changeset
   926
  \isacommand{bind\_res}\; {\it binders}\; \isacommand{in}\; {\it label}\\
99cee15cb5ff more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1613
diff changeset
   927
  \end{tabular}
1611
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   928
  \end{center}
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   929
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   930
  \noindent
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
   931
  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
   932
  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
   933
  cardinality does) and the last is for sets of binders (with vacuous binders
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
   934
  preserving alpha-equivalence). The ``\isacommand{in}-part'' of a binding
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
   935
  clause will be called the \emph{body}; the
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
   936
  ``\isacommand{bind}-part'' will be the \emph{binder}.
1620
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
   937
1719
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
   938
  In addition we distinguish between \emph{shallow} and \emph{deep}
1620
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
   939
  binders.  Shallow binders are of the form \isacommand{bind}\; {\it label}\;
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
   940
  \isacommand{in}\; {\it label'} (similar for the other two modes). The
1620
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
   941
  restriction we impose on shallow binders is that the {\it label} must either
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
   942
  refer to a type that is an atom type or to a type that is a finite set or
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
   943
  list of an atom type. Two examples for the use of shallow binders are the
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   944
  specification of lambda-terms, where a single name is bound, and 
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
   945
  type-schemes, where a finite set of names is bound:
1611
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   946
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   947
  \begin{center}
1612
c8c9b3b7189a tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1611
diff changeset
   948
  \begin{tabular}{@ {}cc@ {}}
c8c9b3b7189a tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1611
diff changeset
   949
  \begin{tabular}{@ {}l@ {\hspace{-1mm}}}
1719
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
   950
  \isacommand{nominal\_datatype} @{text lam} =\\
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
   951
  \hspace{5mm}\phantom{$\mid$}~@{text "Var name"}\\
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
   952
  \hspace{5mm}$\mid$~@{text "App lam lam"}\\
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
   953
  \hspace{5mm}$\mid$~@{text "Lam x::name t::lam"}\\
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
   954
  \hspace{21mm}\isacommand{bind} @{text x} \isacommand{in} @{text t}\\
1611
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   955
  \end{tabular} &
1612
c8c9b3b7189a tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1611
diff changeset
   956
  \begin{tabular}{@ {}l@ {}}
1719
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
   957
  \isacommand{nominal\_datatype}~@{text ty} =\\
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
   958
  \hspace{5mm}\phantom{$\mid$}~@{text "TVar name"}\\
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
   959
  \hspace{5mm}$\mid$~@{text "TFun ty ty"}\\
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
   960
  \isacommand{and}~@{text "tsc = All xs::(name fset) T::ty"}\\
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
   961
  \hspace{24mm}\isacommand{bind\_res} @{text xs} \isacommand{in} @{text T}\\
1611
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   962
  \end{tabular}
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   963
  \end{tabular}
091f373baae9 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1607
diff changeset
   964
  \end{center}
1587
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
   965
1612
c8c9b3b7189a tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1611
diff changeset
   966
  \noindent
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
   967
  Note that in this specification \emph{name} refers to an atom type.
1628
ddf409b2da2b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1620
diff changeset
   968
  If we have shallow binders that ``share'' a body, for instance $t$ in
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
   969
  the following term-constructor
1620
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
   970
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
   971
  \begin{center}
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
   972
  \begin{tabular}{ll}
1719
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
   973
  @{text "Foo x::name y::name t::lam"} &  
1723
1cd509cba23f tuned beginning of section 4
Christian Urban <urbanc@in.tum.de>
parents: 1722
diff changeset
   974
      \isacommand{bind} @{text x} \isacommand{in} @{text t},\;
1cd509cba23f tuned beginning of section 4
Christian Urban <urbanc@in.tum.de>
parents: 1722
diff changeset
   975
      \isacommand{bind} @{text y} \isacommand{in} @{text t}  
1620
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
   976
  \end{tabular}
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
   977
  \end{center}
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
   978
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
   979
  \noindent
1628
ddf409b2da2b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1620
diff changeset
   980
  then we have to make sure the modes of the binders agree. We cannot
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
   981
  have, for instance, in the first binding clause the mode \isacommand{bind} 
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
   982
  and in the second \isacommand{bind\_set}.
1620
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
   983
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
   984
  A \emph{deep} binder uses an auxiliary binding function that ``picks'' out
1636
d5b223b9c2bb more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1629
diff changeset
   985
  the atoms in one argument of the term-constructor, which can be bound in  
1628
ddf409b2da2b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1620
diff changeset
   986
  other arguments and also in the same argument (we will
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
   987
  call such binders \emph{recursive}, see below). 
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   988
  The corresponding binding functions are expected to return either a set of atoms
1620
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
   989
  (for \isacommand{bind\_set} and \isacommand{bind\_res}) or a list of atoms
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
   990
  (for \isacommand{bind}). They can be defined by primitive recursion over the
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
   991
  corresponding type; the equations must be given in the binding function part of
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
   992
  the scheme shown in \eqref{scheme}. For example a term-calculus containing @{text "Let"}s 
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
   993
  with tuple patterns might be specified as:
1617
99cee15cb5ff more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1613
diff changeset
   994
1619
373cd788d327 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1617
diff changeset
   995
  \begin{center}
373cd788d327 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1617
diff changeset
   996
  \begin{tabular}{l}
1719
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
   997
  \isacommand{nominal\_datatype} @{text trm} =\\
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
   998
  \hspace{5mm}\phantom{$\mid$}~@{term "Var name"}\\
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
   999
  \hspace{5mm}$\mid$~@{term "App trm trm"}\\
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1000
  \hspace{5mm}$\mid$~@{text "Lam x::name t::trm"} 
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1001
     \;\;\isacommand{bind} @{text x} \isacommand{in} @{text t}\\
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1002
  \hspace{5mm}$\mid$~@{text "Let p::pat trm t::trm"} 
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1003
     \;\;\isacommand{bind} @{text "bn(p)"} \isacommand{in} @{text t}\\
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1004
  \isacommand{and} @{text pat} =\\
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1005
  \hspace{5mm}\phantom{$\mid$}~@{text PNil}\\
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1006
  \hspace{5mm}$\mid$~@{text "PVar name"}\\
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1007
  \hspace{5mm}$\mid$~@{text "PTup pat pat"}\\ 
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1008
  \isacommand{with}~@{text "bn::pat \<Rightarrow> atom list"}\\
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1009
  \isacommand{where}~@{text "bn(PNil) = []"}\\
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1010
  \hspace{5mm}$\mid$~@{text "bn(PVar x) = [atom x]"}\\
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1011
  \hspace{5mm}$\mid$~@{text "bn(PTup p\<^isub>1 p\<^isub>2) = bn(p\<^isub>1) @ bn(p\<^isub>2)"}\\ 
1619
373cd788d327 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1617
diff changeset
  1012
  \end{tabular}
373cd788d327 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1617
diff changeset
  1013
  \end{center}
1617
99cee15cb5ff more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1613
diff changeset
  1014
  
1619
373cd788d327 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1617
diff changeset
  1015
  \noindent
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1016
  In this specification the function @{text "bn"} determines which atoms of @{text  p} are
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1017
  bound in the argument @{text "t"}. Note that in the second-last clause the function @{text "atom"}
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1018
  coerces a name into the generic atom type of Nominal Isabelle \cite{HuffmanUrban10}. This allows
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1019
  us to treat binders of different atom type uniformly. 
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1020
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1021
  As will shortly become clear, we cannot return an atom in a binding function
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1022
  that is also bound in the corresponding term-constructor. That means in the
1723
1cd509cba23f tuned beginning of section 4
Christian Urban <urbanc@in.tum.de>
parents: 1722
diff changeset
  1023
  example above that the term-constructors @{text PVar} and @{text PTup} must not have a
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1024
  binding clause.  In the version of Nominal Isabelle described here, we also adopted
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1025
  the restriction from the Ott-tool that binding functions can only return:
1723
1cd509cba23f tuned beginning of section 4
Christian Urban <urbanc@in.tum.de>
parents: 1722
diff changeset
  1026
  the empty set or empty list (as in case @{text PNil}), a singleton set or singleton
1cd509cba23f tuned beginning of section 4
Christian Urban <urbanc@in.tum.de>
parents: 1722
diff changeset
  1027
  list containing an atom (case @{text PVar}), or unions of atom sets or appended atom
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1028
  lists (case @{text PTup}). This restriction will simplify definitions and 
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1029
  proofs later on.
1719
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1030
  
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1031
  The most drastic restriction we have to impose on deep binders is that 
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1032
  we cannot have ``overlapping'' deep binders. Consider for example the 
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1033
  term-constructors:
1617
99cee15cb5ff more tuning in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1613
diff changeset
  1034
1620
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
  1035
  \begin{center}
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
  1036
  \begin{tabular}{ll}
1719
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1037
  @{text "Foo p::pat q::pat t::trm"} & 
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1038
     \isacommand{bind} @{text "bn(p)"} \isacommand{in} @{text t},\;
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1039
     \isacommand{bind} @{text "bn(q)"} \isacommand{in} @{text t}\\
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1040
  @{text "Foo' x::name p::pat t::trm"} & 
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1041
     \isacommand{bind} @{text x} \isacommand{in} @{text t},\;
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1042
     \isacommand{bind} @{text "bn(p)"} \isacommand{in} @{text t} 
1620
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
  1043
  
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
  1044
  \end{tabular}
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
  1045
  \end{center}
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
  1046
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
  1047
  \noindent
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1048
  In the first case we might bind all atoms from the pattern @{text p} in @{text t}
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1049
  and also all atoms from @{text q} in @{text t}. As a result we have no way
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1050
  to determine whether the binder came from the binding function @{text
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1051
  "bn(p)"} or @{text "bn(q)"}. Similarly in the second case. The reason why
1693
3668b389edf3 spell check
Christian Urban <urbanc@in.tum.de>
parents: 1690
diff changeset
  1052
  we must exclude such specifications is that they cannot be represent by
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1053
  the general binders described in Section \ref{sec:binders}. However
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1054
  the following two term-constructors are allowed
1620
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
  1055
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
  1056
  \begin{center}
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
  1057
  \begin{tabular}{ll}
1719
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1058
  @{text "Bar p::pat t::trm s::trm"} & 
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1059
     \isacommand{bind} @{text "bn(p)"} \isacommand{in} @{text t},\;
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1060
     \isacommand{bind} @{text "bn(p)"} \isacommand{in} @{text s}\\
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1061
  @{text "Bar' p::pat t::trm"} &  
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1062
     \isacommand{bind} @{text "bn(p)"} \isacommand{in} @{text p},\;
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1063
     \isacommand{bind} @{text "bn(p)"} \isacommand{in} @{text t}\\
1620
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
  1064
  \end{tabular}
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
  1065
  \end{center}
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
  1066
17a2c6fddc0c tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1619
diff changeset
  1067
  \noindent
1628
ddf409b2da2b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1620
diff changeset
  1068
  since there is no overlap of binders.
1619
373cd788d327 more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1617
diff changeset
  1069
  
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1070
  Note that in the last example we wrote {\it\isacommand{bind}\;bn(p)\;\isacommand{in}\;p}.
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1071
  Whenever such a binding clause is present, we will call the corresponding binder \emph{recursive}.
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1072
  To see the purpose of such recursive binders, compare ``plain'' @{text "Let"}s and @{text "Let_rec"}s
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1073
  in the following specification:
1725
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1074
  %
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1075
  \begin{equation}\label{letrecs}
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1076
  \mbox{%
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1077
  \begin{tabular}{@ {}l@ {}}
1725
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1078
  \isacommand{nominal\_datatype}~@{text "trm ="}\\
1636
d5b223b9c2bb more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1629
diff changeset
  1079
  \hspace{5mm}\phantom{$\mid$}\ldots\\
1725
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1080
  \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
  1081
     \;\;\isacommand{bind} @{text "bn(as)"} \isacommand{in} @{text t}\\
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1082
  \hspace{5mm}$\mid$~@{text "Let_rec as::assn t::trm"} 
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1083
     \;\;\isacommand{bind} @{text "bn(as)"} \isacommand{in} @{text t},
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1084
         \isacommand{bind} @{text "bn(as)"} \isacommand{in} @{text as}\\
1636
d5b223b9c2bb more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1629
diff changeset
  1085
  \isacommand{and} {\it assn} =\\
1725
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1086
  \hspace{5mm}\phantom{$\mid$}~@{text "ANil"}\\
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1087
  \hspace{5mm}$\mid$~@{text "ACons name trm assn"}\\
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1088
  \isacommand{with} @{text "bn::assn \<Rightarrow> atom list"}\\
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1089
  \isacommand{where}~@{text "bn(ANil) = []"}\\
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1090
  \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
  1091
  \end{tabular}}
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1092
  \end{equation}
1636
d5b223b9c2bb more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1629
diff changeset
  1093
d5b223b9c2bb more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1629
diff changeset
  1094
  \noindent
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1095
  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
  1096
  "bn(as)"} in the term @{text t}, but with @{text "Let_rec"} we also want to bind the atoms
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1097
  inside the assignment. This difference has consequences for the free-variable 
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1098
  function and alpha-equivalence relation, which we are going to describe in the 
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1099
  rest of this section.
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1100
 
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1101
  Having dealt with all syntax matters, the problem now is how we can turn
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1102
  specifications into actual type definitions in Isabelle/HOL and then
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1103
  establish a reasoning infrastructure for them. Because of the problem
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1104
  Pottier and Cheney pointed out, we cannot in general re-arrange arguments of
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1105
  term-constructors so that binders and their bodies are next to each other, and
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1106
  then use the type constructors @{text "abs_set"}, @{text "abs_res"} and
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1107
  @{text "abs_list"} from Section \ref{sec:binders}. Therefore we will first
1719
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1108
  extract datatype definitions from the specification and then define 
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1109
  expicitly an alpha-equivalence relation over them.
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1110
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1111
1724
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1112
  The datatype definition can be obtained by stripping off the 
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1113
  binding clauses and the labels on the types. We also have to invent
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1114
  new names for the types @{text "ty\<^sup>\<alpha>"} and term-constructors @{text "C\<^sup>\<alpha>"}
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1115
  given by user. In our implementation we just use the affix ``@{text "_raw"}''.
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1116
  But for the purpose of this paper, we just use the superscript @{text "_\<^sup>\<alpha>"} to indicate 
1724
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1117
  that a notion is defined over alpha-equivalence classes and leave it out 
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1118
  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
  1119
  we have
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1120
  
1636
d5b223b9c2bb more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1629
diff changeset
  1121
  \begin{center}
1723
1cd509cba23f tuned beginning of section 4
Christian Urban <urbanc@in.tum.de>
parents: 1722
diff changeset
  1122
  @{text "ty\<^sup>\<alpha> \<mapsto> ty"} \hspace{2mm}and\hspace{2mm} @{text "C\<^sup>\<alpha> \<mapsto> C"}
1636
d5b223b9c2bb more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1629
diff changeset
  1123
  \end{center}
d5b223b9c2bb more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1629
diff changeset
  1124
  
d5b223b9c2bb more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1629
diff changeset
  1125
  \noindent
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1126
  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
  1127
  @{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
  1128
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1129
  The resulting datatype definition is legal in Isabelle/HOL provided the datatypes are 
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1130
  non-empty and the types in the constructors only occur in positive 
1724
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1131
  position (see \cite{Berghofer99} for an indepth description of the datatype package
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1132
  in Isabelle/HOL). We then define the user-specified binding 
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1133
  functions, called @{term "bn"}, by primitive recursion over the corresponding 
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1134
  raw datatype. We can also easily define permutation operations by 
1724
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1135
  primitive recursion so that for each term constructor @{text "C ty\<^isub>1 \<dots> ty\<^isub>n"} 
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1136
  we have that
1587
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
  1137
1628
ddf409b2da2b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1620
diff changeset
  1138
  \begin{center}
1724
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1139
  @{text "p \<bullet> (C x\<^isub>1 \<dots> x\<^isub>n) = C (p \<bullet> x\<^isub>1) \<dots> (p \<bullet> x\<^isub>n)"}
1628
ddf409b2da2b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1620
diff changeset
  1140
  \end{center}
ddf409b2da2b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1620
diff changeset
  1141
  
1719
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1142
  % TODO: we did not define permutation types
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1143
  %\noindent
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1144
  %From this definition we can easily show that the raw datatypes are 
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1145
  %all permutation types (Def ??) by a simple structural induction over
0c3c66f5c0e7 removed "raw" distinction
Christian Urban <urbanc@in.tum.de>
parents: 1717
diff changeset
  1146
  %the @{text "ty"}s.
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1147
1693
3668b389edf3 spell check
Christian Urban <urbanc@in.tum.de>
parents: 1690
diff changeset
  1148
  The first non-trivial step we have to perform is the generation free-variable 
1723
1cd509cba23f tuned beginning of section 4
Christian Urban <urbanc@in.tum.de>
parents: 1722
diff changeset
  1149
  functions from the specifications. Given the raw types @{text "ty\<^isub>1 \<dots> ty\<^isub>n"}
1cd509cba23f tuned beginning of section 4
Christian Urban <urbanc@in.tum.de>
parents: 1722
diff changeset
  1150
  we need to define free-variable functions
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1151
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1152
  \begin{center}
1723
1cd509cba23f tuned beginning of section 4
Christian Urban <urbanc@in.tum.de>
parents: 1722
diff changeset
  1153
  @{text "fv_ty\<^isub>1 :: ty\<^isub>1 \<Rightarrow> atom set    \<dots>    fv_ty\<^isub>n :: ty\<^isub>n \<Rightarrow> atom set"}
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1154
  \end{center}
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1155
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1156
  \noindent
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1157
  We define them together with auxiliary free-variable functions for
1724
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1158
  the binding functions. Given binding functions 
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1159
  @{text "bn\<^isub>1 \<dots> bn\<^isub>m"} we need to define
1724
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1160
  %
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1161
  \begin{center}
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1162
  @{text "fv_bn\<^isub>1 :: ty\<^isub>1 \<Rightarrow> atom set  \<dots>  fv_bn\<^isub>m :: ty\<^isub>m \<Rightarrow> atom set"}
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1163
  \end{center}
1636
d5b223b9c2bb more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1629
diff changeset
  1164
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1165
  \noindent
1724
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1166
  The reason for this setup is that in a deep binder not all atoms have to be
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1167
  bound, as we shall see in an example below. We need therefore a function
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1168
  that calculates those unbound atoms. 
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1169
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1170
  While the idea behind these
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1171
  free-variable functions is clear (they just collect all atoms that are not bound),
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1172
  because of our rather complicated binding mechanisms their definitions are
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1173
  somewhat involved.
1723
1cd509cba23f tuned beginning of section 4
Christian Urban <urbanc@in.tum.de>
parents: 1722
diff changeset
  1174
  Given a term-constructor @{text "C"} of type @{text ty} with argument types
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1175
  \mbox{@{text "ty\<^isub>1 \<dots> ty\<^isub>n"}}, the function
1723
1cd509cba23f tuned beginning of section 4
Christian Urban <urbanc@in.tum.de>
parents: 1722
diff changeset
  1176
  @{text "fv_ty (C x\<^isub>1 \<dots> x\<^isub>n)"} will be the union of the values
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1177
  calculated below for each argument. 
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1178
  First we deal with the case that @{text "x\<^isub>i"} is a binder. From the binding clauses, 
1724
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1179
  we can determine whether the argument is a shallow or deep
1723
1cd509cba23f tuned beginning of section 4
Christian Urban <urbanc@in.tum.de>
parents: 1722
diff changeset
  1180
  binder, and in the latter case also whether it is a recursive or
1724
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1181
  non-recursive binder. 
1628
ddf409b2da2b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1620
diff changeset
  1182
ddf409b2da2b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1620
diff changeset
  1183
  \begin{center}
1724
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1184
  \begin{tabular}{c@ {\hspace{2mm}}p{7cm}}
1636
d5b223b9c2bb more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1629
diff changeset
  1185
  $\bullet$ & @{term "{}"} provided @{text "x\<^isub>i"} is a shallow binder\\
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1186
  $\bullet$ & @{text "fv_bn x\<^isub>i"} provided @{text "x\<^isub>i"} is a deep
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1187
      non-recursive binder with the auxiliary binding function @{text "bn"}\\
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1188
  $\bullet$ & @{text "fv_ty\<^isub>i x\<^isub>i - bn x\<^isub>i"} provided @{text "x\<^isub>i"} is
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1189
      a deep recursive binder with the auxiliary binding function @{text "bn"}
1628
ddf409b2da2b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1620
diff changeset
  1190
  \end{tabular}
ddf409b2da2b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1620
diff changeset
  1191
  \end{center}
ddf409b2da2b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1620
diff changeset
  1192
1636
d5b223b9c2bb more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1629
diff changeset
  1193
  \noindent
1724
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1194
  The first clause states that shallow binders do not contribute to the
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1195
  free variables; in the second clause, we have to collect all
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1196
  variables that are left unbound by the binding function @{text "bn"}---this
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1197
  is done with function @{text "fv_bn"}; in the third clause, since the 
1724
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1198
  binder is recursive, we need to bind all variables specified by 
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1199
  @{text "bn"}---therefore we subtract @{text "bn x\<^isub>i"} from the free
1724
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1200
  variables of @{text "x\<^isub>i"}.
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1201
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1202
  In case the argument is \emph{not} a binder, we need to consider 
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1203
  whether the @{text "x\<^isub>i"} is the body of one or more binding clauses. 
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1204
  In this case we first calculate the set @{text "bnds"} as follows: 
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1205
  either the corresponding binders are all shallow or there is a single deep binder.
1724
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1206
  In the former case we take @{text bnds} to be the union of all shallow 
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1207
  binders; in the latter case, we just take the set of atoms specified by the 
1746
ec0afa89aab3 General paper minor fixes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1743
diff changeset
  1208
  corresponding binding function. The value for @{text "x\<^isub>i"} is then given by:
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1209
  %
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1210
  \begin{equation}\label{deepbody}
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1211
  \mbox{%
1724
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1212
  \begin{tabular}{c@ {\hspace{2mm}}p{7cm}}
1636
d5b223b9c2bb more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1629
diff changeset
  1213
  $\bullet$ & @{text "{atom x\<^isub>i} - bnds"} provided @{term "x\<^isub>i"} is an atom\\
d5b223b9c2bb more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1629
diff changeset
  1214
  $\bullet$ & @{text "(atoms x\<^isub>i) - bnds"} provided @{term "x\<^isub>i"} is a set of atoms\\
1657
Christian Urban <urbanc@in.tum.de>
parents: 1637
diff changeset
  1215
  $\bullet$ & @{text "(atoms (set x\<^isub>i)) - bnds"} provided @{term "x\<^isub>i"} is a list of atoms\\
1724
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1216
  $\bullet$ & @{text "(fv_ty\<^isub>i x\<^isub>i) - bnds"} provided @{term "ty\<^isub>i"} is one of the raw datatypes
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1217
     corresponding to the types specified by the user\\
1715
3d6df74fc934 Avoid mentioning other nominal datatypes as it makes things too complicated.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1714
diff changeset
  1218
%  $\bullet$ & @{text "(fv\<^isup>\<alpha> x\<^isub>i) - bnds"} provided @{term "x\<^isub>i"} is a defined nominal datatype
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1219
%     with a free-variable function @{text "fv\<^isup>\<alpha>"}\\
1709
ccd2ab0cebf3 clean fv_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1708
diff changeset
  1220
  $\bullet$ & @{term "{}"} otherwise
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1221
  \end{tabular}}
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1222
  \end{equation}
1628
ddf409b2da2b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1620
diff changeset
  1223
1723
1cd509cba23f tuned beginning of section 4
Christian Urban <urbanc@in.tum.de>
parents: 1722
diff changeset
  1224
  \noindent 
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1225
  Like the coercion function @{text atom} used earlier, @{text "atoms"} coerces 
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1226
  the set of atoms to a set of the generic atom type.
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1227
  It is defined as @{text "atoms as \<equiv> {atom a | a \<in> as}"}.
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1228
1724
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1229
  The last case we need to consider is when @{text "x\<^isub>i"} is neither
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1230
  a binder nor a body of an abstraction. In this case it is defined 
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1231
  as in \eqref{deepbody}, except that we do not need to subtract the 
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1232
  set @{text bnds}.
1724
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1233
  
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1234
  Next, we need to define a free-variable function @{text "fv_bn\<^isub>j"} for 
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1235
  each binding function @{text "bn\<^isub>j"}. The idea behind these
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1236
  functions is to compute the set of free atoms that are not bound by 
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1237
  @{text "bn\<^isub>j"}. Because of the restrictions we imposed on the 
1724
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1238
  form of binding functions, this can be done automatically by recursively 
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1239
  building up the the set of free variables from the arguments that are 
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1240
  not bound. Let us assume one clause of a binding function is 
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1241
  @{text "bn\<^isub>j (C x\<^isub>1 \<dots> x\<^isub>n) = rhs"}, then @{text "fv_bn\<^isub>j (C x\<^isub>1 \<dots> x\<^isub>n)"} is the 
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1242
  union of the values calculated for @{text "x\<^isub>i"} as follows:
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1243
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1244
  \begin{center}
1724
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1245
  \begin{tabular}{c@ {\hspace{2mm}}p{7cm}}
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1246
  \multicolumn{2}{l}{@{text "x\<^isub>i"} occurs in @{text "rhs"}:}\\ 
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1247
  $\bullet$ & @{term "{}"} provided @{term "x\<^isub>i"} is a single atom,
1709
ccd2ab0cebf3 clean fv_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1708
diff changeset
  1248
     atom list or atom set\\
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1249
  $\bullet$ & @{text "fv_bn x\<^isub>i"} in case @{text "rhs"} contains the 
1735
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1250
  recursive call @{text "bn x\<^isub>i"}\medskip\\
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1251
  \end{tabular}
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1252
  \end{center}
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1253
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1254
  \begin{center}
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1255
  \begin{tabular}{c@ {\hspace{2mm}}p{7cm}}
1735
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1256
  \multicolumn{2}{l}{@{text "x\<^isub>i"} does not occur in @{text "rhs"}:}\\
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1257
  $\bullet$ & @{text "atom x\<^isub>i"} provided @{term "x\<^isub>i"} is an atom\\
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1258
  $\bullet$ & @{text "atoms x\<^isub>i"} provided @{term "x\<^isub>i"} is a set of atoms\\
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1259
  $\bullet$ & @{term "atoms (set x\<^isub>i)"} provided @{term "x\<^isub>i"} is a list of atoms\\
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1260
  $\bullet$ & @{text "fv_ty\<^isub>i x\<^isub>i"} provided @{term "ty\<^isub>i"} is the type of @{text "x\<^isub>i"} and one of the raw
1724
8c788ad71752 cleaned up the section about fv's
Christian Urban <urbanc@in.tum.de>
parents: 1723
diff changeset
  1261
     types corresponding to the types specified by the user\\
1730
cfd3a7368543 polished and removed tys from bn-functions.
Christian Urban <urbanc@in.tum.de>
parents: 1728
diff changeset
  1262
%  $\bullet$ & @{text "fv_ty\<^isup>\<alpha> x\<^isub>i - bnds"} provided @{term "x\<^isub>i"}  is not in @{text "rhs"}
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1263
%     and is an existing nominal datatype with the free-variable function @{text "fv\<^isup>\<alpha>"}\\
1706
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1705
diff changeset
  1264
  $\bullet$ & @{term "{}"} otherwise
1637
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1265
  \end{tabular}
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1266
  \end{center}
a5501c9fad9b more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1636
diff changeset
  1267
1725
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1268
  \noindent
1733
6988077666dc abbreviations for \<otimes> and \<oplus>
Christian Urban <urbanc@in.tum.de>
parents: 1732
diff changeset
  1269
  To see how these definitions work in practise, let us reconsider the term-constructors 
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1270
  @{text "Let"} and @{text "Let_rec"} from the example shown in \eqref{letrecs}. 
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1271
  For this specification we need to define three free-variable functions, namely
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1272
  @{text "fv\<^bsub>trm\<^esub>"}, @{text "fv\<^bsub>assn\<^esub>"} and @{text "fv\<^bsub>bn\<^esub>"}. They are as follows:
1725
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1273
  %
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1274
  \begin{center}
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1275
  \begin{tabular}{@ {}l@ {\hspace{1mm}}c@ {\hspace{1mm}}l@ {}}
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1276
  @{text "fv\<^bsub>trm\<^esub> (Let as t)"} & @{text "="} & @{text "fv\<^bsub>bn\<^esub> as \<union> (fv\<^bsub>trm\<^esub> t - set (bn as))"}\\
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1277
  @{text "fv\<^bsub>trm\<^esub> (Let_rec as t)"} & @{text "="} &\\
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1278
  \multicolumn{3}{r}{@{text "(fv\<^bsub>assn\<^esub> as - set (bn as)) \<union> (fv\<^bsub>trm\<^esub> t - set (bn as))"}}\\[1mm]
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1279
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1280
  @{text "fv\<^bsub>assn\<^esub> (ANil)"} & @{text "="} & @{text "[]"}\\
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1281
  @{text "fv\<^bsub>assn\<^esub> (ACons a t as)"} & @{text "="} & @{text "{atom a} \<union> (fv\<^bsub>trm\<^esub> t) \<union> (fv\<^bsub>assn\<^esub> as)"}\\[1mm]
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1282
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1283
  @{text "fv\<^bsub>bn\<^esub> (ANil)"} & @{text "="} & @{text "[]"}\\
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1284
  @{text "fv\<^bsub>bn\<^esub> (ACons a t as)"} & @{text "="} & @{text "(fv\<^bsub>trm\<^esub> t) \<union> (fv\<^bsub>bn\<^esub> as)"}
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1285
  \end{tabular}
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1286
  \end{center}
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1287
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1288
  \noindent
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1289
  Since there are no binding clauses for the term-constructors @{text ANil}
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1290
  and @{text "ACons"}, the corresponding free-variable function @{text
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1291
  "fv\<^bsub>assn\<^esub>"} returns all atoms occuring in an assignment. The
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1292
  binding only takes place in @{text Let} and @{text "Let_rec"}. In the @{text
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1293
  "Let"}-clause we want to bind all atoms given by @{text "set (bn as)"} in
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1294
  @{text t}. Therefore we have to subtract @{text "set (bn as)"} from @{text
1725
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1295
  "fv\<^bsub>trm\<^esub> t"}. However, we also need to add all atoms that are
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1296
  free in @{text "as"}. This is what the purpose of the function @{text
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1297
  "fv\<^bsub>bn\<^esub>"} is.  In contrast, in @{text "Let_rec"} we have a
1746
ec0afa89aab3 General paper minor fixes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1743
diff changeset
  1298
  recursive binder where we want to also bind all occurrences of the atoms
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1299
  in @{text "set (bn as)"} inside @{text "as"}. Therefore we have to subtract @{text
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1300
  "set (bn as)"} from @{text "fv\<^bsub>assn\<^esub> as"}, as well as from
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1301
  @{text "fv\<^bsub>trm\<^esub> t"}. An interesting point in this example is
1725
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1302
  that an assignment ``alone'' does not have any bound variables. Only in the
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1303
  context of a @{text Let} or @{text "Let_rec"} will some atoms become bound.  
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1304
  This is a phenomenon 
1733
6988077666dc abbreviations for \<otimes> and \<oplus>
Christian Urban <urbanc@in.tum.de>
parents: 1732
diff changeset
  1305
  that has also been pointed out in \cite{ott-jfp}. We can also see that
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1306
  given a @{text "bn"}-function for a type @{text "ty"}, we have that
1733
6988077666dc abbreviations for \<otimes> and \<oplus>
Christian Urban <urbanc@in.tum.de>
parents: 1732
diff changeset
  1307
  %
6988077666dc abbreviations for \<otimes> and \<oplus>
Christian Urban <urbanc@in.tum.de>
parents: 1732
diff changeset
  1308
  \begin{equation}\label{bnprop}
6988077666dc abbreviations for \<otimes> and \<oplus>
Christian Urban <urbanc@in.tum.de>
parents: 1732
diff changeset
  1309
  @{text "fv_ty x = bn x \<union> fv_bn x"}.
6988077666dc abbreviations for \<otimes> and \<oplus>
Christian Urban <urbanc@in.tum.de>
parents: 1732
diff changeset
  1310
  \end{equation}
1725
1801cc460fc9 polished and added an example for fvars
Christian Urban <urbanc@in.tum.de>
parents: 1724
diff changeset
  1311
1733
6988077666dc abbreviations for \<otimes> and \<oplus>
Christian Urban <urbanc@in.tum.de>
parents: 1732
diff changeset
  1312
  Next we define alpha-equivalence for the types @{text "ty\<^isub>1, \<dots>, ty\<^isub>n"}. We call them
6988077666dc abbreviations for \<otimes> and \<oplus>
Christian Urban <urbanc@in.tum.de>
parents: 1732
diff changeset
  1313
  @{text "\<approx>ty\<^isub>1, \<dots>, \<approx>ty\<^isub>n"}. Like with the free-variable functions, 
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1314
  we also need to  define auxiliary alpha-equivalence relations for the binding functions. 
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1315
  Say we have @{text "bn\<^isub>1, \<dots>, bn\<^isub>m"}, then we also define @{text "\<approx>bn\<^isub>1, \<dots>, \<approx>b\<^isub>m"}.
1733
6988077666dc abbreviations for \<otimes> and \<oplus>
Christian Urban <urbanc@in.tum.de>
parents: 1732
diff changeset
  1316
  To simplify our definitions we will use the following abbreviations for 
6988077666dc abbreviations for \<otimes> and \<oplus>
Christian Urban <urbanc@in.tum.de>
parents: 1732
diff changeset
  1317
  relations and free-variable acting on products.
6988077666dc abbreviations for \<otimes> and \<oplus>
Christian Urban <urbanc@in.tum.de>
parents: 1732
diff changeset
  1318
  %
6988077666dc abbreviations for \<otimes> and \<oplus>
Christian Urban <urbanc@in.tum.de>
parents: 1732
diff changeset
  1319
  \begin{center}
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1320
  \begin{tabular}{r@ {\hspace{2mm}}c@ {\hspace{2mm}}l}
1735
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1321
  @{text "(x\<^isub>1, y\<^isub>1) (R\<^isub>1 \<otimes> R\<^isub>2) (x\<^isub>2, y\<^isub>2)"} & @{text "\<equiv>"} & @{text "x\<^isub>1 R\<^isub>1 y\<^isub>1 \<and> x\<^isub>2 R\<^isub>2 y\<^isub>2"}\\
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1322
  @{text "(fv\<^isub>1 \<oplus> fv\<^isub>2) (x, y)"} & @{text "\<equiv>"} & @{text "fv\<^isub>1 x \<union> fv\<^isub>2 y"}\\
1733
6988077666dc abbreviations for \<otimes> and \<oplus>
Christian Urban <urbanc@in.tum.de>
parents: 1732
diff changeset
  1323
  \end{tabular}
6988077666dc abbreviations for \<otimes> and \<oplus>
Christian Urban <urbanc@in.tum.de>
parents: 1732
diff changeset
  1324
  \end{center}
6988077666dc abbreviations for \<otimes> and \<oplus>
Christian Urban <urbanc@in.tum.de>
parents: 1732
diff changeset
  1325
1727
fd2913415a73 started to polish alpha-equivalence section, but needs more work
Christian Urban <urbanc@in.tum.de>
parents: 1726
diff changeset
  1326
1735
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1327
  The relations for alpha-equivalence are inductively defined predicates, whose clauses have
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1328
  conclusions of the form  
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1329
  %
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1330
  \begin{center}
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1331
  @{text "C x\<^isub>1 \<dots> x\<^isub>n  \<approx>ty  C y\<^isub>1 \<dots> y\<^isub>n"} 
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1332
  \end{center}
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1333
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1334
  \noindent
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1335
  For what follows, let us assume 
1735
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1336
  @{text C} is of type @{text ty} and its arguments are given by @{text "C ty\<^isub>1 \<dots> ty\<^isub>n"}).
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1337
  The task now is to specify what the premises of these clauses are. For this we
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1338
  consider the pairs \mbox{@{text "(x\<^isub>i, y\<^isub>i)"}}, but instead of considering them in turn, it will 
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1339
  be easier to analyse these pairs according to  ``clusters'' of the binding clauses. 
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1340
  Therefore we distinguish the following cases:
1735
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1341
*}
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1342
(*<*)
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1343
consts alpha_ty ::'a
1739
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1344
consts alpha_trm ::'a
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1345
consts fv_trm :: 'a
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1346
consts alpha_trm2 ::'a
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1347
consts fv_trm2 :: 'a
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1348
notation (latex output) 
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1349
  alpha_ty ("\<approx>ty") and
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1350
  alpha_trm ("\<approx>\<^bsub>trm\<^esub>") and
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1351
  fv_trm ("fv\<^bsub>trm\<^esub>") and
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1352
  alpha_trm2 ("\<approx>\<^bsub>assn\<^esub> \<otimes> \<approx>\<^bsub>trm\<^esub>") and
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1353
  fv_trm2 ("fv\<^bsub>assn\<^esub> \<oplus> fv\<^bsub>trm\<^esub>") 
1735
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1354
(*>*)
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1355
text {*
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1356
  \begin{itemize}
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1357
  \item The @{text "(x\<^isub>i, y\<^isub>i)"} are bodies of shallow binders with type @{text "ty"}. We assume the 
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1358
  \mbox{@{text "(u\<^isub>1, v\<^isub>1),\<dots>,(u\<^isub>m, v\<^isub>m)"}} are the corresponding binders. For the binding mode
1735
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1359
  \isacommand{bind\_set} we generate the premise
1705
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1704
diff changeset
  1360
  \begin{center}
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1361
   @{term "\<exists>p. (u\<^isub>1 \<union> \<xi> \<union> u\<^isub>m, x\<^isub>i) \<approx>gen alpha_ty fv_ty p (v\<^isub>1 \<union> \<xi> \<union> v\<^isub>m, y\<^isub>i)"}
1705
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1704
diff changeset
  1362
  \end{center}
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1704
diff changeset
  1363
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1364
  For the binding mode \isacommand{bind}, we use $\approx_{\textit{list}}$, and for
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1365
  binding mode \isacommand{bind\_res} we use $\approx_{\textit{res}}$ instead. 
1735
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1366
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1367
  \item The @{text "(x\<^isub>i, y\<^isub>i)"} are deep non-recursive binders with type @{text "ty"}
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1368
  and @{text bn} being the auxiliary binding function. We assume 
1735
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1369
  @{text "(u\<^isub>1, v\<^isub>1),\<dots>,(u\<^isub>m, v\<^isub>m)"} are the corresponding bodies with types @{text "ty\<^isub>1,\<dots>, ty\<^isub>m"}. 
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1370
  For the binding mode \isacommand{bind\_set} we generate two premises
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1371
  %
1705
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1704
diff changeset
  1372
  \begin{center}
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1373
   @{text "x\<^isub>i \<approx>bn y\<^isub>i"}\hfill
1735
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1374
   @{term "\<exists>p. (bn x\<^isub>i, (u\<^isub>1,\<xi>,u\<^isub>m)) \<approx>gen R fv p (bn y\<^isub>i, (v\<^isub>1,\<xi>,v\<^isub>m))"}
1705
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1704
diff changeset
  1375
  \end{center}
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1704
diff changeset
  1376
1735
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1377
  \noindent
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1378
  where @{text R} is @{text "\<approx>ty\<^isub>1 \<otimes> ... \<otimes> \<approx>ty\<^isub>m"} and @{text fv} is
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1379
  @{text "fv_ty\<^isub>1 \<oplus> ... \<oplus> fv_ty\<^isub>m"}. Similarly for the other binding modes.
1735
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1380
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1381
  \item The @{text "(x\<^isub>i, y\<^isub>i)"} are deep recursive binders with type @{text "ty"}
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1382
  and with @{text bn} being the auxiliary binding function. We assume 
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1383
  @{text "(u\<^isub>1, v\<^isub>1),\<dots>,(u\<^isub>m, v\<^isub>m)"} are the corresponding bodies with types @{text "ty\<^isub>1,\<dots>, ty\<^isub>m"}. 
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1384
  For the binding mode \isacommand{bind\_set} we generate the premise
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1385
  %
1735
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1386
  \begin{center}
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1387
  @{term "\<exists>p. (bn x\<^isub>i, (x\<^isub>i, u\<^isub>1,\<xi>,u\<^isub>m)) \<approx>gen R fv p (bn y\<^isub>i, (y\<^isub>i, v\<^isub>1,\<xi>,v\<^isub>m))"}
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1388
  \end{center}
1706
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1705
diff changeset
  1389
1735
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1390
  \noindent
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1391
  where @{text R} is @{text "\<approx>ty \<otimes> \<approx>ty\<^isub>1 \<otimes> ... \<otimes> \<approx>ty\<^isub>m"} and @{text fv} is
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1392
  @{text "fv_ty \<oplus> fv_ty\<^isub>1 \<oplus> ... \<oplus> fv_ty\<^isub>m"}. Similarly for the other modes.
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1393
  \end{itemize}
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1394
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1395
  \noindent
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1396
  From these definition it is clear why we can only support one binding mode per binder
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1397
  and body, as we cannot mix the relations $\approx_{\textit{set}}$, $\approx_{\textit{list}}$
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1398
  and $\approx_{\textit{res}}$. It is also clear why we had to impose the restriction
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1399
  of excluding overlapping binders, as these would need to be translated into separate
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1400
  abstractions.
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1401
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1402
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1403
  The only cases that are not covered by the rules above are the cases where @{text "(x\<^isub>i, y\<^isub>i)"} is
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1404
  neither a binder nor a body in a binding clause. Then we just generate @{text "x\<^isub>i \<approx>ty y\<^isub>i"}  provided
1735
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1405
  the type of @{text "x\<^isub>i"} and @{text "y\<^isub>i"} is @{text ty} and the arguments are 
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1406
  recursive arguments of the term-constructor. If they are non-recursive arguments,
1737
8b6a285ad480 polished everything up to TODO
Christian Urban <urbanc@in.tum.de>
parents: 1736
diff changeset
  1407
  then we generate just @{text "x\<^isub>i = y\<^isub>i"}.
1735
8f9e2b02470a added alpha-definition for ~~ty
Christian Urban <urbanc@in.tum.de>
parents: 1733
diff changeset
  1408
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1409
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1410
  The definition of the alpha-equivalence relations @{text "\<approx>bn"} for binding functions 
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1411
  are similar. We again have conclusions of the form \mbox{@{text "C x\<^isub>1 \<dots> x\<^isub>n \<approx>bn C y\<^isub>1 \<dots> y\<^isub>n"}}. We
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1412
  need to generate premises for each pair @{text "(x\<^isub>i, y\<^isub>i)"} depending on whether @{text "x\<^isub>i"} 
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1413
  occurs in @{text "rhs"} of  the clause @{text "bn (C x\<^isub>1 \<dots> x\<^isub>n) = rhs"}:
1705
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1704
diff changeset
  1414
1708
62b87efcef29 alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1707
diff changeset
  1415
  \begin{center}
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1416
  \begin{tabular}{c@ {\hspace{2mm}}p{7cm}}
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1417
  $\bullet$ & @{text "x\<^isub>i \<approx>ty y\<^isub>i"} provided @{text "x\<^isub>i"} does not occur in @{text rhs}
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1418
  and the type of @{text "x\<^isub>i"} is @{text "ty"}\\
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1419
  $\bullet$ & @{text "x\<^isub>i \<approx>bn y\<^isub>i"} provided @{text "x\<^isub>i"} occurs in @{text rhs}
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1420
  with the recursive call @{text "bn x\<^isub>i"}\\
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1421
  $\bullet$ & none provided @{text "x\<^isub>i"} occurs in @{text rhs} but it is not
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1422
  in a recursive call involving a @{text "bn"}
1708
62b87efcef29 alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1707
diff changeset
  1423
  \end{tabular}
62b87efcef29 alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1707
diff changeset
  1424
  \end{center}
62b87efcef29 alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1707
diff changeset
  1425
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1426
   Again lets take a look at an example for these definitions. For \eqref{letrecs}
1739
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1427
  we have three relations, namely $\approx_{\textit{trm}}$, $\approx_{\textit{assn}}$ and
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1428
  $\approx_{\textit{bn}}$, with the clauses as follows:
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1429
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1430
  \begin{center}
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1431
  \begin{tabular}{@ {}c @ {}}
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1432
  \infer{@{text "Let as t \<approx>\<^bsub>trm\<^esub> Let as' t'"}}
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1433
  {@{text "as \<approx>\<^bsub>bn\<^esub> as'"} & @{term "\<exists>p. (bn as, t) \<approx>lst alpha_trm fv_trm p (bn as', t')"}}\smallskip\\
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1434
  \infer{@{text "Let_rec as t \<approx>\<^bsub>trm\<^esub> Let_rec as' t'"}}
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1435
  {@{term "\<exists>p. (bn as, (as, t)) \<approx>lst alpha_trm2 fv_trm2 p (bn as', (as', t'))"}}
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1436
  \end{tabular}
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1437
  \end{center}
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1438
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1439
  \begin{center}
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1440
  \begin{tabular}{@ {}c @ {}}
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1441
  \infer{@{text "ANil \<approx>\<^bsub>assn\<^esub> ANil"}}{}\\
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1442
  \infer{@{text "ACons a t as \<approx>\<^bsub>assn\<^esub> ACons a' t' as"}}
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1443
  {@{text "a = a'"} & @{text "t \<approx>\<^bsub>trm\<^esub> t'"} & @{text "as \<approx>\<^bsub>assn\<^esub> as'"}}\medskip\\
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1444
  \end{tabular}
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1445
  \end{center}
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1446
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1447
  \begin{center}
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1448
  \begin{tabular}{@ {}c @ {}}
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1449
  \infer{@{text "ANil \<approx>\<^bsub>bn\<^esub> ANil"}}{}\\
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1450
  \infer{@{text "ACons a t as \<approx>\<^bsub>bn\<^esub> ACons a' t' as"}}
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1451
  {@{text "t \<approx>\<^bsub>trm\<^esub> t'"} & @{text "as \<approx>\<^bsub>bn\<^esub> as'"}}\medskip\\
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1452
  \end{tabular}
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1453
  \end{center}
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1454
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1455
  \noindent
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1456
  Note the difference between  $\approx_{\textit{assn}}$ and
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1457
  $\approx_{\textit{bn}}$: the latter only ``tracks'' alpha-equivalence of 
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1458
  the components in an assignment that are \emph{not} bound. Therefore we have
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1459
  a $\approx_{\textit{bn}}$-premise in the clause for @{text "Let"} (which is 
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1460
  a non-recursive binder). The reason is that the terms inside an assignment are not meant 
1739
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1461
  to be under the binder. Such a premise is not needed in @{text "Let_rec"}, 
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1462
  because there everything from the assignment is under the binder. 
1587
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
  1463
*}
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
  1464
1739
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1465
section {* Establishing the Reasoning Infrastructure *}
1717
a3ef7fba983f Beginning of section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1716
diff changeset
  1466
a3ef7fba983f Beginning of section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1716
diff changeset
  1467
text {*
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1468
  Having made all crucial definitions for raw terms, we can start introducing
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1469
  the resoning infrastructure for the types the user specified. For this we first
1739
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1470
  have to show that the alpha-equivalence relation defined in the previous
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1471
  sections are indeed equivalence relations. 
1717
a3ef7fba983f Beginning of section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1716
diff changeset
  1472
1739
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1473
  \begin{lemma} 
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1474
  Given the raw types @{text "ty\<^isub>1, \<dots>, ty\<^isub>n"} and binding functions
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1475
  @{text "bn\<^isub>1, \<dots>, bn\<^isub>m"}, the relations @{text "\<approx>ty\<^isub>1, \<dots>, \<approx>ty\<^isub>n"} and 
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1476
  @{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
  1477
  \end{lemma}
1739
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1478
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1479
  \begin{proof} 
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1480
  The proof is by mutual induction over the definitions. The non-trivial
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1481
  cases involve premises build up by $\approx_{\textit{set}}$, 
1739
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1482
  $\approx_{\textit{res}}$ and $\approx_{\textit{list}}$. They 
1752
9e09253c80cf added alpha_bn definition
Christian Urban <urbanc@in.tum.de>
parents: 1749
diff changeset
  1483
  can be dealt with as in Lemma~\ref{alphaeq}.
1739
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1484
  \end{proof}
1718
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1485
1739
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1486
  \noindent 
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1487
  We can feed this lemma into our quotient package and obtain new types @{text
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1488
  "ty"}$^\alpha_{1..n}$ representing alpha-equated terms of types @{text
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1489
  "ty"}$_{1..n}$. We also obtain definitions for the term-constructors @{text
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1490
  "C"}$^\alpha_{1..m}$ from the raw term-constructors @{text
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1491
  "C"}$_{1..m}$. Similarly for the free-variable functions @{text
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1492
  "fv_ty"}$^\alpha_{1..n}$ and the binding functions @{text
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1493
  "bn"}$^\alpha_{1..k}$. However, these definitions are of not much use for the 
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1494
  user, since the are formulated in terms of the isomorphism we obtained by 
1746
ec0afa89aab3 General paper minor fixes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1743
diff changeset
  1495
  creating a new type in Isabelle/HOL (remember the picture shown in the 
1739
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1496
  Introduction).
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1497
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1498
  {\bf TODO below.}
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1499
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1500
  then define the quotient types @{text "ty\<^isub>1\<^isup>\<alpha> \<dots> ty\<^isub>n\<^isup>\<alpha>"}.  To lift
1718
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1501
  the raw definitions to the quotient type, we need to prove that they
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1502
  \emph{respect} the relation. We follow the definition of respectfullness given
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1503
  by Homeier~\cite{Homeier05}. The intuition behind a respectfullness condition
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1504
  is that when a function (or constructor) is given arguments that are
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1505
  alpha-equivalent the results are also alpha equivalent. For arguments that are
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1506
  not of any of the relations taken into account, equivalence is replaced by
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1507
  equality. In particular the respectfullness condition for a @{text "bn"}
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1508
  function means that for alpha equivalent raw terms it returns the same bound
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1509
  names. Thanks to the restrictions on the binding functions introduced in
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1510
  Section~\ref{sec:alpha} we can show that are respectful.
1717
a3ef7fba983f Beginning of section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1716
diff changeset
  1511
1718
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1512
  \begin{lemma} The functions @{text "bn\<^isub>1 \<dots> bn\<^isub>m"}, @{text "fv_ty\<^isub>1 \<dots> fv_ty\<^isub>n"},
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1513
  the raw constructors, the raw permutations and @{text "\<approx>bn\<^isub>1 \<dots> \<approx>bn\<^isub>m"} are
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1514
  respectful w.r.t. the relations @{text "\<approx>\<^isub>1 \<dots> \<approx>\<^isub>n"}.
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1515
  \end{lemma}
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1516
  \begin{proof} Respectfullness of permutations is a direct consequence of
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1517
  equivariance.  All other properties by induction on the alpha-equivalence
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1518
  relation.  For @{text "bn"} the thesis follows by simple calculations thanks
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1519
  to the restrictions on the binding functions. For @{text "fv"} functions it
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1520
  follows using respectfullness of @{text "bn"}. For type constructors it is a
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1521
  simple calculation thanks to the way alpha-equivalence was defined. For @{text
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1522
  "alpha_bn"} after a second induction on the second relation by simple
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1523
  calculations.  \end{proof}
1717
a3ef7fba983f Beginning of section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1716
diff changeset
  1524
1718
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1525
  With these respectfullness properties we can use the quotient package
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1526
  to define the above constants on the quotient level. We can then automatically
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1527
  lift the theorems that talk about the raw constants to theorems on the quotient
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1528
  level. The following lifted properties are proved:
1717
a3ef7fba983f Beginning of section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1716
diff changeset
  1529
1718
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1530
  \begin{center}
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1531
  \begin{tabular}{cp{7cm}}
1721
c6116722b44d More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1720
diff changeset
  1532
%skipped permute_zero and permute_add, since we do not have a permutation
c6116722b44d More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1720
diff changeset
  1533
%definition
1718
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1534
  $\bullet$ & permutation defining equations \\
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1535
  $\bullet$ & @{term "bn"} defining equations \\
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1536
  $\bullet$ & @{term "fv_ty"} and @{term "fv_bn"} defining equations \\
1721
c6116722b44d More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1720
diff changeset
  1537
  $\bullet$ & induction. The induction principle that we obtain by lifting
c6116722b44d More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1720
diff changeset
  1538
    is the weak induction principle, just on the term structure \\
c6116722b44d More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1720
diff changeset
  1539
  $\bullet$ & quasi-injectivity. This means the equations that specify
c6116722b44d More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1720
diff changeset
  1540
    when two constructors are equal and comes from lifting the alpha
c6116722b44d More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1720
diff changeset
  1541
    equivalence defining relations\\
1718
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1542
  $\bullet$ & distinctness\\
1721
c6116722b44d More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1720
diff changeset
  1543
%may be skipped
1718
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1544
  $\bullet$ & equivariance of @{term "fv"} and @{term "bn"} functions\\
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1545
  \end{tabular}
0d057e57e9a8 More on Section 5
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1717
diff changeset
  1546
  \end{center}
1717
a3ef7fba983f Beginning of section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1716
diff changeset
  1547
1734
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1548
  Until now we have not said anything about the support of the
1721
c6116722b44d More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1720
diff changeset
  1549
  defined type. This is because we could not use the general definition of
c6116722b44d More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1720
diff changeset
  1550
  support in lifted theorems, since it does not preserve the relation.
c6116722b44d More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1720
diff changeset
  1551
  Indeed, take the term @{text "\<lambda>x. x"}. The support of the term is empty @{term "{}"},
c6116722b44d More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1720
diff changeset
  1552
  since the @{term "x"} is bound. On the raw level, before the binding is
1722
05843094273e More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1721
diff changeset
  1553
  introduced the term has the support equal to @{text "{x}"}. 
1721
c6116722b44d More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1720
diff changeset
  1554
1722
05843094273e More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1721
diff changeset
  1555
  To show the support equations for the lifted types we want to use the
1728
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
  1556
  Theorem \ref{suppabs}, so we start with showing that they have a finite
1722
05843094273e More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1721
diff changeset
  1557
  support.
1721
c6116722b44d More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1720
diff changeset
  1558
1722
05843094273e More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1721
diff changeset
  1559
  \begin{lemma} The types @{text "ty\<^isup>\<alpha>\<^isub>1 \<dots> ty\<^isup>\<alpha>\<^isub>n"} have finite support.
05843094273e More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1721
diff changeset
  1560
  \end{lemma}
05843094273e More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1721
diff changeset
  1561
  \begin{proof}
05843094273e More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1721
diff changeset
  1562
  By induction on the lifted types. For each constructor its support is
05843094273e More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1721
diff changeset
  1563
  supported by the union of the supports of all arguments. By induction
05843094273e More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1721
diff changeset
  1564
  hypothesis we know that each of the recursive arguments has finite
05843094273e More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1721
diff changeset
  1565
  support. We also know that atoms and finite atom sets and lists that
05843094273e More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1721
diff changeset
  1566
  occur in the constructors have finite support. A union of finite
05843094273e More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1721
diff changeset
  1567
  sets is finite thus the support of the constructor is finite.
05843094273e More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1721
diff changeset
  1568
  \end{proof}
1721
c6116722b44d More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1720
diff changeset
  1569
1728
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
  1570
% Very vague...
1722
05843094273e More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1721
diff changeset
  1571
  \begin{lemma} For each lifted type @{text "ty\<^isup>\<alpha>\<^isub>i"}, for every @{text "x"}
05843094273e More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1721
diff changeset
  1572
   of this type:
1746
ec0afa89aab3 General paper minor fixes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1743
diff changeset
  1573
  \begin{equation}
1722
05843094273e More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1721
diff changeset
  1574
  @{term "supp x = fv_ty\<^isup>\<alpha>\<^isub>i x"}.
1746
ec0afa89aab3 General paper minor fixes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1743
diff changeset
  1575
  \end{equation}
1722
05843094273e More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1721
diff changeset
  1576
  \end{lemma}
05843094273e More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1721
diff changeset
  1577
  \begin{proof}
1728
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
  1578
  We will show this by induction together with equations that characterize
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
  1579
  @{term "fv_bn\<^isup>\<alpha>\<^isub>"} in terms of @{term "alpha_bn\<^isup>\<alpha>"}. For each of @{text "fv_bn\<^isup>\<alpha>"}
1746
ec0afa89aab3 General paper minor fixes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1743
diff changeset
  1580
  functions this equation is:
1728
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
  1581
  \begin{center}
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
  1582
  @{term "{a. infinite {b. \<not> alpha_bn\<^isup>\<alpha> ((a \<rightleftharpoons> b) \<bullet> x) x}} = fv_bn\<^isup>\<alpha> x"}
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
  1583
  \end{center}
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
  1584
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
  1585
  In the induction we need to show these equations together with the goal
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
  1586
  for the appropriate constructors. We first transform the right hand sides.
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
  1587
  The free variable functions are applied to theirs respective constructors
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
  1588
  so we can apply the lifted free variable defining equations to obtain
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
  1589
  free variable functions applied to subterms minus binders. Using the
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
  1590
  induction hypothesis we can replace free variable functions applied to
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
  1591
  subterms by support. Using Theorem \ref{suppabs} we replace the differences
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
  1592
  by supports of appropriate abstractions.
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
  1593
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
  1594
  Unfolding the definition of supports on both sides of the equations we
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
  1595
  obtain by simple calculations the equalities.
1722
05843094273e More on section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1721
diff changeset
  1596
  \end{proof}
1728
9bbf2a1f9b3f More on paper
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1727
diff changeset
  1597
1734
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1598
  With the above equations we can substitute free variables for support in
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1599
  the lifted free variable equations, which gives us the support equations
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1600
  for the term constructors. With this we can show that for each binding in
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1601
  a constructors the bindings can be renamed. To rename a shallow binder
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1602
  or a deep recursive binder a permutation is sufficient. This is not the
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1603
  case for a deep non-recursive bindings. Take the term
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1604
  @{text "Let (ACons x (Vr x) ANil) (Vr x)"}, representing the language construct
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1605
  @{text "let x = x in x"}. To rename the binder the permutation cannot
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1606
  be applied to the whole assignment since it would rename the free @{term "x"}
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1607
  as well. To avoid this we introduce a new construction operation
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1608
  that applies a permutation under a binding function.
1729
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1728
diff changeset
  1609
1734
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1610
  For each binding function @{text "bn\<^isub>j :: ty\<^isub>i \<Rightarrow> \<dots>"} we define a permutation operation
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1611
  @{text "\<bullet>bn\<^isub>j\<^isub> :: perm \<Rightarrow> ty\<^isub>i \<Rightarrow> ty\<^isub>i"}. This operation permutes only the arguments
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1612
  that are bound by the binding function while also descending in the recursive subcalls.
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1613
  For each term constructor @{text "C x\<^isub>1 \<dots> x\<^isub>n"} the @{text "\<bullet>bn\<^isub>j"} operation applied
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1614
  to a permutation @{text "\<pi>"} and to this constructor equals the constructor applied
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1615
  to the values for each argument. Provided @{text "bn\<^isub>j (C x\<^isub>1 \<dots> x\<^isub>n) = rhs"}, the value
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1616
  for an argument @{text "x\<^isub>j"} is:
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1617
  \begin{center}
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1618
  \begin{tabular}{c@ {\hspace{2mm}}p{7cm}}
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1619
  $\bullet$ & @{text "x\<^isub>i"} provided @{text "x\<^isub>i"} is not in @{text "rhs"}\\
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1620
  $\bullet$ & @{text "\<pi> \<bullet> x\<^isub>i"} provided @{text "x\<^isub>i"} is in @{text "rhs"} without a binding function\\
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1621
  $\bullet$ & @{text "\<pi> \<bullet>bn\<^isub>k x\<^isub>i"} provided @{text "bn\<^isub>k x\<^isub>i"} is @{text "rhs"}\\
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1622
  \end{tabular}
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1623
  \end{center}
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1624
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1625
  The definition of @{text "\<bullet>bn"} is respectful (simple induction) so we can lift it
1746
ec0afa89aab3 General paper minor fixes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1743
diff changeset
  1626
  and obtain @{text "\<bullet>bn\<^isup>\<alpha>"}. A property that shows that this definition is correct is:
1734
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1627
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1628
%% We could get this from ExLet/perm_bn lemma.
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1629
  \begin{lemma} For every bn function  @{text "bn\<^isup>\<alpha>\<^isub>i"},
1746
ec0afa89aab3 General paper minor fixes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1743
diff changeset
  1630
  \begin{eqnarray}
1747
4abb95a7264b starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1746
diff changeset
  1631
  @{text "\<pi> \<bullet> bn\<^isup>\<alpha>\<^isub>i x"} & = & @{text "bn\<^isup>\<alpha>\<^isub>i(p \<bullet>bn\<^isup>\<alpha>\<^isub>i x)"}\\
4abb95a7264b starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1746
diff changeset
  1632
  @{text "fv_bn\<^isup>\<alpha>\<^isub>i x"} & = & @{text "fv_bn\<^isup>\<alpha>\<^isub>i(p \<bullet>bn\<^isup>\<alpha>\<^isub>i x)"}
1746
ec0afa89aab3 General paper minor fixes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1743
diff changeset
  1633
  \end{eqnarray}
1734
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1634
  \end{lemma}
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1635
  \begin{proof} By induction on the lifted type it follows from the definitions of
1746
ec0afa89aab3 General paper minor fixes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1743
diff changeset
  1636
    permutations on the lifted type and the lifted defining equations of @{text "\<bullet>bn"}
ec0afa89aab3 General paper minor fixes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1743
diff changeset
  1637
    and @{text "fv_bn"}.
1734
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1638
  \end{proof}
23721c898d20 permute_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1733
diff changeset
  1639
1717
a3ef7fba983f Beginning of section 5.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1716
diff changeset
  1640
*}
1587
b6da798cef68 more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1579
diff changeset
  1641
1747
4abb95a7264b starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1746
diff changeset
  1642
section {* Strong Induction Principles *}
4abb95a7264b starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1746
diff changeset
  1643
4abb95a7264b starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1746
diff changeset
  1644
text {*
4abb95a7264b starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1746
diff changeset
  1645
  With the help of @{text "\<bullet>bn"} functions defined in the previous section
4abb95a7264b starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1746
diff changeset
  1646
  we can show that binders can be substituted in term constructors. We show
4abb95a7264b starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1746
diff changeset
  1647
  this only for the specification from Figure~\ref{nominalcorehas}. The only
4abb95a7264b starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1746
diff changeset
  1648
  constructor with a complicated binding structure is @{text "ACons"}. For this
4abb95a7264b starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1746
diff changeset
  1649
  constructor we prove:
4abb95a7264b starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1746
diff changeset
  1650
  \begin{eqnarray}
4abb95a7264b starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1746
diff changeset
  1651
  \lefteqn{@{text "supp (Abs_lst (bv pat) trm) \<sharp>* \<pi> \<Longrightarrow>"}} \nonumber \\
4abb95a7264b starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1746
diff changeset
  1652
  & & @{text "ACons pat trm al = ACons (\<pi> \<bullet>bv pat) (\<pi> \<bullet> trm) al"} \nonumber
4abb95a7264b starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1746
diff changeset
  1653
  \end{eqnarray}
4abb95a7264b starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1746
diff changeset
  1654
1750
b47c336ba1b7 Cleaning the strong induction example.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1749
diff changeset
  1655
  \noindent With the Property~\ref{avoiding} we can prove a strong induction principle
1748
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1656
  which we show again only for the interesting constructors in the Core Haskell
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1657
  example. We first show the weak induction principle for comparison:
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1658
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1659
\begin{equation}\nonumber
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1660
\infer
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1661
{
1750
b47c336ba1b7 Cleaning the strong induction example.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1749
diff changeset
  1662
  \textrm{The properties }@{text "P1, P2, \<dots>, P12"}\textrm{ hold for all }@{text "tkind, ckind, \<dots>"}
1748
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1663
}{
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1664
  \begin{tabular}{cp{7cm}}
1750
b47c336ba1b7 Cleaning the strong induction example.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1749
diff changeset
  1665
%%  @{text "P1 KStar"}\\
b47c336ba1b7 Cleaning the strong induction example.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1749
diff changeset
  1666
%%  @{text "\<forall>tk1 tk2. \<^raw:\big(>P1 tk1 \<and> P1 tk2\<^raw:\big)> \<Longrightarrow> P1 (KFun tk1 tk2)"}\\
b47c336ba1b7 Cleaning the strong induction example.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1749
diff changeset
  1667
%%  @{text "\<dots>"}\\
b47c336ba1b7 Cleaning the strong induction example.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1749
diff changeset
  1668
  @{text "\<forall>v ty t1 t2. \<^raw:\big(>P3 ty \<and> P7 t1 \<and> P7 t2\<^raw:\big)> \<Longrightarrow> P7 (Let v ty t1 t2)"}\\
b47c336ba1b7 Cleaning the strong induction example.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1749
diff changeset
  1669
  @{text "\<forall>p t al. \<^raw:\big(>P9 p \<and> P7 t \<and> P8 al\<^raw:\big)> \<Longrightarrow> P8 (ACons p t al)"}\\
1748
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1670
  @{text "\<dots>"}
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1671
  \end{tabular}
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1672
}
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1673
\end{equation}
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1674
1747
4abb95a7264b starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1746
diff changeset
  1675
1750
b47c336ba1b7 Cleaning the strong induction example.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1749
diff changeset
  1676
  \noindent In comparison, the cases for the same constructors in the derived strong
b47c336ba1b7 Cleaning the strong induction example.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1749
diff changeset
  1677
  induction principle are:
1748
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1678
1750
b47c336ba1b7 Cleaning the strong induction example.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1749
diff changeset
  1679
%% TODO get rid of the ugly hspaces.
1748
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1680
\begin{equation}\nonumber
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1681
\infer
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1682
{
1750
b47c336ba1b7 Cleaning the strong induction example.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1749
diff changeset
  1683
  \begin{tabular}{cp{7cm}}
b47c336ba1b7 Cleaning the strong induction example.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1749
diff changeset
  1684
  \textrm{The properties }@{text "P1, P2, \<dots>, P12"}\textrm{ hold for all }@{text "tkind, ckind, \<dots>"}\\
b47c336ba1b7 Cleaning the strong induction example.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1749
diff changeset
  1685
  \textrm{ avoiding any atoms in a given }@{text "y"}
b47c336ba1b7 Cleaning the strong induction example.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1749
diff changeset
  1686
  \end{tabular}
1748
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1687
}{
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1688
  \begin{tabular}{cp{7cm}}
1750
b47c336ba1b7 Cleaning the strong induction example.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1749
diff changeset
  1689
%%  @{text "\<forall>b. P1 b KStar"}\\
b47c336ba1b7 Cleaning the strong induction example.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1749
diff changeset
  1690
%%  @{text "\<forall>tk1 tk2 b. \<^raw:\big(>\<forall>c. P1 c tk1 \<and> \<forall>c. P1 c tk2\<^raw:\big)> \<Longrightarrow> P1 b (KFun tk1 tk2)"}\\
b47c336ba1b7 Cleaning the strong induction example.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1749
diff changeset
  1691
%%  @{text "\<dots>"}\\
b47c336ba1b7 Cleaning the strong induction example.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1749
diff changeset
  1692
  @{text "\<forall>v ty t1 t2 b. \<^raw:\big(>\<forall>c. P3 c ty \<and> \<forall>c. P7 c t1 \<and> \<forall>c. P7 c t2 \<and>"}\\
1751
6d6c36f7dd1e hfill for right aligning single table cells.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1750
diff changeset
  1693
  @{text "\<^raw:\hfill>\<and> atom var \<sharp> b\<^raw:\big)> \<Longrightarrow> P7 b (Let v ty t1 t2)"}\\
1750
b47c336ba1b7 Cleaning the strong induction example.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1749
diff changeset
  1694
  @{text "\<forall>p t al b. \<^raw:\big(>\<forall>c. P9 c p \<and> \<forall>c. P7 c t \<and> \<forall>c. P8 c al \<and>"}\\
1751
6d6c36f7dd1e hfill for right aligning single table cells.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1750
diff changeset
  1695
  @{text "\<^raw:\hfill>\<and> set (bv p) \<sharp>* b\<^raw:\big)> \<Longrightarrow> P8 b (ACons p t al)"}\\
1748
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1696
  @{text "\<dots>"}
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1697
  \end{tabular}
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1698
}
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1699
\end{equation}
014a4ef807dc Fighting with space in displaying strong induction...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1747
diff changeset
  1700
1747
4abb95a7264b starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1746
diff changeset
  1701
*}
4abb95a7264b starting strong induction
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1746
diff changeset
  1702
1702
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1703
text {*
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1704
1743
925a5e9aa832 Fill the space below the figure.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1742
diff changeset
  1705
  \begin{figure}[t!]
1702
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1706
  \begin{boxedminipage}{\linewidth}
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1707
  \small
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1708
  \begin{tabular}{l}
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1709
  \isacommand{atom\_decl}~@{text "var"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1710
  \isacommand{atom\_decl}~@{text "cvar"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1711
  \isacommand{atom\_decl}~@{text "tvar"}\\[1mm]
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1712
  \isacommand{nominal\_datatype}~@{text "tkind ="}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1713
  \phantom{$|$}~@{text "KStar"}~$|$~@{text "KFun tkind tkind"}\\ 
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1714
  \isacommand{and}~@{text "ckind ="}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1715
  \phantom{$|$}~@{text "CKSim ty ty"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1716
  \isacommand{and}~@{text "ty ="}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1717
  \phantom{$|$}~@{text "TVar tvar"}~$|$~@{text "T string"}~$|$~@{text "TApp ty ty"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1718
  $|$~@{text "TFun string ty_list"}~%
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1719
  $|$~@{text "TAll tv::tvar tkind ty::ty"}  \isacommand{bind}~@{text "tv"}~\isacommand{in}~@{text ty}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1720
  $|$~@{text "TArr ckind ty"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1721
  \isacommand{and}~@{text "ty_lst ="}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1722
  \phantom{$|$}~@{text "TNil"}~$|$~@{text "TCons ty ty_lst"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1723
  \isacommand{and}~@{text "cty ="}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1724
  \phantom{$|$}~@{text "CVar cvar"}~%
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1725
  $|$~@{text "C string"}~$|$~@{text "CApp cty cty"}~$|$~@{text "CFun string co_lst"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1726
  $|$~@{text "CAll cv::cvar ckind cty::cty"}  \isacommand{bind}~@{text "cv"}~\isacommand{in}~@{text cty}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1727
  $|$~@{text "CArr ckind cty"}~$|$~@{text "CRefl ty"}~$|$~@{text "CSym cty"}~$|$~@{text "CCirc cty cty"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1728
  $|$~@{text "CAt cty ty"}~$|$~@{text "CLeft cty"}~$|$~@{text "CRight cty"}~$|$~@{text "CSim cty cty"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1729
  $|$~@{text "CRightc cty"}~$|$~@{text "CLeftc cty"}~$|$~@{text "Coerce cty cty"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1730
  \isacommand{and}~@{text "co_lst ="}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1731
  \phantom{$|$}@{text "CNil"}~$|$~@{text "CCons cty co_lst"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1732
  \isacommand{and}~@{text "trm ="}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1733
  \phantom{$|$}~@{text "Var var"}~$|$~@{text "K string"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1734
  $|$~@{text "LAM_ty tv::tvar tkind t::trm"}  \isacommand{bind}~@{text "tv"}~\isacommand{in}~@{text t}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1735
  $|$~@{text "LAM_cty cv::cvar ckind t::trm"}   \isacommand{bind}~@{text "cv"}~\isacommand{in}~@{text t}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1736
  $|$~@{text "App_ty trm ty"}~$|$~@{text "App_cty trm cty"}~$|$~@{text "App trm trm"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1737
  $|$~@{text "Lam v::var ty t::trm"}  \isacommand{bind}~@{text "v"}~\isacommand{in}~@{text t}\\
1739
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1738
  $|$~@{text "Let x::var ty trm t::trm"}  \isacommand{bind}~@{text x}~\isacommand{in}~@{text t}\\
1702
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1739
  $|$~@{text "Case trm assoc_lst"}~$|$~@{text "Cast trm co"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1740
  \isacommand{and}~@{text "assoc_lst ="}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1741
  \phantom{$|$}~@{text ANil}~%
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1742
  $|$~@{text "ACons p::pat t::trm assoc_lst"}  \isacommand{bind}~@{text "bv p"}~\isacommand{in}~@{text t}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1743
  \isacommand{and}~@{text "pat ="}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1744
  \phantom{$|$}~@{text "Kpat string tvtk_lst tvck_lst vt_lst"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1745
  \isacommand{and}~@{text "vt_lst ="}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1746
  \phantom{$|$}~@{text VTNil}~$|$~@{text "VTCons var ty vt_lst"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1747
  \isacommand{and}~@{text "tvtk_lst ="}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1748
  \phantom{$|$}~@{text TVTKNil}~$|$~@{text "TVTKCons tvar tkind tvtk_lst"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1749
  \isacommand{and}~@{text "tvck_lst ="}\\ 
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1750
  \phantom{$|$}~@{text TVCKNil}~$|$ @{text "TVCKCons cvar ckind tvck_lst"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1751
  \isacommand{binder}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1752
  @{text "bv :: pat \<Rightarrow> atom list"}~\isacommand{and}~%
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1753
  @{text "bv1 :: vt_lst \<Rightarrow> atom list"}~\isacommand{and}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1754
  @{text "bv2 :: tvtk_lst \<Rightarrow> atom list"}~\isacommand{and}~%
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1755
  @{text "bv3 :: tvck_lst \<Rightarrow> atom list"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1756
  \isacommand{where}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1757
  \phantom{$|$}~@{text "bv (K s tvts tvcs vs) = (bv3 tvts) @ (bv2 tvcs) @ (bv1 vs)"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1758
  $|$~@{text "bv1 VTNil = []"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1759
  $|$~@{text "bv1 (VTCons x ty tl) = (atom x)::(bv1 tl)"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1760
  $|$~@{text "bv2 TVTKNil = []"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1761
  $|$~@{text "bv2 (TVTKCons a ty tl) = (atom a)::(bv2 tl)"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1762
  $|$~@{text "bv3 TVCKNil = []"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1763
  $|$~@{text "bv3 (TVCKCons c cty tl) = (atom c)::(bv3 tl)"}\\
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1764
  \end{tabular}
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1765
  \end{boxedminipage}
1739
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1766
  \caption{The nominal datatype declaration for Core-Haskell. At the moment we
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1767
  do not support nested types; therefore we explicitly have to unfold the 
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1768
  lists @{text "co_lst"}, @{text "assoc_lst"} and so on. This will be improved
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1769
  in a future version of Nominal Isabelle. Apart from that, the 
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1770
  declaration follows closely the original in Figure~\ref{corehas}. The
1741
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1771
  point of our work is that having made such a declaration in Nominal Isabelle,
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1772
  one obtains automatically a reasoning infrastructure for Core-Haskell.
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1773
  \label{nominalcorehas}}
1702
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1774
  \end{figure}
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1775
*}
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1776
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
  1777
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
  1778
1570
014ddf0d7271 tuned paper
Christian Urban <urbanc@in.tum.de>
parents: 1566
diff changeset
  1779
text {*
1740
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1780
  To our knowledge the earliest usage of general binders in a theorem prover
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1781
  setting is in \cite{NaraschewskiNipkow99}, which describes a formalisation
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1782
  of the algorithm W. This formalisation implements binding in type schemes
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1783
  using a de-Bruijn indices representation. Since type schemes contain only a
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1784
  single binder, different indices do not refer to different binders (as in
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1785
  the usual de-Bruijn representation), but to different bound variables. Also
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1786
  recently an extension for general binders has been proposed for the locally
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1787
  nameless approach to binding \cite{chargueraud09}.  In this proposal, de-Bruijn 
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1788
  indices consist of two numbers, one referring to the place where a variable is bound
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1789
  and the other to which variable is bound. The reasoning infrastructure for both
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1790
  kinds of de-Bruijn indices comes for free in any modern theorem prover as
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1791
  the corresponding term-calculi can be implemented as ``normal'' datatypes.
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1792
  However, in both approaches, it seems difficult to achieve our fine-grained
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1793
  control over the ``semantics'' of bindings (i.e.~whether the order of
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1794
  binders should matter, or vacuous binders should be taken into account). To
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1795
  do so, requires additional predicates that filter out some unwanted
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1796
  terms. Our guess is that they results in rather intricate formal reasoning.
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1797
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1798
  Another representation technique for binding is higher-order abstract syntax
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1799
  (HOAS), for example implemented in the Twelf system. This representation
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1800
  technique supports very elegantly some aspects of \emph{single} binding, and
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1801
  impressive work is in progress that uses HOAS for mechanising the metatheory
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1802
  of SML \cite{LeeCraryHarper07}. We are not aware how multiple binders of SML
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1803
  are represented in this work, but the submitted Twelf-solution for the
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1804
  POPLmark challenge reveals that HOAS cannot easily deal with binding
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1805
  constructs where the number of bound variables is not fixed. For example in
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1806
  the second part of this challenge, @{text "Let"}s involve patterns and bind
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1807
  multiple variables at once. In such situations, HOAS needs to use, essentially,
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1808
  iterated single binders for representing multiple binders.
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1809
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1810
  Two formalisations involving general binders have been performed in older
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1811
  versions of Nominal Isabelle \cite{BengtsonParow09, UrbanNipkow09}.  Both
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1812
  use the approach based on iterated single binders. Our experience with the
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1813
  latter formalisation has been far from satisfying. The major pain arises
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1814
  from the need to ``unbind'' variables. This can be done in one step with our
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1815
  general binders, for example @{term "Abs as x"}, but needs a cumbersome
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1816
  iteration with single binders. The resulting formal reasoning is rather
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1817
  unpleasant. The hope is that the extension presented in this paper is a
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1818
  substantial improvement.  
1726
2eafd8ed4bbf started with a related work section
Christian Urban <urbanc@in.tum.de>
parents: 1725
diff changeset
  1819
 
1740
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1820
  The most closely related work is the description of the Ott-tool
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1821
  \cite{ott-jfp}. This tool is a nifty front end for creating \LaTeX{}
1741
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1822
  documents from term-calculi specifications. For a subset of the
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1823
  specifications, Ott can also generate theorem prover code using a raw
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1824
  representation and a locally nameless representation for terms. The
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1825
  developers of this tool have also put forward a definition for the notion of
1740
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1826
  alpha-equivalence of the term-calculi that can be specified in Ott.  This
1741
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1827
  definition is rather different from ours, not using any of the nominal
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1828
  techniques; it also aims for maximum expressivity, covering as many binding
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1829
  structures from programming language research as possible.  Although we were
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1830
  heavily inspired by their syntax, their definition of alpha-equivalence was
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1831
  no use at all for our extension of Nominal Isabelle. First, it is far too
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1832
  complicated to be a basis for automated proofs implemented on the ML-level
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1833
  of Isabelle/HOL. Second, it covers cases of binders depending on other
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1834
  binders, which just do not make sense for our alpha-equated terms, and it
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1835
  also allows empty types that have no meaning in a HOL-based theorem
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1836
  prover. Because of how we set up our definitions, we had to impose some
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1837
  restrictions, like excluding overlapping deep binders, which are not present
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1838
  in Ott. Our motivation is that we can still cover interesting term-calculi
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1839
  from programming language research, like Core-Haskell. For features of Ott,
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1840
  like subgrammars, the datatype infrastructure in Isabelle/HOL is
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1841
  unfortunately not yet powerful enough. On the other hand we are not aware
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1842
  that Ott can make any distinction between our three different binding
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1843
  modes. Also, definitions for notions like free-variables are work in
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1844
  progress in Ott.
1739
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1845
*}
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1846
1493
52f68b524fd2 slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1491
diff changeset
  1847
section {* Conclusion *}
1485
c004e7448dca temporarily disabled tests in Nominal/ROOT
Christian Urban <urbanc@in.tum.de>
parents: 1484
diff changeset
  1848
c004e7448dca temporarily disabled tests in Nominal/ROOT
Christian Urban <urbanc@in.tum.de>
parents: 1484
diff changeset
  1849
text {*
1741
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1850
  We have presented an extension for Nominal Isabelle in order to derive a
1749
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1748
diff changeset
  1851
  convenient reasoning infrastructure for term-constructors binding multiple
1741
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1852
  variables at once. This extension can deal with term-calculi, such as
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1853
  Core-Haskell. For such calculi, we can also derive strong induction
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1854
  principles that have the usual variable already built in. At the moment we
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1855
  can do so only with some manual help, but future work will automate them
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1856
  completely.  The code underlying this extension will become part of the
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1857
  Isabelle distribution, but for the moment it can be downloaded from the
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1858
  Mercurial repository linked at
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1859
  \href{http://isabelle.in.tum.de/nominal/download}
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1860
  {http://isabelle.in.tum.de/nominal/download}.
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1861
1742
3f78dc600dce last commit for now.
Christian Urban <urbanc@in.tum.de>
parents: 1741
diff changeset
  1862
  We have left out a discussion about how functions can be defined
3f78dc600dce last commit for now.
Christian Urban <urbanc@in.tum.de>
parents: 1741
diff changeset
  1863
  over alpha-equated terms. In earlier work \cite{UrbanBerghofer06}
3f78dc600dce last commit for now.
Christian Urban <urbanc@in.tum.de>
parents: 1741
diff changeset
  1864
  this turned out to be a thorny issue in the old Nominal Isabelle.
3f78dc600dce last commit for now.
Christian Urban <urbanc@in.tum.de>
parents: 1741
diff changeset
  1865
  We hope to do better this time by using the function package that
3f78dc600dce last commit for now.
Christian Urban <urbanc@in.tum.de>
parents: 1741
diff changeset
  1866
  has recently been implemented in Isabelle/HOL and by restricting
3f78dc600dce last commit for now.
Christian Urban <urbanc@in.tum.de>
parents: 1741
diff changeset
  1867
  function definitions to equivariant functions (for such functions
3f78dc600dce last commit for now.
Christian Urban <urbanc@in.tum.de>
parents: 1741
diff changeset
  1868
  it is possible to provide more automation).
1741
0c01dda0acd5 more on the conclusion
Christian Urban <urbanc@in.tum.de>
parents: 1740
diff changeset
  1869
1742
3f78dc600dce last commit for now.
Christian Urban <urbanc@in.tum.de>
parents: 1741
diff changeset
  1870
  There are some restrictions we imposed, like absence of nested type
3f78dc600dce last commit for now.
Christian Urban <urbanc@in.tum.de>
parents: 1741
diff changeset
  1871
  definitions that allow one to specify the function kinds as 
3f78dc600dce last commit for now.
Christian Urban <urbanc@in.tum.de>
parents: 1741
diff changeset
  1872
  @{text "TFun string (ty list)"} instead of the unfolded version
3f78dc600dce last commit for now.
Christian Urban <urbanc@in.tum.de>
parents: 1741
diff changeset
  1873
  @{text "TFun string ty_list"} in Figure~\ref{nominalcorehas}, that 
3f78dc600dce last commit for now.
Christian Urban <urbanc@in.tum.de>
parents: 1741
diff changeset
  1874
  can be easily lifted. They essentially amount only to a more
3f78dc600dce last commit for now.
Christian Urban <urbanc@in.tum.de>
parents: 1741
diff changeset
  1875
  clever implementation. More interesting is lifting our restriction
3f78dc600dce last commit for now.
Christian Urban <urbanc@in.tum.de>
parents: 1741
diff changeset
  1876
  about overlapping deep binders.
3f78dc600dce last commit for now.
Christian Urban <urbanc@in.tum.de>
parents: 1741
diff changeset
  1877
  
1520
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
  1878
  Complication when the single scopedness restriction is lifted (two 
6ac75fd979d4 more of the introduction
Christian Urban <urbanc@in.tum.de>
parents: 1517
diff changeset
  1879
  overlapping permutations)
1662
e78cd33a246f more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1657
diff changeset
  1880
1726
2eafd8ed4bbf started with a related work section
Christian Urban <urbanc@in.tum.de>
parents: 1725
diff changeset
  1881
  Future work: distinct list abstraction
2eafd8ed4bbf started with a related work section
Christian Urban <urbanc@in.tum.de>
parents: 1725
diff changeset
  1882
1493
52f68b524fd2 slightly more of the paper
Christian Urban <urbanc@in.tum.de>
parents: 1491
diff changeset
  1883
  \noindent
1528
d6ee4a1b34ce more tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1524
diff changeset
  1884
  {\bf Acknowledgements:} We are very grateful to Andrew Pitts for  
1506
7c607df46a0a slightly more in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1493
diff changeset
  1885
  many discussions about Nominal Isabelle. We thank Peter Sewell for 
7c607df46a0a slightly more in the paper
Christian Urban <urbanc@in.tum.de>
parents: 1493
diff changeset
  1886
  making the informal notes \cite{SewellBestiary} available to us and 
1556
a7072d498723 more work on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1552
diff changeset
  1887
  also for patiently explaining some of the finer points about the abstract 
1702
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1888
  definitions and about the implementation of the Ott-tool. We
Christian Urban <urbanc@in.tum.de>
parents: 1699
diff changeset
  1889
  also thank Stephanie Weirich for suggesting to separate the subgrammars
1739
468c3c1adcba more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 1737
diff changeset
  1890
  of kinds and types in our Core-Haskell example.  
754
b85875d65b10 added a paper for possible notes
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1891
*}
b85875d65b10 added a paper for possible notes
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1892
1740
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1893
text {*
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1894
%%% FIXME: The restricions should have already been described in previous sections?
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1895
  Restrictions
1484
dc7b049d9072 made paper to compile
Christian Urban <urbanc@in.tum.de>
parents: 1473
diff changeset
  1896
1740
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1897
  \begin{itemize}
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1898
  \item non-emptiness
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1899
  \item positive datatype definitions
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1900
  \item finitely supported abstractions
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1901
  \item respectfulness of the bn-functions\bigskip
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1902
  \item binders can only have a ``single scope''
1746
ec0afa89aab3 General paper minor fixes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1743
diff changeset
  1903
  \item in particular "bind a in b, bind b in c" is not allowed.
1740
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1904
  \item all bindings must have the same mode
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1905
  \end{itemize}
2afee29cf81c completed related work section
Christian Urban <urbanc@in.tum.de>
parents: 1739
diff changeset
  1906
*}
1484
dc7b049d9072 made paper to compile
Christian Urban <urbanc@in.tum.de>
parents: 1473
diff changeset
  1907
754
b85875d65b10 added a paper for possible notes
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1908
(*<*)
b85875d65b10 added a paper for possible notes
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1909
end
1704
cbd6a709a664 fv and fv_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1703
diff changeset
  1910
(*>*)