<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Simulated annealing in OCaml</title>
	<atom:link href="http://khigia.wordpress.com/2008/06/11/simulated-annealing-in-ocaml/feed/" rel="self" type="application/rss+xml" />
	<link>http://khigia.wordpress.com/2008/06/11/simulated-annealing-in-ocaml/</link>
	<description>where even the subtitle doesn't help to understand the title</description>
	<lastBuildDate>Fri, 03 Jul 2009 05:36:41 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: khigia</title>
		<link>http://khigia.wordpress.com/2008/06/11/simulated-annealing-in-ocaml/#comment-1090</link>
		<dc:creator>khigia</dc:creator>
		<pubDate>Sat, 10 Jan 2009 03:52:33 +0000</pubDate>
		<guid isPermaLink="false">http://khigia.wordpress.com/?p=98#comment-1090</guid>
		<description>haven&#039;t read the complete article, but this seems to be an interesting topic (simulated annealing) for people reading this post ;)

http://ocamlnews.blogspot.com/2009/01/solving-traveling-salesman-problem.html</description>
		<content:encoded><![CDATA[<p>haven&#8217;t read the complete article, but this seems to be an interesting topic (simulated annealing) for people reading this post <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a href="http://ocamlnews.blogspot.com/2009/01/solving-traveling-salesman-problem.html" rel="nofollow">http://ocamlnews.blogspot.com/2009/01/solving-traveling-salesman-problem.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Recent Links Tagged With "ocaml" - JabberTags</title>
		<link>http://khigia.wordpress.com/2008/06/11/simulated-annealing-in-ocaml/#comment-1086</link>
		<dc:creator>Recent Links Tagged With "ocaml" - JabberTags</dc:creator>
		<pubDate>Mon, 13 Oct 2008 15:49:29 +0000</pubDate>
		<guid isPermaLink="false">http://khigia.wordpress.com/?p=98#comment-1086</guid>
		<description>[...] public links &gt;&gt; ocaml   Simulated annealing in OCaml Saved by daevu on Sun 12-10-2008   Ocaml Sockets Saved by cooliskillingus on Fri 03-10-2008   [...]</description>
		<content:encoded><![CDATA[<p>[...] public links &gt;&gt; ocaml   Simulated annealing in OCaml Saved by daevu on Sun 12-10-2008   Ocaml Sockets Saved by cooliskillingus on Fri 03-10-2008   [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Montgomery</title>
		<link>http://khigia.wordpress.com/2008/06/11/simulated-annealing-in-ocaml/#comment-1072</link>
		<dc:creator>John Montgomery</dc:creator>
		<pubDate>Wed, 18 Jun 2008 12:07:35 +0000</pubDate>
		<guid isPermaLink="false">http://khigia.wordpress.com/?p=98#comment-1072</guid>
		<description>It&#039;s always tricky knowing what the stopping conditions should be.  So often it seems like you just a few more iterations make the difference.  Plus tuning the annealing parameters sometimes feels like you need another optimisation algorithm just for that!</description>
		<content:encoded><![CDATA[<p>It&#8217;s always tricky knowing what the stopping conditions should be.  So often it seems like you just a few more iterations make the difference.  Plus tuning the annealing parameters sometimes feels like you need another optimisation algorithm just for that!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: khigia</title>
		<link>http://khigia.wordpress.com/2008/06/11/simulated-annealing-in-ocaml/#comment-1071</link>
		<dc:creator>khigia</dc:creator>
		<pubDate>Thu, 12 Jun 2008 12:34:38 +0000</pubDate>
		<guid isPermaLink="false">http://khigia.wordpress.com/?p=98#comment-1071</guid>
		<description>Thanks John, your code/explanation was in fact really useful!

The routes I&#039;m optimizing are of length 60 on average, but the length distribution is quite linear ranging from 5 &#039;places&#039; up to 180 &#039;places&#039;.

That&#039;s a good question you asked ... I&#039;m still struggling to know when we could decide to stop the search for better solutions; maybe the length could be taken into account for that purpose...</description>
		<content:encoded><![CDATA[<p>Thanks John, your code/explanation was in fact really useful!</p>
<p>The routes I&#8217;m optimizing are of length 60 on average, but the length distribution is quite linear ranging from 5 &#8216;places&#8217; up to 180 &#8216;places&#8217;.</p>
<p>That&#8217;s a good question you asked &#8230; I&#8217;m still struggling to know when we could decide to stop the search for better solutions; maybe the length could be taken into account for that purpose&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Montgomery</title>
		<link>http://khigia.wordpress.com/2008/06/11/simulated-annealing-in-ocaml/#comment-1070</link>
		<dc:creator>John Montgomery</dc:creator>
		<pubDate>Thu, 12 Jun 2008 08:21:07 +0000</pubDate>
		<guid isPermaLink="false">http://khigia.wordpress.com/?p=98#comment-1070</guid>
		<description>Hey, glad to hear you&#039;ve found a use for my simulated annealing code.

So how big are the routes you&#039;re optimising?</description>
		<content:encoded><![CDATA[<p>Hey, glad to hear you&#8217;ve found a use for my simulated annealing code.</p>
<p>So how big are the routes you&#8217;re optimising?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
