Index of /2001_2006/spring03/ai-stuff/jims-code/8-puzzle

[ICO]NameLast modifiedSizeDescription

[PARENTDIR]Parent Directory  -  
[TXT]README.html2018-01-26 19:54 647  
[TXT]SearchTree-pod.html2018-01-26 19:54 3.9K 
[TXT]SearchTree-pod.txt2018-01-26 19:54 2.9K 
[   ]SearchTree.out2018-01-26 19:54 971  
[TXT]SearchTree.pm2018-01-26 19:54 9.7K 
[   ]n-puzzle.out2018-01-26 19:54 3.7K 
[TXT]n-puzzle.pl2018-01-26 19:54 5.4K 

  -- Playing with AI search algorithms in Perl --

SearchTree.pm is a perl module that implements several different algorithms.
 * To see it work, type "perl SearchTree.pm" at the command line.  
 * To generate its documenation, type
    "pod2html SearchTree.pm > SearchTree.html" or
    "pod2text SearchTree.pm > SearchTree.txt"

SearchTree relies on another package to specify the details of the 
tree itself, though it does include a simple example of a tree.

n-puzzle.pl uses SearchTree to solve the sliding block 8-puzzle.
 * To see it work, type "perl n-puzzle.pl > n-puzzle.out"

So there you are.

 - Jim Mahoney, Feb 2003