<div dir="ltr"><div>Yes, this restriction is to address the incompatibility of the termination checker with univalence. As a side-effect, many functions on universes no longer pass the termination check, for example (by Andreas):<br>

<pre>T : Bool -&gt; Set
T true = Nat
T false = List Nat

f : (x : Bool) -&gt; T x -&gt; Set
f true zero = Nat
f true (suc x) = f true x
f false nil = Nat
f false (x :: xs) = f false xs</pre></div>For the moment, such definitions have to be unfolded manually:<br><pre>f : (x : Bool) -&gt; T x -&gt; Set
f true = ftrue
  where
    ftrue : Nat -&gt; Set
    ftrue zero = Nat
    ftrue (suc x) = ftrue x
f false = ffalse
  where
    ffalse : List Nat -&gt; Set
    ffalse nil = Nat
    ffalse (x :: xs) = ffalse xs</pre><div><div>However, due to a mistake I made in the fix, the termination checker a complains much more than necessary when --without-K is enabled. This has now been fixed in the development version: <a href="https://code.google.com/p/agda/issues/detail?id=1214&amp;can=1">https://code.google.com/p/agda/issues/detail?id=1214&amp;can=1</a>. I&#39;ll check the other errors in Nils&#39; library later. If you have any specific examples that you think should be accepted, please send them to me and I&#39;ll see what I can do.<br>

<br></div><div>Jesper<br></div></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Fri, Jun 27, 2014 at 6:52 AM, Dan Licata <span dir="ltr">&lt;<a href="mailto:dlicata@wesleyan.edu" target="_blank">dlicata@wesleyan.edu</a>&gt;</span> 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">Is this restriction addressing the &quot;termination checker + propositional univalence inconsistency&quot; issue, or something else?<span class="HOEnZb"><font color="#888888"><div>

<br></div><div>-Dan</div></font></span><div><div class="h5"><div><br><div><div>On Jun 21, 2014, at 1:44 PM, Jesper Cockx &lt;<a href="mailto:Jesper@sikanda.be" target="_blank">Jesper@sikanda.be</a>&gt; wrote:</div><br><blockquote type="cite">

<div dir="ltr"><div><div><div><div>I suppose by &#39;people working on this issue&#39;, you mean Andreas and me? I&#39;m not currently working on this problem, but I could be convinced to if the current hack turns out to be too inconvenient. However, I have two problems before I can start working on a fix:<br>




<br></div>- The current theory of pattern matching doesn&#39;t allow induction on &#39;deep&#39; arguments, i.e. ones that only get an inductive type after pattern matching on some other arguments. So the theory would have to be extended.<br>



<br></div>- I don&#39;t have a lot of experience with the termination checker, so I&#39;m not confident to mess with it. It seems that in order to fix this problem, the termination checker would need some type information, as well as information about the substitutions performed by the previous case splits.<br>



<br></div>If anyone can help me with (one of) these problems, I&#39;d like to work together on it. Otherwise I&#39;ll try to get a better understanding by myself, but then it might take a long time.<br><br></div>Jesper<br>



</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Fri, Jun 20, 2014 at 7:13 PM, Andrés Sicard-Ramírez <span dir="ltr">&lt;<a href="mailto:asr@eafit.edu.co" target="_blank">asr@eafit.edu.co</a>&gt;</span> wrote:<br>



<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote"><div>On 20 June 2014 09:07, Brent Yorgey <span dir="ltr">&lt;<a href="mailto:byorgey@seas.upenn.edu" target="_blank">byorgey@seas.upenn.edu</a>&gt;</span> wrote:<br>





</div><div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div style="overflow:hidden">but is the code I linked now expected to<br>
fail termination checking?</div></blockquote></div></div><br>Using the --without-K option? I don&#39;t know. This is an open issue and<br>people working on this issue know that the current behaviour is too<br>restrictive. I don&#39;t know if they are working in a better solution<br>





right now.<span><font color="#888888"><br><br>-- <br><div dir="ltr">Andrés<br></div>
</font></span></div></div>
<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><br>
<br></blockquote></div><br></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>

</blockquote></div><br></div></div></div></div></blockquote></div><br></div>