.
[hacks/simpleWebSlides.git] / pres-esop15 / 01.xhtml
index 6a41862..d74a138 100644 (file)
@@ -14,8 +14,8 @@
           <!ENTITY land    "∧" >
           <!ENTITY lor      "∨" >
           <!ENTITY setminus "∖" >
-         <!ENTITY bottom   "𝟘" >
-         <!ENTITY top      "𝟙" >
+         <!ENTITY bottom   "<tt>Empty</tt>" > <!-- 𝟘 -->
+         <!ENTITY top      "<tt>Any</tt>" > <!-- 𝟙 -->
          <!ENTITY subseteq "⊆" >
          <!ENTITY leq      "≤" >
          <!ENTITY Lrarrow  "⟺">
     </div>
     <div class="sws-slide">
       <h1>XQuery 3.0</h1>
-      <p>W3C standard language for querying XML
-      databases/documents</p>
-<code style="background:white">
+<p>W3C standard to query XML documents</p>
+<code style="background:white;font-size:90%;">
    declare function <u>get_links</u>(<u>$page</u>, <u>$print</u>) {
-
        <span class="for">for</span> <u>$i</u> <span class="for">in</span> <u>$page</u><span class="xpath">/descendant::a[not(ancestor::b)]</span>
-       <span class="for">return</span> <u>print</u>(<u>$i</u>)
+       <span class="for">return</span> <u>$print</u>(<u>$i</u>)
    }
 
    declare function <u>pretty</u>(<u>$link</u>) {
        <span class="ts">typeswitch</span>(<u>$link</u>)
-           <span class="ts">case</span> <u>$l</u> <span class="ts">as element(a)</span>
-              return <span class="sw">switch</span> (<u>$l</u><span class="xpath">/@class</span>)
-                 <span class="sw">case</span> "style1"
+       <span class="ts">case</span> <u>$l</u> <span class="ts">as element(a)</span>
+            return <span class="sw">switch</span> (<u>$l</u><span class="xpath">/@class</span>)
+                   <span class="sw">case</span> "style1"
                      return &lt;a href={<u>$l</u><span class="xpath">/@href</span>}&gt;&lt;b&gt;{<u>$l</u><span class="xpath">/text()</span>}&lt;/b&gt;&lt;/a&gt;
-                 default return <u>$l</u>
+                   default return <u>$l</u>
 
-           <span class="ts">default return</span> <u>$link</u>
+       <span class="ts">default return</span> <u>$link</u>
    }
+   
+   let $bold_links := get_links(document("file.xhtml"), $pretty)
 </code>
     <script type="text/javascript">
       reg ("0", col_change(".xpath, .for, .ts, .sw",""));
          + nice declarative syntax for paths
        </li>
        <li>Cons<br/>
-         - weird distinction between types/value case<br/>
-         - <s>no type-checking for functions</s>
+         - sometime tedious to extract subtrees while preserving the structure<br/>
+         - <s>no typechecking for functions (typechecking is optional in 3.0)</s>
        </li>
       </ul>
       <p>It's a pity since XML <em>documents</em> are very precisely
     </div>
     <div class="sws-slide">
       <h1>&cduce;</h1>
-      <p>A polymorphic functional language (ML-style) equipped with
+      <p>A polymorphic functional language equipped with
       semantic subtyping</p>
 
-<code>
-  let <u>pretty</u> (&lt;a&gt;_ -&gt; &lt;a&gt;_  &amp;  Any\&lt;a&gt;_ &rarrow; Any\&lt;a>_)
-
-    | &lt;a class="style1" href=<u>h</u> ..&gt; <u>l</u> &rarrow; &lt;a href=<u>h</u>&gt;[ &lt;b&gt;<u>l</u> ]
-    | x &rarrow; x
+<code style="font-size:90%">   
+  let <u>pretty</u> ((&lt;a&gt;Any <span class="typ">&rarrow;</span> &lt;a&gt;Any)  <span class="typ">&amp;</span>  (Any<span class="typ">\</span>&lt;a&gt;Any <span class="typ">&rarrow;</span> Any<span class="typ">\</span>&lt;a>Any)) =
+      function
+    | <span class="pat">&lt;a class="style1" href=<u>h</u> ..&gt; <u>l</u></span> &rarrow; &lt;a href=<u>h</u>&gt;[ &lt;b&gt;<u>l</u> ]
+    | <span class="pat">x</span> &rarrow; x
 
 
-  let <u>get_links</u> (page: &lt;_&gt;_) (print: &lt;a&gt;_ -&gt; &lt;a&gt;_) : [ &lt;a&gt;_ * ] =
+  let <u>get_links</u> (page: &lt;(Any)&gt;Any) (print: &lt;a&gt;Any <span class="typ">&rarrow;</span> &lt;a&gt;Any) : <span class="typ">[ &lt;a&gt;Any * ]</span> =
 
       match page with
-      &lt;a&gt;_ &amp; x &rarrow; [ (print x) ]
-    | &lt; (_\‘b) &gt; l &rarrow;
-                 (transform l with (i &amp; &lt;_&gt;_) &rarrow; get_links i print)
-    | _ -&gt; [ ]
-
-
-
-
+      <span class="pat">&lt;a&gt;_ &amp; x</span> &rarrow; [ (print x) ]
+    | <span class="pat">&lt; (_\‘b) &gt; l</span> &rarrow;
+                 (<span class="lc">transform l with</span> <span class="pat">(i &amp; &lt;_&gt;_)</span> &rarrow; get_links i print)
+    | <span class="pat">_</span> &rarrow; [ ]
 </code>
-
+       <script type="text/javascript">
+         reg ("0", col_change(".pat,.typ,.lc",""));
+         reg ("1", col_change(".pat", "#f80"));
+         reg ("2", col_change(".typ", "#290"));
+         reg ("3", col_change(".lc", "#80f"));
+    </script>
 
     </div>
     <div class="sws-slide">
          + compact (and efficient) type and value pattern-matching
        </li>
        <li>Cons<br/>
-         - <s>complex navigation encoded through recursion</s><br/>
+         - <s>complex navigation encoded through explicit recursion</s><br/>
          - no type inference for functions
        </li>
       </ul>
     </div>
     <div class="sws-slide">
       <h1>&cduce;'s type algebra</h1>
-<pre>
-    t ::=  b  |  c  |  <u>t × t</u>  |  <u>t &rarrow; t</u>  |  <a>t &lor; t</a>  |  <mark>t  &land; t</mark>  |  <mark>t &setminus; t</mark>  |  <mark>&top;</mark>  |  <mark>&bottom;</mark>  |  &alpha;
+<p>A set &mathT; of types</p>
+<pre style="text-align:center;">    t ::=  b  |  c  |  <u>t × t</u>  |  <u>t &rarrow; t</u>  |  <mark>t &lor; t</mark>  |  <mark>t  &land; t</mark>  |  <mark>t &setminus; t</mark>  |  <mark>&top;</mark>  |  <mark>&bottom;</mark>  |  &alpha;
 </pre>
 <p><dfn>b</dfn> : ranges over basic types (<tt>Int</tt>, <tt>String</tt>, …)<br/>
    <dfn>c</dfn> : ranges over singleton types
@@ -340,12 +341,16 @@ t &leq; s   &Lrarrow;   &lbrack;t&rbrack; &subseteq;  &lbrack;s&rbrack;
 </div>
 <div class="sws-slide">
 <h1>&cduce; data-model</h1>
-<p>The usual sets of values: constants, &lambda;-abstractions, pairs, …</p>
-<p>Sequences are nested pairs: <dfn><tt>[</tt> v<sub>1</sub>  … v<sub>n</sub> <tt>]</tt> ≡ (v<sub>1</sub>, (…, (v<sub>n</sub>, <tt>`nil</tt>)))
-</dfn></p>
+<p>The usual sets &mathV; of values:</p>
+<pre style="text-align:center">       v ::= <tt>1</tt>  |  …  |  <tt>`Foo</tt>  |   (v, v)  |  &lambda;x.e
+</pre>
+<p>Sequences are nested pairs (<i>à la</i> Lisp):</p>
+<pre style="text-align:center;"><tt>[</tt> v<sub>1</sub>  … v<sub>n</sub> <tt>]</tt> ≡ (v<sub>1</sub>, (…, (v<sub>n</sub>, <tt>`nil</tt>)))
+</pre>
 <p>XML documents are tagged sequences: <pre style="text-align:center;"><tt>&lt;foo&gt;[</tt> v<sub>1</sub>  … v<sub>n</sub> <tt>]</tt> ≡ (<tt>`foo</tt>, <tt>[</tt> v<sub>1</sub>  … v<sub>n</sub> <tt>]</tt>)</pre>
 </p>
 <p>(Sometimes we write <tt>[ ]</tt> for the variant <tt>`nil</tt>)</p>
+<p>Everything is built on top of products and variants</p>
 </div>
 <div class="sws-slide">
       <h1>&cduce; patterns</h1>
@@ -374,14 +379,14 @@ t &leq; s   &Lrarrow;   &lbrack;t&rbrack; &subseteq;  &lbrack;s&rbrack;
     |  [ _* (<u>x</u> &amp; Int) ]                  &rarrow;  (<u>x</u>, `false)
     |  [ ]                               &rarrow;  (0, `false)
 </code>
-<ol>
-<li><dfn>&lbag;<tt>[ _* (<u>x</u> &amp; Int) Bool* (<u>y</u> &amp; Bool) ]</tt>&rbag; ≡ <tt>[ &top;* Int Bool+ ]</tt></dfn><br/>
-  yield : { x &mapsto; <tt>Int</tt>, y &mapsto; <tt>Bool</tt> }
+<ol style="list-style-position:inside;">
+<li class="sws-pause"><dfn>&lbag;<tt>[ _* (<u>x</u> &amp; Int) Bool* (<u>y</u> &amp; Bool) ]</tt>&rbag;    <span style="display:inline-block;width:5em;text-align:center"> ≡</span>     <tt>[ &top;* Int Bool+ ]</tt></dfn><br/>
+ <span style="text-align:right;display:inline-block;width:94%;">{ x &mapsto; <tt>Int</tt>, y &mapsto; <tt>Bool</tt> }</span>
 </li>
-<li><dfn>&lbag;<tt>[ _* (<u>x</u> &amp; Int) ]</tt>&rbag; ≡ <tt>[ &top;* Int ]</tt></dfn><br/>
-  yield : { x &mapsto; <tt>Int</tt> }
+<li class="sws-pause"><dfn>&lbag;<tt>[ _* (<u>x</u> &amp; Int) ]</tt>&rbag; <span style="display:inline-block;width:5em;text-align:center"> ≡</span> <tt>[ &top;* Int ]</tt></dfn><br/>
+  <span style="text-align:right;display:inline-block;width:58%;"> { x &mapsto; <tt>Int</tt> }</span>
 </li>
-<li>Since <dfn><tt>[Int+ Bool* ]</tt> &setminus; ( <tt>[ &top;* Int Bool+ ]</tt> &lor;  <tt>[ &top;* Int]</tt>) ≡ &bottom;  </dfn>
+<li class="sws-pause">Since <dfn><tt>[Int+ Bool* ]</tt> &setminus; ( <tt>[ &top;* Int Bool+ ]</tt> &lor;  <tt>[ &top;* Int]</tt>) ≡ <s>&bottom;</s>  </dfn><br/>
     the third case is unreachable.
 </li>
 
@@ -396,7 +401,7 @@ t &leq; s   &Lrarrow;   &lbrack;t&rbrack; &subseteq;  &lbrack;s&rbrack;
   <li>Introduced in 1997 by Gérard Huet</li>
   <li>Stack of visited nodes</li>
   <li>Push the current node on the stack when traversing a pair</li>
-  <li>Take top of the stack to go backward</li>
+  <li>Take the top of the stack to go backward</li>
   <li>Tag the elements of the stack to remember which component of a
   pair we have visited</li>
 </ul>
@@ -409,13 +414,13 @@ t &leq; s   &Lrarrow;   &lbrack;t&rbrack; &subseteq;  &lbrack;s&rbrack;
 <h1>Zippers (2/2)</h1>
 <p><tt><u>fst</u></tt> (resp. <tt><u>snd</u></tt>) takes the first (resp. second)
   projection of a pair and update its zipper accordingly:</p>
-<pre>    v<sub>1</sub> ≡ (1, (2, (3, (4, `nil))))<sub>&bcirc;</sub>
-    v<sub>11</sub> ≡ fst v<sub>1</sub> ≡ 1<sub>&left;(1, (2, (3, (4, `nil))))<sub>&bcirc;</sub> · &bcirc; </sub>
-    v<sub>2</sub> ≡ snd v<sub>1</sub> ≡ (2, (3, (4, `nil)))<sub>&right;(1, (2, (3, (4, `nil))))<sub>&bcirc;</sub> · &bcirc; </sub>
-    v<sub>3</sub> ≡ snd v<sub>2</sub> ≡ (3, (4, `nil))<sub>&right;v<sub>2</sub> · &right;v<sub>1</sub> · &bcirc; </sub>
+<pre>      v<sub>1</sub> ≡ (1, (2, (3, (4, `nil))))<sub>&bcirc;</sub>
+      v<sub>11</sub> ≡ <tt>fst</tt> v<sub>1</sub> ≡ 1<sub>&left;(1, (2, (3, (4, `nil))))<sub>&bcirc;</sub> · &bcirc; </sub>
+      v<sub>2</sub> ≡ <tt>snd</tt> v<sub>1</sub> ≡ (2, (3, (4, `nil)))<sub>&right;(1, (2, (3, (4, `nil))))<sub>&bcirc;</sub> · &bcirc; </sub>
+      v<sub>3</sub> ≡ <tt>snd</tt> v<sub>2</sub> ≡ (3, (4, `nil))<sub>&right;v<sub>2</sub> · &right;v<sub>1</sub> · &bcirc; </sub>
 </pre>
 <p><tt><u>up</u></tt> returns the head of the zipper: </p>
-<pre>    up v<sub>3</sub> ≡ v<sub>2</sub> ≡ (2, (3, (4, `nil)))<sub>&right;(1, (2, (3, (4, `nil))))<sub>&bcirc;</sub> · &bcirc; </sub>
+<pre>      <tt>up</tt> v<sub>3</sub> ≡ v<sub>2</sub> ≡ (2, (3, (4, `nil)))<sub>&right;(1, (2, (3, (4, `nil))))<sub>&bcirc;</sub> · &bcirc; </sub>
 </pre>
 </div>
 <div class="sws-slide">
@@ -431,22 +436,19 @@ t &leq; s   &Lrarrow;   &lbrack;t&rbrack; &subseteq;  &lbrack;s&rbrack;
    integers that are the leftmost descendant of a tree</span><br/><br/>
    <dfn><tt><![CDATA[<html>[ <head>[…] <body>[…] ]]]></tt><sub>&bcirc;</sub></dfn> <span style="float:right;">type of
    HTML documents</span><br/><br/>
-   <dfn><tt><![CDATA[<a href=String>[ … ]]]></tt><sub>(&right; &top;) · &ztop;</sub></dfn> <span style="float:right;">types of links in any context</span>
-
+   <dfn><tt><![CDATA[<a href=String>[ … ]]]></tt><sub> &ztop;</sub></dfn> <span style="float:right;">types of links  nested in any context</span>
 </p>
 </div>
 <div class="sws-slide">
 <h1>Tree navigation</h1>
 <p>Since patterns contain types, we can check complex
   conditions:</p>
-<pre style="width:60%;display:inline-block;border-width:0pt 1pt 0pt
-  0pt; border-style:dashed;border-color: black;vertical-align:middle">  <span style="font-family:'Open Sans';">Has a descendant <tt>&lt;a&gt;_</tt>:</span>
-    p ≡ <tt id="test">&lt;a&gt;_</tt>   &lor;   <tt>&lt;_&gt;[ _* p _* ]</tt>
+<pre style="margin-left:1em;width:62%;display:inline-block;border-width:0pt 1pt 0pt
+  0pt; border-style:dashed;border-color: black;vertical-align:middle">   <span style="font-family:'Open Sans';">Has a descendant <tt>&lt;a&gt;_</tt>:</span>
+     p ≡ <tt id="test">&lt;a&gt;_</tt>   &lor;   <tt>&lt;_&gt;[ _* <dfn>p</dfn> _* ]</tt>
  
   <span style="font-family:'Open Sans';">Deos not have an ancestor <tt>&lt;b&gt;_</tt>:</span>
-    &tau; ≡ &bcirc;   &lor;   &right;(&top;&setminus; <tt>&lt;b&gt;_</tt>) · &tau;   &lor;   &left;(&top;&setminus; <tt>&lt;b&gt;_</tt>) · &tau; 
-
-</pre>
+    &tau; ≡ &bcirc;   &lor;   &right;(&top;&setminus; <tt>&lt;b&gt;_</tt>) · &tau;   &lor;   &left;(&top;&setminus; <tt>&lt;b&gt;_</tt>) · &tau; </pre>
 <code style="width:20%;display:inline-block;vertical-align:middle">
     match <u>v</u> with
        <dfn>p<sub>&tau;</sub></dfn> &amp; <u>x</u> &rarrow; …
@@ -480,7 +482,7 @@ nodes in special variables
 </div>
 <div class="sws-slide">
   <h1>Some operators</h1>
-  <pre>
+  <pre style="margin-left:1em;">
     v, v' &rleadsto;<sup>cons,</sup> (v, v') <br/>
     v, <tt>`nil</tt> &rleadsto;<sup>snoc</sup> (v, <tt>`nil</tt>)<br/>
     v, (v',v'') &rleadsto;<sup>snoc</sup> (v', snoc(v,v''))<br/>
@@ -490,19 +492,18 @@ nodes in special variables
   <u>accumulates</u> that node in sequence (in reverse or in-order).</p>
 </div>
 <div class="sws-slide">
-<h1>Pattern matching semantics (v/p)</h1>
+<h1>Pattern matching semantics (simplified)</h1>
 <pre style="text-align:center;">
-  &sigma;; &delta; &vdash; v / p &rleadsto; &gamma;, &sigma;'
+  &sigma; &vdash; v / p &rleadsto; &gamma;, &sigma;'
 </pre>
 <p style="font-size:90%"><dfn><u>&sigma;</u>, <u>&sigma;'</u></dfn>: mapping from accumulators to
-  values<br/>
+  values. &nbsp;  Initially: <dfn> &sigma; = { ẋ &mapsto; Init(ẋ) | ẋ &in; p }</dfn><br/>
   <dfn><u>v</u></dfn>: input value<br/>
   <dfn><u>p</u></dfn>: pattern<br/>
   <dfn><u>&gamma;</u></dfn>: mapping from capture variables to
   values<br/>
-  <dfn><u>&delta;</u></dfn>: current context
 </p>
-<div style="padding:0em 1em 0em; text-align:justify;font-size:85%;background:white;">
+<div style="padding:0em 1em 0em; text-align:justify;background:white;">
   <div class="infer">
     <span> v &in; &lbrack; t &rbrack;</span>
     <span>&sigma;; &delta; &vdash; v / t &rleadsto; &emptyset;,
@@ -511,28 +512,29 @@ nodes in special variables
 
   <div class="infer">
     <span></span>
-    <span>&sigma;; &delta; &vdash; v / ẋ &rleadsto; &emptyset;,
-      &sigma;[ ẋ := Op(ẋ) (v<sub>&delta;</sub>, &sigma;(ẋ)) ]</span>
+    <span>&sigma; &vdash; v / ẋ &rleadsto; &emptyset;,
+      &sigma;[ ẋ := Op(ẋ) (v, &sigma;(ẋ)) ]</span>
   </div><span>(acc)</span>
 
   <div class="infer">
     <span></span>
-    <span>&sigma;; &delta; &vdash; v / x &rleadsto; { x &mapsto; v },
+    <span>&sigma; &vdash; v / x &rleadsto; { x &mapsto; v },
       &sigma;</span>
   </div><span>(var)</span>
 
   <div class="infer">
-    <span>&sigma;; &left;v · &delta; &vdash; (fst v)/p<sub>1</sub>
+    <span>&sigma; &vdash; (fst v)/p<sub>1</sub>
     &rleadsto; &gamma;<sub>1</sub>, &sigma;' </span>
-    <span>&sigma;'; &right;v · &delta; &vdash; (snd v)/p<sub>2</sub> 
+    <span>&sigma;' &vdash; (snd v)/p<sub>2</sub> 
       &rleadsto; &gamma;<sub>2</sub>, &sigma;''
     </span>
-    <span>&sigma;; &delta; &vdash; v /
+    <span>&sigma; &vdash; v /
       (p<sub>1</sub>, p<sub>2</sub>)  &rleadsto;
       &gamma;<sub>1</sub>&cup; &gamma;<sub>2</sub>,
       &sigma;''</span>
   </div><span>(pair)</span>  <span class="fill"></span>
-<span>… and some other rules for alternation, failure, recursion, <i>etc.</i></span>
+<span style="position:relative;top:-1em;">Remember, if <dfn>v ≡ (v1,v2)<sub>&delta;</sub></dfn> then <dfn><tt>fst v</tt> ≡ v<sub>1 &left;v · &delta;</sub></dfn> and <dfn><tt>snd v</tt> ≡ v<sub>2 &right;v · &delta;</sub></dfn><br/>
+(some other rules for alternation, failure, recursion, <i>etc.</i>)</span>
 </div>
 </div>
 <div class="sws-slide">
@@ -564,25 +566,13 @@ which is not a type.</p>
 </div>
 <div class="sws-slide">
   <h1>Results</h1>
-<p>Zippers (in values, types, patterns) are orthogonal to the rest of the language</p>
+<p>Zippers (in values, types, patterns) are a conservative extension</p>
 <ul>
   <li><u>Subtyping and typechecking</u> are extended straightforwardly</li>
   <li>Typing of patterns introduces <u>sound approximations</u> only for accumulators</li>
   <li>Provided the operators are sound, the whole language remains <u>type-safe</u></li>
 </ul>
 </div>
-<div class="sws-slide">
-  <h1>From zippers to XPath</h1>
-  <p>We use  <u>regular expressions</u> over basic &left;/&right; zippers to encode XPath</p>
-<code style="width:50%;float:left;">   <![CDATA[<a>[ <b>[
-          <c>[]
-          <d>[]
-          <e>[ <f> [] ]
-        ]
-   ]]]>
-</code><img style="width:17.5%;" src="ex_ntree.svg" alt="ex_ntree" /><br/>
-<p class="sws-pause"><img style="margin-top:-1em;margin-left:5%;width:85%;" src="rb_tree.svg" alt="rb_tree"/></p>
-</div>
 <div class="sws-slide">
 <h1>Downward XPath axes</h1>
 <pre style="background:white">     <tt>self ::</tt> t ≡    (ẋ <tt>&amp;</tt> t | _ )<sub>&ztop;</sub>                                (Init(ẋ) = [], Op(ẋ) = <tt>snoc</tt>)
@@ -597,7 +587,7 @@ which is not a type.</p>
 </code>
 
 <pre class="sws-pause">
-     <tt>descendant-or-self::</tt> t ≡   X ≡ ((ẋ <tt>&amp;</tt> t | _ ) <tt> &amp; &lt;_&gt;[</tt> X <tt>* ]</tt>)<sub>&ztop;</sub>
+     <tt>descendant-or-self::</tt> t ≡   X ≡ ((ẋ <tt>&amp;</tt> t | _ ) <tt> &amp; </tt> (<tt>&lt;_&gt;[</tt> X <tt>* ]</tt>)<sub>&ztop;</sub> | _ )
 
      <tt>descendant</tt> :: t ≡ <tt>&lt;_&gt;[ (descendant-or-self::</tt>t<tt>)* ]</tt><sub>&ztop;</sub>
 </pre>
@@ -641,6 +631,19 @@ which is not a type.</p>
 </script>
 -->
 </div>
+<div class="sws-slide">
+  <h1>Binary-tree encoding</h1>
+  <p>We use  <u>regular expressions</u> over basic &left;/&right; zippers to encode upward XPath</p>
+<code style="width:50%;float:left;">   <![CDATA[<a>[ <b>[
+          <c>[]
+          <d>[]
+          <e>[ <f> [] ]
+        ]
+   ]]]>
+</code><img style="width:17.5%;" src="ex_ntree.svg" alt="ex_ntree" /><br/>
+<p class="sws-pause"><img style="margin-top:-1em;margin-left:5%;width:85%;" src="rb_tree.svg" alt="rb_tree"/></p>
+</div>
+
 <div class="sws-slide">
 <h1>Upward XPath axes</h1>
 <div style="position:absolute; width:80%; left:10%;top:15%">
@@ -660,9 +663,9 @@ which is not a type.</p>
 </pre>
 <pre style="position:absolute;bottom:5%;z-index:2;">
 
-                               <span class="sws-onframe-1" style="font-size:110%;color:#1fb01b;">⬆</span> <span class="sws-onframe-2" style="font-size:110%;color:#1fb01b;">⬆</span>     <span class="sws-onframe-3" style="font-size:110%;color:#1fb01b;">⬆</span>     <span class="sws-onframe-4" style="font-size:110%;color:#1fb01b;">⬆</span>
+                                  <span class="sws-onframe-1" style="font-size:110%;color:#1fb01b;">⬆</span> <span class="sws-onframe-2" style="font-size:110%;color:#1fb01b;">⬆</span>     <span class="sws-onframe-3" style="font-size:110%;color:#1fb01b;">⬆</span>     <span class="sws-onframe-4" style="font-size:110%;color:#1fb01b;">⬆</span>
 
-                                          <span style="color:#1fb01b;border-color:#1fb01b;border-top-style:dashed;border-top-width:3pt;position:relative;top:0.5em;">         parent         </span>
+                                           <span class="sws-onframe-5" style="color:#1fb01b;border-color:#1fb01b;border-top-style:dashed;border-top-width:3pt;position:relative;top:0.5em;">         parent         </span>
 
 
 
@@ -672,21 +675,26 @@ which is not a type.</p>
   <h1>Other results</h1>
 <ul>
   <li>Encoding of paths is compositional</li>
-  <li>Once we have path, translation from XQuery to &cduce; is straightforward</li>
+  <li>Once we have paths, translation from XQuery to &cduce; is straightforward</li>
   <li>We also give a direct typing algorithm for XQuery 3.0 rather than typing the translation to &cduce;</li>
+  <li>Accumulators in patterns allow to encode other XPath constructs (<tt>count()</tt>, <tt>position()</tt>, …)</li>
+</ul>
+<p>Still some problems in the on-going implementation</p>
+<ul>
+  <li>Nice syntax to expose paths + patterns to the programmer</li>
+  <li>Pretty printing of error messages: décompilation of regular expressions</li>
 </ul>
 </div>
 <div class="sws-slide">
 <h1>Conclusion, thoughts and future work</h1>
 <ul>
-  <li>Adding path expressions to a functional language such as &cduce; is possible </li>
-  <li>Semantic subtyping and regular expression types play nicely with zippers</li>
-  <li>In terms of language design, exposing directly zippers patterns to the programmer is a big no-no</li>
-  <li>Can also be applied to XSLT</li>
-  <li>Implementation on-going (including a &cduce; to javascript backend)</li>
-  <li>Extend the approach to Json (google ``path language for json''), i.e. generalise from products to extensible records</li>
+  <li style="padding-top:0.5em;">Adding path expressions to a functional language such as &cduce; is possible </li>
+  <li style="padding-top:0.5em;">Semantic subtyping and regular expression types play nicely with zippers</li>
+  <li style="padding-top:0.5em;">In terms of language design, exposing directly zippers to the programmer (still need work at the syntax level)</li>
+  <li style="padding-top:0.5em;">Implementation on-going (including a &cduce; to javascript backend)</li>
+  <li style="padding-top:0.5em;">Extend the approach to Json (google ``path language for json´´), i.e. generalize from products to extensible records</li>
 </ul>
-
+<p class="sws-pause" style="text-align:center;"><b><u>Thank you!</u></b></p>
 </div>
 
   </body>