NAME

Games::Solitaire::Verify::Solution - verify an entire solution of Freecell Solver (or a similar solve)

VERSION

Version 0.0101

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

Games::Solitaire::Verify::Solution->new({variant => $variant, input_fh => $input_fh})

Constructs a new solution verifier with the variant $variant (see Games::Solitaire::Verify::VariantsMap ), and the input file handle $input_fh.

If $variant is "custom", then the constructor also requires a 'variant_params' key which should be a populated Games::Solitaire::Verify::VariantParams object.

$solution->verify()

Traverse the solution verifying it.

AUTHOR

Shlomi Fish, http://www.shlomifish.org/.

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:

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

Copyright 2008 Shlomi Fish.

This program is released under the following license: MIT/X11 ( http://www.opensource.org/licenses/mit-license.php ).