<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Sort of a Protest Blog &#187; infinite loop</title>
	<atom:link href="http://www.soapb.com/tag/infinite-loop/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.soapb.com</link>
	<description>Sort of a Prostest Blog - Solving world issues and the personal things.</description>
	<lastBuildDate>Thu, 15 Apr 2010 08:47:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Faster Random Maps</title>
		<link>http://www.soapb.com/2008/07/23/faster-random-maps/</link>
		<comments>http://www.soapb.com/2008/07/23/faster-random-maps/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 22:11:51 +0000</pubDate>
		<dc:creator>Anton</dc:creator>
				<category><![CDATA[13th colony]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[infinite loop]]></category>
		<category><![CDATA[perfect maze]]></category>
		<category><![CDATA[random map]]></category>

		<guid isPermaLink="false">http://www.nearfantastica.com/soapb/?p=430</guid>
		<description><![CDATA[Fixed the infinite loop! Hah. Random maps now generate in under 3 seconds. 01-02-03-04-05 &#124; &#124; &#124; 06-07-08-09-10 &#124; &#124; &#124; &#124; 11-12 13-14-15 &#124; &#124; &#124; &#124; &#124; 16-17-18 19-20 &#124; &#124; &#124; 21-22-23-24-25 Array ( [0] => [1] => Array ( [x] => 0 [y] => 0 [exits] => 6, 2 ) [2] [...]]]></description>
			<content:encoded><![CDATA[<p>Fixed the infinite loop! Hah.</p>
<p>Random maps now generate in under 3 seconds.</p>
<pre>01-02-03-04-05
 |     |  |
06-07-08-09-10
 |  |     |  |
11-12 13-14-15
 |  |  |  |  |
16-17-18 19-20
 |        |  |
21-22-23-24-25</pre>
<p><span id="more-430"></span></p>
<pre>
Array
(
    [0] =>
    [1] => Array
        (
            [x] => 0
            [y] => 0
            [exits] => 6, 2
        )

    [2] => Array
        (
            [x] => 0
            [y] => 1
            [exits] => 1, 3
        )

    [3] => Array
        (
            [x] => 0
            [y] => 2
            [exits] => 8, 2, 4
        )

    [4] => Array
        (
            [x] => 0
            [y] => 3
            [exits] => 9, 3, 5
        )

    [5] => Array
        (
            [x] => 0
            [y] => 4
            [exits] => 4
        )

    [6] => Array
        (
            [x] => 1
            [y] => 0
            [exits] => 1, 11, 7
        )

    [7] => Array
        (
            [x] => 1
            [y] => 1
            [exits] => 12, 6, 8
        )

    [8] => Array
        (
            [x] => 1
            [y] => 2
            [exits] => 3, 7, 9
        )

    [9] => Array
        (
            [x] => 1
            [y] => 3
            [exits] => 4, 14, 8, 10
        )

    [10] => Array
        (
            [x] => 1
            [y] => 4
            [exits] => 15, 9
        )

    [11] => Array
        (
            [x] => 2
            [y] => 0
            [exits] => 6, 16, 12
        )

    [12] => Array
        (
            [x] => 2
            [y] => 1
            [exits] => 7, 17, 11
        )

    [13] => Array
        (
            [x] => 2
            [y] => 2
            [exits] => 18, 14
        )

    [14] => Array
        (
            [x] => 2
            [y] => 3
            [exits] => 9, 19, 13, 15
        )

    [15] => Array
        (
            [x] => 2
            [y] => 4
            [exits] => 10, 20, 14
        )

    [16] => Array
        (
            [x] => 3
            [y] => 0
            [exits] => 11, 21, 17
        )

    [17] => Array
        (
            [x] => 3
            [y] => 1
            [exits] => 12, 16, 18
        )

    [18] => Array
        (
            [x] => 3
            [y] => 2
            [exits] => 13, 17
        )

    [19] => Array
        (
            [x] => 3
            [y] => 3
            [exits] => 14, 24, 20
        )

    [20] => Array
        (
            [x] => 3
            [y] => 4
            [exits] => 15, 25, 19
        )

    [21] => Array
        (
            [x] => 4
            [y] => 0
            [exits] => 16, 22
        )

    [22] => Array
        (
            [x] => 4
            [y] => 1
            [exits] => 21, 23
        )

    [23] => Array
        (
            [x] => 4
            [y] => 2
            [exits] => 22, 24
        )

    [24] => Array
        (
            [x] => 4
            [y] => 3
            [exits] => 19, 23, 25
        )

    [25] => Array
        (
            [x] => 4
            [y] => 4
            [exits] => 20, 24
        )

)</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.soapb.com/2008/07/23/faster-random-maps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
