<?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: Implementation of Dijkstra&#8217;s Single-Source Shortest-Paths in JavaScript</title>
	<atom:link href="http://wyattbaldwin.com/2008/08/19/implementation-of-dijkstras-single-source-shortest-paths-in-javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://wyattbaldwin.com/2008/08/19/implementation-of-dijkstras-single-source-shortest-paths-in-javascript/</link>
	<description></description>
	<lastBuildDate>Tue, 17 Nov 2009 13:46:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Peter Bodo</title>
		<link>http://wyattbaldwin.com/2008/08/19/implementation-of-dijkstras-single-source-shortest-paths-in-javascript/comment-page-1/#comment-7406</link>
		<dc:creator>Peter Bodo</dc:creator>
		<pubDate>Tue, 17 Nov 2009 13:46:32 +0000</pubDate>
		<guid isPermaLink="false">http://wyattbaldwin.com/?p=223#comment-7406</guid>
		<description>Mystery is solved: I needed to add &quot;return&quot; within the sorter function...
FF was smarter, for sure :)</description>
		<content:encoded><![CDATA[<p>Mystery is solved: I needed to add &#8220;return&#8221; within the sorter function&#8230;<br />
FF was smarter, for sure <img src='http://wyattbaldwin.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Bodo</title>
		<link>http://wyattbaldwin.com/2008/08/19/implementation-of-dijkstras-single-source-shortest-paths-in-javascript/comment-page-1/#comment-7404</link>
		<dc:creator>Peter Bodo</dc:creator>
		<pubDate>Tue, 17 Nov 2009 13:20:26 +0000</pubDate>
		<guid isPermaLink="false">http://wyattbaldwin.com/?p=223#comment-7404</guid>
		<description>Hi Wyatt!

Thanks for the excellent script. I am also applying it to a bike route planner in Budapest, and in normal browsers it works really fine, however in IE8 it throws the following error, which I could not solve.

Üzenet: A várt elem szám (number expected)
Sor: 58
Karakter: 7
Kód: 0
URI: dijkstra.js

This is the line:
      key = keys.sort(sorter)[0];

I hope you will have some ideas, because I am getting mad :)

Thanks again for the nice work.
Cheers,
Peter</description>
		<content:encoded><![CDATA[<p>Hi Wyatt!</p>
<p>Thanks for the excellent script. I am also applying it to a bike route planner in Budapest, and in normal browsers it works really fine, however in IE8 it throws the following error, which I could not solve.</p>
<p>Üzenet: A várt elem szám (number expected)<br />
Sor: 58<br />
Karakter: 7<br />
Kód: 0<br />
URI: dijkstra.js</p>
<p>This is the line:<br />
      key = keys.sort(sorter)[0];</p>
<p>I hope you will have some ideas, because I am getting mad <img src='http://wyattbaldwin.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thanks again for the nice work.<br />
Cheers,<br />
Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Huntley</title>
		<link>http://wyattbaldwin.com/2008/08/19/implementation-of-dijkstras-single-source-shortest-paths-in-javascript/comment-page-1/#comment-677</link>
		<dc:creator>Chris Huntley</dc:creator>
		<pubDate>Sun, 24 Aug 2008 04:48:19 +0000</pubDate>
		<guid isPermaLink="false">http://wyattbaldwin.com/?p=223#comment-677</guid>
		<description>If performance becomes an issue you may want to replace your generic sort routine (qsort?) with a d-heap. It&#039;s been 15 years since I last coded a heap from scratch, but I recall that even in C binary heaps aren&#039;t too bad to implement and O(1) insertions are pretty darn near impossible to beat, especially for building up big search trees one node at a time like A* does.</description>
		<content:encoded><![CDATA[<p>If performance becomes an issue you may want to replace your generic sort routine (qsort?) with a d-heap. It&#8217;s been 15 years since I last coded a heap from scratch, but I recall that even in C binary heaps aren&#8217;t too bad to implement and O(1) insertions are pretty darn near impossible to beat, especially for building up big search trees one node at a time like A* does.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
