-- 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