<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body><div>Perhaps this is the wrong place to ask, but I am wondering if there is something I can read about why Agda does the universe hierarchy, which even with syntactic sugar, is a little bit tiring to use—as opposed to the approach used in Nuprl, and soon (I think), in Coq? My assumption has always been that nobody had got around to doing it, which is fine since it is difficult to implement, but I wanted to be sure I wasn't missing more foundational.<br></div>
<div>&nbsp;</div>
<div>Thanks very much,<br></div>
<div>Jon</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div>On Wed, Nov 26, 2014, at 07:07 AM, Jesper Cockx wrote:<br></div>
<blockquote type="cite"><div dir="ltr"><div>I think this would be a very nice thing to reduce the verbosity of using universe polymorphism. A few remarks:<br></div>
<div>&nbsp;</div>
<div>- If I understand correctly, a telsyntax statement would always contain exactly one visible argument plus any number of hidden and instance arguments before and after? This looks very similar to the idea Andreas proposed in Tallinn for changing the <i>internal</i> representation of hidden function types. So your proposal could be seen as a concrete syntax for this new internal representation.<br></div>
<div>&nbsp;</div>
<div>- Do you want (A B C : Type) to be translated to  {i : Level} (A : Set i) {j : Level} (B : Set j) {k : Level} (C : Set k), or to  {i j k : Level} (A : Set i) (B : Set j) (C : Set k)? I usually write the latter, though the former is more consistent with the idea of grouping hidden arguments with a visible argument.<br></div>
<div>&nbsp;</div>
<div>- There is a way to make sense of having Type and Group as the return type of a function: "f : ... -&gt; Type" just stands for "f : ... -&gt; Set _", and "g : ... -&gt; Group0" stands for "g : ... -&gt; Set", but using g also brings a term of type "GroupStr (g ...)" into scope for instance resolution. Then you could make (A : Set) a synonym for {i : Level} (A : Set i) instead of (A : Set0), so that 
functions that look non-level-polymorphic can actually be used at any 
level.<br></div>
<div>&nbsp;</div>
<div>Cheers,<br></div>
<div>Jesper<br></div>
</div>
<div><div>&nbsp;</div>
<div defang_data-gmailquote="yes"><div>On Wed, Nov 26, 2014 at 2:33 PM, Guillaume Brunerie <span dir="ltr">&lt;<a href="mailto:guillaume.brunerie@gmail.com" target="_blank">guillaume.brunerie@gmail.com</a>&gt;</span> wrote:<br></div>
<blockquote style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex" defang_data-gmailquote="yes">Hello all,<br> <br>
As is well known, it’s currently a bit annoying to use universe<br>
polymorphism in Agda because instead of writing<br> <br>
&nbsp; f : (A B C : Type) -&gt; …<br> <br>
you have to write<br> <br>
&nbsp; f : {i j k : Level} (A : Set i) (B : Set j) (C : Set k) -&gt; …<br> <br>
Would it be a good idea to make the first one a syntactic sugar for<br>
the second one?<br>
I’m thinking about adding a "telsyntax" keyword, such that you can<br>
write for instance<br> <br>
&nbsp; telsyntax {i : Level} (X : Set i) = (X : Type)<br> <br>
and then (A B C : Type) (in a telescope) would be automatically translated into<br> <br>
&nbsp; {i : Level} (A : Set i) {j : Level} (B : Set j) {k : Level} (C : Set k)<br> <br>
And this is not just about universe management, but it would also be<br>
very useful when using instance arguments. For instance if a group is<br>
a type (of level 0, say) with a group structure (which will be found<br>
by instance search), and you want to write a function taking three<br>
groups as arguments you have to write<br> <br>
&nbsp; g : (G H K : Set) {{_ : GroupStr G}} {{_ : GroupStr H}} {{_ :<br>
GroupStr K}} -&gt; …<br> <br>
But you could say instead<br> <br>
&nbsp; telsyntax (G : Set) {{_ : GroupStr G}} = (G : Group0)<br>
&nbsp; g : (G H K : Group0) -&gt; …<br> <br>
And of course you can combine the two, if groups can be at any<br>
universe level then the following:<br> <br>
&nbsp; telsyntax {i : Level} (G : Set i) {{_ : GroupStr G}} = (G : Group)<br>
&nbsp; g : (G H K : Group) -&gt; …<br> <br>
would be a shorthand for<br> <br>
&nbsp; g : {i j k : Level} {G : Set i} {H : Set j} {K : Set k} {{_ :<br>
GroupStr G}} {{_ : GroupStr H}} {{_ : GroupStr K}} -&gt; …<br> <br>
which is much less readable and annoying to write.<br> <br>
One drawback (in the case of universe levels) is that you don’t have<br>
access to the level anymore, but I don’t think that would really be a<br>
problem, and you still can make the levels explicit if you need to.<br>
Another drawback is that when writing (A : Type) or (G : Group) in a<br>
telescope, it makes it look like Type and Group are types, but it’s<br>
not the case so it could be confusing (for instance you can’t end a<br>
function with "-&gt; Group"). If that’s indeed too confusing, maybe we<br>
could use a different notation than a colon, to make it clear that<br>
it’s just syntactic sugar (on the other hand, it looks nice with a<br>
colon).<br> <br>
What do you think?<br> <br>
Guillaume<br>
_______________________________________________<br>
Agda mailing list<br> <a href="mailto:Agda@lists.chalmers.se">Agda@lists.chalmers.se</a><br> <a href="https://lists.chalmers.se/mailman/listinfo/agda" target="_blank">https://lists.chalmers.se/mailman/listinfo/agda</a></blockquote></div>
<div>&nbsp;</div>
</div>
<div><u>_______________________________________________</u><br></div>
<div>Agda mailing list<br></div>
<div><a href="mailto:Agda@lists.chalmers.se">Agda@lists.chalmers.se</a><br></div>
<div><a href="https://lists.chalmers.se/mailman/listinfo/agda">https://lists.chalmers.se/mailman/listinfo/agda</a><br></div>
</blockquote><div>&nbsp;</div>
</body>
</html>