NAME
Games::Solitaire::Verify::Solution - verify an entire solution of Freecell Solver (or a similar solve)
VERSION
Version 0.01
SYNOPSIS
use Games::Solitaire::Verify::Solution;
my $input_filename = "freecell-24-solution.txt";
open (my $input_fh, "<", $input_filename)
or die "Cannot open file $!";
# Initialise a column
my $solution = Games::Solitaire::Verify::Solution->new(
{
input_fh => $input_fh,
variant => "freecell",
},
);
my $ret = $solution->verify();
close($input_fh);
if (!$ret)
{
die $ret;
}
else
{
print "Solution is OK";
}
FUNCTIONS
$solution->verify()
Traverse the solution verifying it.
AUTHOR
Shlomi Fish, <shlomif at iglu.org.il>
BUGS
Please report any bugs or feature requests to bug-games-solitaire-verifysolution-move at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Games-Solitaire-Verify. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Games::Solitaire::Verify::Solution
You can also look for information at:
RT: CPAN's request tracker
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Games-Solitaire-Verify
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
ACKNOWLEDGEMENTS
COPYRIGHT & LICENSE
Copyright 2008 Shlomi Fish, all rights reserved.
This program is released under the following license: MIT/X11 ( http://www.opensource.org/licenses/mit-license.php ).