<?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/"
	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>Nick's Weblog</title>
	<atom:link href="http://nwebb215.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://nwebb215.wordpress.com</link>
	<description>Application Development Environments</description>
	<lastBuildDate>Tue, 05 May 2009 06:25:19 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='nwebb215.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/76ffda196b27d6825ae7106757aff1b2?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Nick's Weblog</title>
		<link>http://nwebb215.wordpress.com</link>
	</image>
			<item>
		<title>String Matching &#8211; Haskell</title>
		<link>http://nwebb215.wordpress.com/2009/05/05/string-matching-haskell/</link>
		<comments>http://nwebb215.wordpress.com/2009/05/05/string-matching-haskell/#comments</comments>
		<pubDate>Tue, 05 May 2009 06:05:54 +0000</pubDate>
		<dc:creator>nwebb215</dc:creator>
				<category><![CDATA[Own Choice Blog]]></category>

		<guid isPermaLink="false">http://nwebb215.wordpress.com/2009/05/05/string-matching-haskell/</guid>
		<description><![CDATA[&#8211; String Matching
&#8211; Directed Studies &#8211; Assignment 3
&#8211; By: Nicholas Webb.
{- Longest Common Subsequence algorithm
 &#8211; s1 subsequence s2  characters in s1 appear in s2 in same order but not necessarily contiguous
    e.g., &#8220;ppl&#8221; subsequence &#8220;popular&#8221;
 &#8211; s1 longestCommentSubsequence s2  length s where s subsequence s1 and s subsequence s2 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nwebb215.wordpress.com&blog=4766521&post=173&subd=nwebb215&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>&#8211; String Matching<br />
&#8211; Directed Studies &#8211; Assignment 3<br />
&#8211; By: Nicholas Webb.</p>
<p>{- Longest Common Subsequence algorithm</p>
<p> &#8211; s1 subsequence s2  characters in s1 appear in s2 in same order but not necessarily contiguous<br />
    e.g., &#8220;ppl&#8221; subsequence &#8220;popular&#8221;</p>
<p> &#8211; s1 longestCommentSubsequence s2  length s where s subsequence s1 and s subsequence s2 and<br />
                                        not exists s&#8217; where s&#8217; subsequence s1 and s&#8217; subsequence s2 and length s&#8217; &gt; length s<br />
-}</p>
<p>&#8211; Task 1: Example LCS Implementations.<br />
&#8211;</p>
<p>&#8211; Definitional implementation.  Very slow due to redundant recursive computations.</p>
<p>lcsLength _ [] = 0<br />
lcsLength [] _ = 0<br />
lcsLength (x:xs) (y:ys)<br />
    | x == y    = 1 + lcsLength xs ys<br />
    | otherwise = max (lcsLength xs (y:ys)) (lcsLength (x:xs) ys)</p>
<p>lcs _ [] = []<br />
lcs [] _ = []<br />
lcs (x:xs) (y:ys)<br />
    | x == y    = x : lcs xs ys<br />
    | otherwise = longest (lcs xs (y:ys)) (lcs (x:xs) ys)<br />
                    where<br />
                        longest s1 s2 = if length s1 &gt; length s2 then s1 else s2</p>
<p>&#8211; Efficient implementation.  Uses a lazily generated table using dynamic programming.</p>
<p>lcsLength&#8217; xs ys = lcsLen (length xs) (length ys)<br />
    where<br />
        lcsLen i j = lcsTable !! i !! j<br />
        lcsTable = [ [lcsEntry i j | j &lt;- [0..]] | i &lt;- [0..] ]</p>
<p>        lcsEntry _ 0 = 0<br />
        lcsEntry 0 _ = 0<br />
        lcsEntry i j<br />
            | x == y    = 1 + lcsLen (i-1) (j-1)<br />
            | otherwise = max (lcsLen i (j-1)) (lcsLen (i-1) j)<br />
            where<br />
                x = xs!!(i-1)<br />
                y = ys!!(j-1)</p>
<p>lcs&#8217; xs ys = lcsLookup (length xs) (length ys)<br />
    where<br />
        lcsLookup i j = lcsTable !! i !! j<br />
        lcsTable = [ [lcsEntry i j | j &lt;- [0..]] | i  length s2 then s1 else s2</p>
<p>&#8211; Task 2: Cost Calculation.<br />
&#8211;</p>
<p>&#8211; Takes the costs associated with a match, a mismatch, and a space, and two characters<br />
&#8211; and returns the appropriate costing for those characters.</p>
<p>costChar :: Int -&gt; Int -&gt; Int -&gt; Char -&gt; Char -&gt; Int<br />
costChar m mm sp c1 c2<br />
	| c1 == c2 			     = m<br />
	| c1 == &#8216;-&#8217; || c2 == &#8216;-&#8217; = sp<br />
	| otherwise 			 = mm</p>
<p>&#8211; Takes the costs associated with a match, a mismatch, and a space, and two strings<br />
&#8211; (known to be of the same length) and returns the cost of that alignment of the strings.</p>
<p>costString :: Int -&gt; Int -&gt; Int -&gt; String -&gt; String -&gt; Int<br />
costString _ _ _ _ [] = 0<br />
costString m mm sp (x:xs) (y:ys) = costChar m mm sp x y + costString m mm sp xs ys</p>
<p>&#8211; Task 3: Function minimaBy<br />
&#8211;</p>
<p>&#8211; Takes a function from arbitrary values to ordinal values and a list of said values and<br />
&#8211; returns the list of all the elements of the original list that are smallest.</p>
<p>minimaBy f l = filter (\x -&gt; (f x) == (foldr1 min (map f l))) l</p>
<p>&#8211; Task 4: attach tails.<br />
&#8211;</p>
<p>&#8211; attachHeads: Attaches new heads (x and y) to each of the lists of pair of lists.</p>
<p>attachHeads :: a -&gt; a -&gt; [([a],[a])] -&gt; [([a],[a])]<br />
attachHeads x y lis = [(x:xs, y:ys) | (xs, ys)  a -&gt; [([a],[a])] -&gt; [([a],[a])]<br />
attachTails x y lis = [(xs++[x], ys++[y]) | (xs, ys)  Int -&gt; Int -&gt; String -&gt; String -&gt; Int<br />
similarity&#8217; m mm sp xs ys = simLookup (length xs) (length ys)<br />
    where<br />
        simLookup i j = simTable !! i !! j<br />
        simTable = [ [ simEntry i j | j &lt;- [0..] ] | i  Int -&gt; Int -&gt; String -&gt; String -&gt; [(String,String)]<br />
optAlign m mm sp xs ys = minimaBy (\a -&gt; costString m mm sp (fst a) (snd a)) (align xs ys)</p>
<p>&#8211; Task 7: Optimal alignment (slow) revisited<br />
&#8211;</p>
<p>&#8211; The behaviours of align and optAlign combined into a single function optAlignment.</p>
<p>optAlignment :: Int -&gt; Int -&gt; Int -&gt; String -&gt; String -&gt; [(String,String)]<br />
optAlignment m mm sp xs ys = minimaBy (\a -&gt; costString m mm sp (fst a) (snd a)) (align xs ys)<br />
	where<br />
		align [ ] [ ] = [("","")]<br />
		align (x:xs) [ ] = attachHeads x &#8216;-&#8217; (align xs [ ])<br />
		align [ ] (y:ys) = attachHeads &#8216;-&#8217; y (align [ ] ys)<br />
		align (x:xs) (y:ys) = 	attachHeads x y (align xs ys) ++<br />
								attachHeads x &#8216;-&#8217; (align xs (y:ys)) ++<br />
								attachHeads &#8216;-&#8217; y (align (x:xs) ys)</p>
<p>&#8211; Task 8: Optimal alignment (faster)<br />
&#8211;</p>
<p>&#8211; optimalAlignment&#8217; a faster version of the definitional solution to alignments. The<br />
&#8211; function uses dynamic programming pattern to build up the alignment strings. </p>
<p>optimalAlignment&#8217; :: Int -&gt; Int -&gt; Int -&gt; String -&gt; String -&gt; [(String,String)]<br />
optimalAlignment&#8217; m mm sp xs ys = opt (length xs) (length ys)<br />
        where<br />
            opt i j = optTable !! i !! j<br />
            optTable = [[ optEntry i j | j &lt;- [0..]] | i  0 &amp;&amp; j == 0  = attachTails x &#8216;-&#8217; (opt (i-1) 0)<br />
                | j &gt; 0 &amp;&amp; i == 0  = attachTails &#8216;-&#8217; y (opt 0 (j-1))<br />
                | otherwise = 	 minimaBy (\a -&gt; costString m mm sp (fst a) (snd a))(<br />
									attachTails x y (opt (i-1) (j-1)) ++<br />
									attachTails x &#8216;-&#8217; (opt (i-1) j) ++<br />
									attachTails &#8216;-&#8217; y (opt i (j-1))<br />
								 )<br />
                    where<br />
                            x = xs !! (i-1)<br />
                            y = ys !! (j-1)</p>
<p>&#8211; Task 9: Optimal alignment (fast)<br />
&#8211;</p>
<p>&#8211; The construction of optimal alignments combined with their cost calculations in a<br />
&#8211; single dynamic programming function optimalAlignment&#8221; that determines optimal alignments.  </p>
<p>optimalAlignment&#8221; :: Int -&gt; Int -&gt; Int -&gt; String -&gt; String -&gt; (Int,[(String,String)])<br />
optimalAlignment&#8221; m mm sp xs ys = opt (length xs) (length ys)<br />
  where<br />
        opt i j = optTable !! i !! j<br />
        optTable = [[ optEntry i j | j &lt;- [0..]] | i  0 &amp;&amp; j == 0  = (fst(opt (i-1) 0) + costChar m mm sp x &#8216;-&#8217;, attachTails x &#8216;-&#8217; (snd(opt (i-1) 0)))<br />
                | j &gt; 0 &amp;&amp; i == 0  = (fst(opt 0 (j-1)) + costChar m mm sp &#8216;-&#8217; y, attachTails &#8216;-&#8217; y (snd(opt 0 (j-1))))<br />
				| otherwise = (\(h:t) -&gt; (fst(h), foldr (\(a,b) c -&gt; b ++ c) [] (h:t)))(minimaBy fst<br />
					[(fst(opt (i-1) (j-1)) + costChar m mm sp x y, attachTails x y (snd(opt (i-1) (j-1)))),<br />
                    (fst(opt (i-1) j) + costChar m mm sp x '-', attachTails x '-' (snd(opt (i-1) j))),<br />
                    (fst(opt i (j-1)) + costChar m mm sp '-' y, attachTails '-' y (snd(opt i (j-1))))])<br />
                    where<br />
                      x = xs !! (i-1)<br />
                      y = ys !! (j-1)  </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nwebb215.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nwebb215.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nwebb215.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nwebb215.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nwebb215.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nwebb215.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nwebb215.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nwebb215.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nwebb215.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nwebb215.wordpress.com/173/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nwebb215.wordpress.com&blog=4766521&post=173&subd=nwebb215&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nwebb215.wordpress.com/2009/05/05/string-matching-haskell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a936e5f9ef3bafd1f88be72ea8f3a231?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nwebb215</media:title>
		</media:content>
	</item>
		<item>
		<title>Map Colouring &#8211; Prolog</title>
		<link>http://nwebb215.wordpress.com/2009/05/05/map-colouring-prolog/</link>
		<comments>http://nwebb215.wordpress.com/2009/05/05/map-colouring-prolog/#comments</comments>
		<pubDate>Tue, 05 May 2009 06:05:20 +0000</pubDate>
		<dc:creator>nwebb215</dc:creator>
				<category><![CDATA[Own Choice Blog]]></category>

		<guid isPermaLink="false">http://nwebb215.wordpress.com/2009/05/05/map-colouring-prolog/</guid>
		<description><![CDATA[%Map Colouring							 %
%Directed Studies &#8211; Assignment 2                                 %
%By: Nicholas Webb.						 %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%Question 1: adjacency relation among the states.
%
state_list([[qld,nsw],[qld,nt],[qld,sa],[nsw,act],[nsw,vic],[nsw,sa],
	    [vic,sa],[sa,nt],[sa,wa],[nt,wa]]).
adjacent(S1,S2) :- state_list(L), [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nwebb215.wordpress.com&blog=4766521&post=172&subd=nwebb215&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>%Map Colouring							 %<br />
%Directed Studies &#8211; Assignment 2                                 %<br />
%By: Nicholas Webb.						 %<br />
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%</p>
<p>%Question 1: adjacency relation among the states.<br />
%<br />
state_list([[qld,nsw],[qld,nt],[qld,sa],[nsw,act],[nsw,vic],[nsw,sa],<br />
	    [vic,sa],[sa,nt],[sa,wa],[nt,wa]]).</p>
<p>adjacent(S1,S2) :- state_list(L), member([S1,S2],L);<br />
	    state_list(L), member([S2,S1],L).</p>
<p>%Question 2&amp;3: if given a list of states will return a valid colouring<br />
%using the naive approach of generating a colouring for an entire list<br />
%of states. It also has the following functionality:given a colouring<br />
%(Colouring) that could be a valid colouring, it produces the<br />
%corresponding list of states (States) whose colouring it might be.<br />
%<br />
colour_list([red, yellow, blue, green]).</p>
<p>valid_colouring(States,Colouring) :-<br />
        colour_list(Colours), colour_all(States,Colours,Colouring),<br />
        \+ conflict(Colouring). </p>
<p>colour_all([],_,[]).<br />
colour_all([State|States],Colours,[[State,Colour]|T]) :-<br />
        member(Colour,Colours),<br />
        colour_all(States,Colours,T). </p>
<p>conflict(Colouring) :-<br />
        member([State1,Colour],Colouring),<br />
        member([State2,Colour],Colouring),<br />
        adjacent(State1,State2). </p>
<p>%Question 4:  smarter map colouring program that is more efficient<br />
%than the naive approach. Here a state is only coloured with a<br />
%colour if it can be shown that none of its neighbors have the colour.<br />
%<br />
smart_colouring(States,Colouring) :-<br />
	colour_list(Colours), colour_correct([],States,Colours,Colouring).</p>
<p>colour_correct(_,[],_,[]).<br />
colour_correct(Sofar,[State|States],Colours,[[State,Colour]|Colouring]) :-<br />
 	member(Colour,Colours),<br />
	\+ dontColour(State,Colour,Sofar),<br />
	colour_correct([[State,Colour]|Sofar],States,Colours,Colouring).</p>
<p>dontColour(State,Colour,Colouring) :-<br />
	adjacent(State, Neighbor),<br />
	member([Neighbor,Colour],Colouring).</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nwebb215.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nwebb215.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nwebb215.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nwebb215.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nwebb215.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nwebb215.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nwebb215.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nwebb215.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nwebb215.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nwebb215.wordpress.com/172/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nwebb215.wordpress.com&blog=4766521&post=172&subd=nwebb215&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nwebb215.wordpress.com/2009/05/05/map-colouring-prolog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a936e5f9ef3bafd1f88be72ea8f3a231?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nwebb215</media:title>
		</media:content>
	</item>
		<item>
		<title>The Prisoner&#8217;s Dilemma and Axelrod&#8217;s Tournament &#8211; Scheme</title>
		<link>http://nwebb215.wordpress.com/2009/05/05/the-prisoners-dilemma-and-axelrods-tournament-scheme/</link>
		<comments>http://nwebb215.wordpress.com/2009/05/05/the-prisoners-dilemma-and-axelrods-tournament-scheme/#comments</comments>
		<pubDate>Tue, 05 May 2009 06:02:07 +0000</pubDate>
		<dc:creator>nwebb215</dc:creator>
				<category><![CDATA[Own Choice Blog]]></category>

		<guid isPermaLink="false">http://nwebb215.wordpress.com/2009/05/05/the-prisoners-dilemma-and-axelrods-tournament-scheme/</guid>
		<description><![CDATA[;The Prisoner&#8217;s Dilemma and Axelrod&#8217;s Tournament
;Directed Studies &#8211; Assignment 1
;By: Nicholas Webb.
;Limiting the impact of the concrete representations &#8216;c and &#8216;d
(define coop &#8216;c)
(define def &#8216;d)
;GAME MATRIX
;gmat &#8211; Takes the players&#8217; moves and returns their respective scores according to the canonical game matrix.
(define(gmat l)
(cond	((and (eq? (car l) coop) (eq? (cadr l) coop)) &#8216;(3 3)) ;(c c)
((and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nwebb215.wordpress.com&blog=4766521&post=171&subd=nwebb215&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>;The Prisoner&#8217;s Dilemma and Axelrod&#8217;s Tournament<br />
;Directed Studies &#8211; Assignment 1<br />
;By: Nicholas Webb.</p>
<p>;Limiting the impact of the concrete representations &#8216;c and &#8216;d<br />
(define coop &#8216;c)<br />
(define def &#8216;d)</p>
<p>;GAME MATRIX</p>
<p>;gmat &#8211; Takes the players&#8217; moves and returns their respective scores according to the canonical game matrix.<br />
(define(gmat l)<br />
(cond	((and (eq? (car l) coop) (eq? (cadr l) coop)) &#8216;(3 3)) ;(c c)<br />
((and (eq? (car l) coop) (eq? (cadr l) def)) &#8216;(0 5)) ;(c d)<br />
((and (eq? (car l) def) (eq? (cadr l) coop)) &#8216;(5 0)) ;(d c)<br />
((and (eq? (car l) def) (eq? (cadr l) def)) &#8216;(1 1)) ;(d d)<br />
)<br />
)</p>
<p>;STRATEGIES</p>
<p>;allDefect &#8211; Defects every move.<br />
(define(allDefect l) ((allX def) l))</p>
<p>;allCo-operate &#8211; Co-operates every move.<br />
(define(allCo-operate l) ((allX coop) l))</p>
<p>;randomMove &#8211; Makes a random decision to defect or co-operate.<br />
(define(randomMove l) (if (= (random 2) 0) coop def))</p>
<p>;majority &#8211; Examines the opponent&#8217;s history.  If the opponent has defected more times than co-operating, then defect, otherwise co-operate.<br />
(define(majority l) (if ( n (length l)) (s1 l) (s2 l))))</p>
<p>;TOURNAMENT</p>
<p>;play &#8211; plays two strategies against each other for a given number of rounds for a given game matrix and returns the cumulative score for each player as a list of two elements.<br />
(define(play n m s1 s2) (score m (car (appendHistory n m s1 s2 &#8216;() &#8216;())) (cadr (appendHistory n m s1 s2 &#8216;() &#8216;()))))</p>
<p>;appendHistory &#8211; takes as parameters the players&#8217; move histories.  The function builds up the move histories by adding each player&#8217;s move (based on the opponent history) to that player&#8217;s history and continuing for the specified number of rounds.<br />
(define(appendHistory n m s1 s2 h1 h2)<br />
(if (= n 0) (list h1 h2)<br />
(appendHistory (- n 1) m s1 s2 (cons (s1 h2) h1) (cons (s2 h1) h2))<br />
)<br />
)</p>
<p>;score &#8211; takes a game matrix and two move histories and returns the overall score of each player as a two element list.<br />
(define(score m h1 h2)<br />
(foldr (lambda (l1 l2) (map + l1 l2)) &#8216;(0 0) (map gmat (map list h1 h2))))</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nwebb215.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nwebb215.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nwebb215.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nwebb215.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nwebb215.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nwebb215.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nwebb215.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nwebb215.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nwebb215.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nwebb215.wordpress.com/171/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nwebb215.wordpress.com&blog=4766521&post=171&subd=nwebb215&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nwebb215.wordpress.com/2009/05/05/the-prisoners-dilemma-and-axelrods-tournament-scheme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a936e5f9ef3bafd1f88be72ea8f3a231?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nwebb215</media:title>
		</media:content>
	</item>
		<item>
		<title>Snake on Popfly!</title>
		<link>http://nwebb215.wordpress.com/2008/12/01/snake-on-popfly/</link>
		<comments>http://nwebb215.wordpress.com/2008/12/01/snake-on-popfly/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 23:11:33 +0000</pubDate>
		<dc:creator>nwebb215</dc:creator>
				<category><![CDATA[Own Choice Blog]]></category>

		<guid isPermaLink="false">http://nwebb215.wordpress.com/?p=166</guid>
		<description><![CDATA[Due to popular demand, here is the link to my Snake game on Popfly: http://www.popfly.com/users/353172/Snake
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nwebb215.wordpress.com&blog=4766521&post=166&subd=nwebb215&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Due to popular demand, here is the link to my Snake game on Popfly: <a href="http://www.popfly.com/users/353172/Snake">http://www.popfly.com/users/353172/Snake</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nwebb215.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nwebb215.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nwebb215.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nwebb215.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nwebb215.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nwebb215.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nwebb215.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nwebb215.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nwebb215.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nwebb215.wordpress.com/166/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nwebb215.wordpress.com&blog=4766521&post=166&subd=nwebb215&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nwebb215.wordpress.com/2008/12/01/snake-on-popfly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a936e5f9ef3bafd1f88be72ea8f3a231?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nwebb215</media:title>
		</media:content>
	</item>
		<item>
		<title>Got a Hair Cut</title>
		<link>http://nwebb215.wordpress.com/2008/11/30/got-a-hair-cut/</link>
		<comments>http://nwebb215.wordpress.com/2008/11/30/got-a-hair-cut/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 13:39:06 +0000</pubDate>
		<dc:creator>nwebb215</dc:creator>
				<category><![CDATA[Own Choice Blog]]></category>

		<guid isPermaLink="false">http://nwebb215.wordpress.com/?p=158</guid>
		<description><![CDATA[Think think think&#8230;. last blog topic&#8230; oh yeah! I got a haircut a couple of days ago. It&#8217;s not bad I suppose, as my hair was getting quite long.
Was pouring down with rain at the time, weather has been quite strange lately&#8230; although I guess it&#8217;s summer after all. Nearly there&#8230; 11:35 pm and finished [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nwebb215.wordpress.com&blog=4766521&post=158&subd=nwebb215&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Think think think&#8230;. last blog topic&#8230; oh yeah! I got a haircut a couple of days ago. It&#8217;s not bad I suppose, as my hair was getting quite long.</p>
<p>Was pouring down with rain at the time, weather has been quite strange lately&#8230; although I guess it&#8217;s summer after all. Nearly there&#8230; 11:35 pm and finished all my blog topics, good good.</p>
<p>Needs more padding out&#8230; hmm&#8230; my desktop&#8217;s hard drive crashed today which was pretty annoying, laptops aren&#8217;t very fun for typing, cramped fingers. Four assignments at once is also fun + exams around the corner.</p>
<p>Tried the new Mother drink, it is actually better than the old one.</p>
<p>and&#8230; Good Night! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nwebb215.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nwebb215.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nwebb215.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nwebb215.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nwebb215.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nwebb215.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nwebb215.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nwebb215.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nwebb215.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nwebb215.wordpress.com/158/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nwebb215.wordpress.com&blog=4766521&post=158&subd=nwebb215&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nwebb215.wordpress.com/2008/11/30/got-a-hair-cut/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a936e5f9ef3bafd1f88be72ea8f3a231?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nwebb215</media:title>
		</media:content>
	</item>
		<item>
		<title>IT Does Matter</title>
		<link>http://nwebb215.wordpress.com/2008/11/30/it-doesnt-matter/</link>
		<comments>http://nwebb215.wordpress.com/2008/11/30/it-doesnt-matter/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 13:03:44 +0000</pubDate>
		<dc:creator>nwebb215</dc:creator>
				<category><![CDATA[Own Choice Blog]]></category>

		<guid isPermaLink="false">http://nwebb215.wordpress.com/?p=142</guid>
		<description><![CDATA[Wrote an essay a while back which is a letter to the editor based upon the article &#8220;IT doesn&#8217;t Matter&#8221; by Nicholas Carr. Thought it was interesting to apply topics learnt in the Technology Management subject to try and refute that IT actually does matter.
Introduction
Nicholas Carr’s article “IT Doesn’t Matter” captures a number of shortcomings [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nwebb215.wordpress.com&blog=4766521&post=142&subd=nwebb215&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Wrote an essay a while back which is a letter to the editor based upon the article &#8220;IT doesn&#8217;t Matter&#8221; by Nicholas Carr. Thought it was interesting to apply topics learnt in the Technology Management subject to try and refute that IT actually does matter.</p>
<p><strong>Introduction</strong></p>
<p class="MsoNormal"><span lang="EN-AU">Nicholas Carr’s article “IT Doesn’t Matter” captures a number of shortcomings of information technology as he compares it to the hype cycle of past technologies. The major flaw however is that there is several distinguishable features between the railroad or power systems of the past and IT in its current state today. IT does matter and it has become a crucial tool in business strategy; decisions made can be the difference between the success and failure of a company.</span></p>
<p class="MsoNormal">
<p class="MsoNormal"><span lang="EN-AU">Link to the essay can be found <a href="http://nwebb215.files.wordpress.com/2008/11/technology-management-assignment-1.doc">here</a>.<br />
</span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nwebb215.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nwebb215.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nwebb215.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nwebb215.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nwebb215.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nwebb215.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nwebb215.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nwebb215.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nwebb215.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nwebb215.wordpress.com/142/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nwebb215.wordpress.com&blog=4766521&post=142&subd=nwebb215&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nwebb215.wordpress.com/2008/11/30/it-doesnt-matter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a936e5f9ef3bafd1f88be72ea8f3a231?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nwebb215</media:title>
		</media:content>
	</item>
		<item>
		<title>Snake</title>
		<link>http://nwebb215.wordpress.com/2008/11/30/snake/</link>
		<comments>http://nwebb215.wordpress.com/2008/11/30/snake/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 12:52:44 +0000</pubDate>
		<dc:creator>nwebb215</dc:creator>
				<category><![CDATA[Own Choice Blog]]></category>

		<guid isPermaLink="false">http://nwebb215.wordpress.com/?p=138</guid>
		<description><![CDATA[My final Developing and Deploying Large systems assignment is to create the game Snake (although it is not typically a large system, we implement many procedures used to create large systems).
The stage I&#8217;m up to now (although it is still only a dot floating around the screen), has been using the Swing and AWT graphical [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nwebb215.wordpress.com&blog=4766521&post=138&subd=nwebb215&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>My final Developing and Deploying Large systems assignment is to create the game Snake (although it is not typically a large system, we implement many procedures used to create large systems).</p>
<p>The stage I&#8217;m up to now (although it is still only a dot floating around the screen), has been using the <a href="http://en.wikipedia.org/wiki/Swing_(Java)">Swing</a> and <a href="http://en.wikipedia.org/wiki/Abstract_Window_Toolkit">AWT</a> graphical user interface classes, action and key listeners, observers and threads (just to name a few). In a couple of weeks it should be complete, and I will post up the program source as it should be interesting to look back on.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nwebb215.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nwebb215.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nwebb215.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nwebb215.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nwebb215.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nwebb215.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nwebb215.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nwebb215.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nwebb215.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nwebb215.wordpress.com/138/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nwebb215.wordpress.com&blog=4766521&post=138&subd=nwebb215&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nwebb215.wordpress.com/2008/11/30/snake/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a936e5f9ef3bafd1f88be72ea8f3a231?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nwebb215</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Docs</title>
		<link>http://nwebb215.wordpress.com/2008/11/30/google-docs/</link>
		<comments>http://nwebb215.wordpress.com/2008/11/30/google-docs/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 11:39:50 +0000</pubDate>
		<dc:creator>nwebb215</dc:creator>
				<category><![CDATA[Own Choice Blog]]></category>

		<guid isPermaLink="false">http://nwebb215.wordpress.com/?p=110</guid>
		<description><![CDATA[Decided to use Google Docs for one of my group assignments in Technology Management. It has been holding up pretty well until now (although there is a couple of bugs still as it is still in Beta). Its main offerings are:
Create, edit and upload quickly.
Import your existing documents, spreadsheets and presentations, or create new ones [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nwebb215.wordpress.com&blog=4766521&post=110&subd=nwebb215&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Decided to use Google Docs for one of my group assignments in Technology Management. It has been holding up pretty well until now (although there is a couple of bugs still as it is still in Beta). Its main offerings are:</p>
<p><strong>Create, edit and upload quickly</strong>.<br />
Import your existing documents, spreadsheets and presentations, or create new ones from scratch.</p>
<p><strong>Access and edit from anywhere</strong>.<br />
All you need is a Web browser. Your documents, spreadsheets and presentations are stored securely online.</p>
<p><strong>Share changes in real-time</strong>.<br />
Invite people to your documents and make changes together, at the same time.</p>
<p><strong>It&#8217;s free.</strong></p>
<p>It also ties into the whole, cloud computing/web 2.0 methodology. It is very useful and I will most likely use it more into the future.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nwebb215.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nwebb215.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nwebb215.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nwebb215.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nwebb215.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nwebb215.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nwebb215.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nwebb215.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nwebb215.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nwebb215.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nwebb215.wordpress.com&blog=4766521&post=110&subd=nwebb215&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nwebb215.wordpress.com/2008/11/30/google-docs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a936e5f9ef3bafd1f88be72ea8f3a231?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nwebb215</media:title>
		</media:content>
	</item>
		<item>
		<title>Cloud Computing</title>
		<link>http://nwebb215.wordpress.com/2008/11/30/cloud-computing/</link>
		<comments>http://nwebb215.wordpress.com/2008/11/30/cloud-computing/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 10:47:09 +0000</pubDate>
		<dc:creator>nwebb215</dc:creator>
				<category><![CDATA[Own Choice Blog]]></category>

		<guid isPermaLink="false">http://nwebb215.wordpress.com/?p=97</guid>
		<description><![CDATA[Cloud computing is where data, software applications and services are accessed over a network. The network of servers and connections is collectively known as the cloud. When users retrieve data or documents, they aren’t worried about where it came from or how it got to them. Cloud computing gives the idea that the cloud hides [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nwebb215.wordpress.com&blog=4766521&post=97&subd=nwebb215&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><span lang="EN-AU">Cloud computing is where data, software applications and services are accessed over a network. The network of servers and connections is collectively known as the cloud. When users retrieve data or documents, they aren’t worried about where it came from or how it got to them. Cloud computing gives the idea that the cloud hides the packets or the complications of the World Wide Web processes to achieve each task at hand.<br />
</span></p>
<p class="MsoNormal" style="margin-top:6pt;"><span lang="EN-AU"> </span></p>
<p class="MsoNormal" style="margin-top:6pt;"><span lang="EN-AU"><strong>Current state of cloud computing</strong><br />
</span></p>
<p class="MsoNormal" style="margin-top:6pt;"><span lang="EN-AU">Cloud computing has already changed the way users use the internet. Companies and users can now use SaaS (Software as a Service) and Haas (Hardware as a Service) on the internet. This is also known as Utility Computing. </span></p>
<p class="MsoNormal" style="margin-top:6pt;"><span lang="EN-AU">A SaaS instance would be where Office Live Workspace provides a service to a user that allows them to save documents on the network. The document is saved using the Office Live Workspace’s drive space on the network. Once the document is saved on the network it can be accessed at any time, anywhere on a device that has access to the internet. </span></p>
<p class="MsoNormal" style="margin-top:6pt;"><span lang="EN-AU">A HaaS instance would be where Amazon EC2 provides a service where companies can purchase drive space and processing power to install applications on the network. This way the company doesn’t have to use their own hardware space up. They can simply use the drive space that Amazon has provided them to install their application. The applications can also be accessed from any device with internet access. </span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nwebb215.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nwebb215.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nwebb215.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nwebb215.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nwebb215.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nwebb215.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nwebb215.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nwebb215.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nwebb215.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nwebb215.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nwebb215.wordpress.com&blog=4766521&post=97&subd=nwebb215&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nwebb215.wordpress.com/2008/11/30/cloud-computing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a936e5f9ef3bafd1f88be72ea8f3a231?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nwebb215</media:title>
		</media:content>
	</item>
		<item>
		<title>Hamiltonian Cycles Program</title>
		<link>http://nwebb215.wordpress.com/2008/11/30/hamiltonian-cycles-program/</link>
		<comments>http://nwebb215.wordpress.com/2008/11/30/hamiltonian-cycles-program/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 10:46:41 +0000</pubDate>
		<dc:creator>nwebb215</dc:creator>
				<category><![CDATA[Own Choice Blog]]></category>

		<guid isPermaLink="false">http://nwebb215.wordpress.com/?p=95</guid>
		<description><![CDATA[In my Developing and Deploying Large systems subject we wrote a program in Java to take in a graph (a mathematical one, not the statistics one) and produce a set of all its Hamiltonian Cycles.
A Hamiltonian cycle is a path from a node to itself, passing through each node in the graph exactly once. This [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nwebb215.wordpress.com&blog=4766521&post=95&subd=nwebb215&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>In my Developing and Deploying Large systems subject we wrote a program in Java to take in a graph (a mathematical one, not the statistics one) and produce a set of all its Hamiltonian Cycles.</p>
<p>A Hamiltonian cycle is a path from a node to itself, passing through each node in the graph exactly once. This program makes use of worklist processing in order to produce all the Hamiltonian Cycles of a graph.</p>
<p>Additional rules from a standard worklist process are:<br />
- Do not propagate paths longer than number of nodes.<br />
- Do not add path to solution if will introduce cycle of length less than number of nodes.</p>
<p>Here is a link to the program <a href="http://nwebb215.files.wordpress.com/2008/11/nicholas-webb-hard-copy-source.pdf">source</a> (couldn&#8217;t upload the file itself due to security restrictions&#8230;).</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nwebb215.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nwebb215.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nwebb215.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nwebb215.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nwebb215.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nwebb215.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nwebb215.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nwebb215.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nwebb215.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nwebb215.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nwebb215.wordpress.com&blog=4766521&post=95&subd=nwebb215&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nwebb215.wordpress.com/2008/11/30/hamiltonian-cycles-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a936e5f9ef3bafd1f88be72ea8f3a231?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nwebb215</media:title>
		</media:content>
	</item>
	</channel>
</rss>