<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Coinduction, observationally</title>
	<atom:link href="http://www.e-pig.org/epilogue/?feed=rss2&#038;p=418" rel="self" type="application/rss+xml" />
	<link>http://www.e-pig.org/epilogue/?p=418</link>
	<description>for Epigram</description>
	<lastBuildDate>Sun,  6 Nov 2011 09:25:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Conor</title>
		<link>http://www.e-pig.org/epilogue/?p=418&#038;cpage=1#comment-70947</link>
		<dc:creator>Conor</dc:creator>
		<pubDate>Sun, 18 Apr 2010 10:51:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.e-pig.org/epilogue/?p=418#comment-70947</guid>
		<description>Hi divip. I&#039;m sorry I took my eye off the blog. You seem to have found your way in the end. =&gt; and &amp; are, as you found, just a notational convenience for nondependent special cases of Pi and Sg.</description>
		<content:encoded><![CDATA[<p>Hi divip. I&#8217;m sorry I took my eye off the blog. You seem to have found your way in the end. => and &#038; are, as you found, just a notational convenience for nondependent special cases of Pi and Sg.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: divip</title>
		<link>http://www.e-pig.org/epilogue/?p=418&#038;cpage=1#comment-70938</link>
		<dc:creator>divip</dc:creator>
		<pubDate>Sun, 04 Apr 2010 22:01:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.e-pig.org/epilogue/?p=418#comment-70938</guid>
		<description>Oh. I found the sources in the Agda mailing list archives:
https://lists.chalmers.se/pipermail/agda/2010/001696.html
I apologize for the disturbance.</description>
		<content:encoded><![CDATA[<p>Oh. I found the sources in the Agda mailing list archives:<br />
<a href="https://lists.chalmers.se/pipermail/agda/2010/001696.html" rel="nofollow">https://lists.chalmers.se/pipermail/agda/2010/001696.html</a><br />
I apologize for the disturbance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: divip</title>
		<link>http://www.e-pig.org/epilogue/?p=418&#038;cpage=1#comment-70937</link>
		<dc:creator>divip</dc:creator>
		<pubDate>Sun, 04 Apr 2010 10:13:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.e-pig.org/epilogue/?p=418#comment-70937</guid>
		<description>Now I have 

_=&gt;_ : Ty PROP -&gt; Ty PROP -&gt; Ty PROP
a =&gt; b = `Pi&#039; (`Prf&#039; a) \ _ -&gt; b

_&amp;_ : {k : Sort} -&gt; Ty k -&gt; Ty k -&gt; Ty k
a &amp; b = `Sg&#039; a \ n2 -&gt; b

Still I am not sure that it is right. 
I realised I need a deeper insight...</description>
		<content:encoded><![CDATA[<p>Now I have </p>
<p>_=&gt;_ : Ty PROP -&gt; Ty PROP -&gt; Ty PROP<br />
a =&gt; b = `Pi&#8217; (`Prf&#8217; a) \ _ -&gt; b</p>
<p>_&amp;_ : {k : Sort} -&gt; Ty k -&gt; Ty k -&gt; Ty k<br />
a &amp; b = `Sg&#8217; a \ n2 -&gt; b</p>
<p>Still I am not sure that it is right.<br />
I realised I need a deeper insight&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: divip</title>
		<link>http://www.e-pig.org/epilogue/?p=418&#038;cpage=1#comment-70934</link>
		<dc:creator>divip</dc:creator>
		<pubDate>Fri, 02 Apr 2010 23:57:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.e-pig.org/epilogue/?p=418#comment-70934</guid>
		<description>OK, Maybe I have got it:

_=&gt;_ : Ty PROP -&gt; Ty PROP -&gt; Ty PROP
`0&#039; =&gt; b = `1&#039;    -- is this useful?
`1&#039; =&gt; b = b      -- is this useful?
a =&gt; b = `Pi&#039; (`Prf&#039; a) \ _ -&gt; b

_&amp;_ : {k : Sort} -&gt; Ty k -&gt; Ty k -&gt; Ty k
`0&#039; &amp; _ = `0&#039;       -- is this useful?
`1&#039; &amp; x = x         -- is this useful?
a &amp; b = `Pi&#039; `2&#039; (pp a b)

pp : {X : Set} -&gt; X -&gt; X -&gt; Two -&gt; X
pp a b tt = a
pp a b ff = b</description>
		<content:encoded><![CDATA[<p>OK, Maybe I have got it:</p>
<p>_=&gt;_ : Ty PROP -&gt; Ty PROP -&gt; Ty PROP<br />
`0&#8242; =&gt; b = `1&#8242;    &#8212; is this useful?<br />
`1&#8242; =&gt; b = b      &#8212; is this useful?<br />
a =&gt; b = `Pi&#8217; (`Prf&#8217; a) \ _ -&gt; b</p>
<p>_&amp;_ : {k : Sort} -&gt; Ty k -&gt; Ty k -&gt; Ty k<br />
`0&#8242; &amp; _ = `0&#8242;       &#8212; is this useful?<br />
`1&#8242; &amp; x = x         &#8212; is this useful?<br />
a &amp; b = `Pi&#8217; `2&#8242; (pp a b)</p>
<p>pp : {X : Set} -&gt; X -&gt; X -&gt; Two -&gt; X<br />
pp a b tt = a<br />
pp a b ff = b</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: divip</title>
		<link>http://www.e-pig.org/epilogue/?p=418&#038;cpage=1#comment-70933</link>
		<dc:creator>divip</dc:creator>
		<pubDate>Fri, 02 Apr 2010 19:14:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.e-pig.org/epilogue/?p=418#comment-70933</guid>
		<description>What does 
 `Sg’ Sl (`INu’ Sl Cl Rl nl) &amp; `Sg’ Sr (`INu’ Sr Cr Rr nr) 
mean?
I can not define _=&gt;_ and _&amp;_.
For _=&gt;_ I got to
 
_=&gt;_ : Ty PROP -&gt; Ty PROP -&gt; Ty PROP
`0&#039; =&gt; b = `1&#039;
`1&#039; =&gt; b = b
`Pi&#039; S T =&gt; b = {!!}
`Sg&#039; S T =&gt; b = {!!}
`INu&#039; S C R n s =&gt; b = {!!}</description>
		<content:encoded><![CDATA[<p>What does<br />
 `Sg’ Sl (`INu’ Sl Cl Rl nl) &amp; `Sg’ Sr (`INu’ Sr Cr Rr nr)<br />
mean?<br />
I can not define _=&gt;_ and _&amp;_.<br />
For _=&gt;_ I got to</p>
<p>_=&gt;_ : Ty PROP -&gt; Ty PROP -&gt; Ty PROP<br />
`0&#8242; =&gt; b = `1&#8242;<br />
`1&#8242; =&gt; b = b<br />
`Pi&#8217; S T =&gt; b = {!!}<br />
`Sg&#8217; S T =&gt; b = {!!}<br />
`INu&#8217; S C R n s =&gt; b = {!!}</p>
]]></content:encoded>
	</item>
</channel>
</rss>
