<html><body><div style="color:#000; background-color:#fff; font-family:arial, helvetica, sans-serif;font-size:10pt"><div><div><span>If you try to write fold for CN, and then try to define _+_ as a fold in the usual way, you'll fail right away. If you try to patch it up, you either get the same error, or you get a Set-omega error. Probably nothing you can do about this, tho.</span></div><div style="background-color: transparent; "><br></div><div style="background-color: transparent; "><div style="background-color: transparent; ">fold : {A : Set} â†’ A â†’ (A â†’ A) â†’ Câ„• â†’ A</div><div style="background-color: transparent; ">fold z s n = n z s</div><div style="background-color: transparent; "><br></div><div style="background-color: transparent; ">suc : Câ„• â†’ Câ„•</div><div style="background-color: transparent; ">suc n z s = s (n z s)</div><div style="background-color: transparent; "><br></div><div style="background-color: transparent; ">_+′_ :
 Câ„• â†’ Câ„• â†’ Câ„•</div><div style="background-color: transparent; ">m +′ n = fold n suc m</div><div style="background-color: transparent; "><br></div><div style="background-color: transparent; ">yields a type error because suc is obviously the wrong type. I'm not sure there's any way to translate it naturally into this form. Certainly it would be lovely if you could: you could implement a language without having to deal with inductive types ever. But levels and such.</div></div><div></div><div>&nbsp;</div><div>- darryl</div></div>  <div style="font-family: arial, helvetica, sans-serif; font-size: 10pt; "> <div style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; "> <div dir="ltr"> <hr size="1">  <font size="2" face="Arial"> <b><span style="font-weight:bold;">From:</span></b> Nils Anders Danielsson &lt;nad@cse.gu.se&gt;<br> <b><span style="font-weight: bold;">To:</span></b> Darryl McAdams &lt;psygnisfive@yahoo.com&gt;
 <br><b><span style="font-weight: bold;">Cc:</span></b> agda list &lt;agda@lists.chalmers.se&gt; <br> <b><span style="font-weight: bold;">Sent:</span></b> Friday, June 28, 2013 5:28 AM<br> <b><span style="font-weight: bold;">Subject:</span></b> Re: [Agda] More universe polymorphism<br> </font> </div> <div class="y_msg_container"><br>On 2013-06-28 01:09, Darryl McAdams wrote:<br>&gt; I've certainly run into issues with levels. A good example is an<br>&gt; implementation of Scott/Church encodings. You can define the encoding,<br>&gt; but trying to define simple things like addition becomes difficult if<br>&gt; not impossible, from what I can tell.<br><br>Are you referring to some kind of universe-polymorphic Church numerals?<br>The basic encoding works fine (for addition, at least):<br><br>module Church where<br><br>open import Data.Nat using (â„•; zero; suc)<br>open import Relation.Binary.PropositionalEquality<br><br>Câ„• : Set₁<br>Câ„• = {A : Set} â†’
 A â†’ (A â†’ A) â†’ A<br><br>toâ„• : Câ„• â†’ â„•<br>toâ„• n = n zero suc<br><br>fromâ„• : â„• â†’ Câ„•<br>fromâ„• zero&nbsp; &nbsp; = Î» z s â†’ z<br>fromâ„• (suc n) = Î» z s â†’ s (fromâ„• n z s)<br><br>toâ„•-fromâ„• : âˆ€ n â†’ toâ„• (fromâ„• n) â‰¡ n<br>toâ„•-fromâ„• zero&nbsp; &nbsp; = refl<br>toâ„•-fromâ„• (suc n) = cong suc (toâ„•-fromâ„• n)<br><br>_+_ : Câ„• â†’ Câ„• â†’ Câ„•<br>m + n = Î» z s â†’ m (n z s) s<br><br>+-correct : âˆ€ m n â†’ toâ„• (fromâ„• m + fromâ„• n) â‰¡ m Data.Nat.+ n<br>+-correct zero&nbsp; &nbsp; n = toâ„•-fromâ„• n<br>+-correct (suc m) n = cong suc (+-correct m n)<br><br>-- <br>/NAD<br><br><br></div> </div> </div>  </div></body></html>