I have heard that the universe inference &amp; checking algorithm Matthieu has implemented for the upcoming version of Coq was based on a (1990s?) paper by Harper et al on universe polymorphism, and from discussions with Bob Harper.  I assume from this, and from what I&#39;ve heard from Bob, that NuPRL, like the upcoming version of Coq, uses inferrered universe levels and the syntax of typical ambiguity, so that the universes mostly happen behind the scenes and are invisible to users.<br><br><div class="gmail_quote">On 12:07pm, Wed, Nov 26, 2014 Liam O&#39;Connor &lt;<a href="mailto:liamoc@cse.unsw.edu.au">liamoc@cse.unsw.edu.au</a>&gt; wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><p>For the record, NuPRL’s approach is summarised here:</p>

<p><a href="http://www.cs.cornell.edu/home/sfa/Nuprl/NuprlPrimitives/Xuniverse_doc.html" target="_blank">http://www.cs.cornell.edu/home/sfa/Nuprl/NuprlPrimitives/Xuniverse_doc.html</a></p>

<p><a href="http://www.cs.cornell.edu/home/sfa/Nuprl/NuprlPrimitives/Xtype_functionality_sequents_doc.html" target="_blank">http://www.cs.cornell.edu/home/sfa/Nuprl/NuprlPrimitives/Xtype_functionality_sequents_doc.html</a></p>

<p>From what I can tell, NuPRLs approach is much the same as Agda, with universe polymorphism and a hierarchy of universes, although it distinguishes between Type and Prop, and from what I can tell it has cumulativity, unlike Agda.</p>

<p>Jon, did you mean “why does Agda not have cumulativity?”</p>

<p></p></div><div></div></div><div style="word-wrap:break-word"><div><div style="font-family:Helvetica,Arial;font-size:13px;color:rgba(0,0,0,1.0);margin:0px;line-height:auto"><br></div> <br> <div><span style="font-family:helvetica,arial;font-size:13px"></span>-- <br>Liam O&#39;Connor<br><span>Sent with Airmail</span></div></div></div><div style="word-wrap:break-word"><div> <br><p style="color:#000">On 27 November 2014 at 3:43:06 am, Jon Sterling (<a href="mailto:jon@jonmsterling.com" target="_blank">jon@jonmsterling.com</a>) wrote:</p> <blockquote type="cite"><span><div><div></div><div>





<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&#39;t missing more
foundational.<br></div>
<div> </div>
<div>Thanks very much,<br></div>
<div>Jon</div>
<div> </div>
<div> </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> </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> </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> </div>
<div>- There is a way to make sense of having Type and Group as the
return type of a function: &quot;f : ... -&gt; Type&quot; just stands for &quot;f
: ... -&gt; Set _&quot;, and &quot;g : ... -&gt; Group0&quot; stands for &quot;g : ...
-&gt; Set&quot;, but using g also brings a term of type &quot;GroupStr (g
...)&quot; 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> </div>
<div>Cheers,<br></div>
<div>Jesper<br></div>
</div>
<div>
<div> </div>
<div>
<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">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>
  f : (A B C : Type) -&gt; …<br>
<br>
you have to write<br>
<br>
  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 &quot;telsyntax&quot; keyword, such that you
can<br>
write for instance<br>
<br>
  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>
  {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>
  g : (G H K : Set) {{_ : GroupStr G}} {{_ : GroupStr H}} {{_
:<br>
GroupStr K}} -&gt; …<br>
<br>
But you could say instead<br>
<br>
  telsyntax (G : Set) {{_ : GroupStr G}} = (G : Group0)<br>
  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>
  telsyntax {i : Level} (G : Set i) {{_ : GroupStr G}} = (G :
Group)<br>
  g : (G H K : Group) -&gt; …<br>
<br>
would be a shorthand for<br>
<br>
  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 &quot;-&gt; Group&quot;). 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" target="_blank">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> </div>
</div>
<div>
<u>_______________________________________________</u><br></div>
<div>Agda mailing list<br></div>
<div><a href="mailto:Agda@lists.chalmers.se" target="_blank">Agda@lists.chalmers.se</a><br></div>
<div><a href="https://lists.chalmers.se/mailman/listinfo/agda" target="_blank">https://lists.chalmers.se/mailman/listinfo/agda</a><br>
</div>
</blockquote>
<div> </div>


_______________________________________________
<br>Agda mailing list
<br><a href="mailto:Agda@lists.chalmers.se" target="_blank">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>
<br></div></div></span></blockquote></div></div>______________________________<u></u>_________________<br>
Agda mailing list<br>
<a href="mailto:Agda@lists.chalmers.se" target="_blank">Agda@lists.chalmers.se</a><br>
<a href="https://lists.chalmers.se/mailman/listinfo/agda" target="_blank">https://lists.chalmers.se/<u></u>mailman/listinfo/agda</a><br>
</blockquote></div>