Games-Solitaire-Verify
view release on metacpan or search on metacpan
examples/benchmark.pl view on Meta::CPAN
use List::Util qw( first );
use Games::Solitaire::Verify::Solution ();
use Games::Solitaire::Verify::App::CmdLine ();
if ( $ARGV[0] =~ m{\A-h|--help\z} )
{
print <<'EOF';
summarize-fc-solve [Game Params] -- [Extra fc-solve Args]
Display the solution status, the iterations count and the solution length
of the Freecell Solver invocation specified by the arguments. Also verifies
that the solution is true.
The [Game Params] flags (e.g: -g , --freecells-num, --stacks-num, etc.) are also
used to determine the variant used by the solution verifier.
EOF
exit(0);
}
my @args = @ARGV;
( run in 0.837 second using v1.01-cache-2.11-cpan-71847e10f99 )