1Games::Solitaire::VerifUys(e3r)Contributed Perl DocumentGaatmieosn::Solitaire::Verify(3)
2
3
4
6 Games::Solitaire::Verify - verify solutions for solitaire games.
7
9 version 0.2202
10
12 use Games::Solitaire::Verify::Solution;
13
14 my $verifier = Games::Solitaire::Verify::Solution->new();
15
16 $verifier->verify_solution({ fh => \*STDIN });
17
19 This is a CPAN Perl module that verifies the solutions of various
20 variants of card Solitaire. It does not aim to try to be a solver for
21 them, because this is too CPU intensive to be adequately done using
22 perl5 (as of perl-5.10.0). If you're interested in the latter, look at:
23
24 · http://fc-solve.shlomifish.org/
25
26 · http://fc-solve.shlomifish.org/links.html#other_solvers
27
28 Instead, what Games-Solitaire-Verify does is verify the solutions and
29 makes sure they are correct.
30
31 See <http://pysolfc.sourceforge.net/> for more about card solitaire.
32
34 Games::Solitaire::Verify::Solution , Games::Solitaire::Verify::State
35
37 Shlomi Fish, <http://www.shlomifish.org/>.
38
40 Shlomi Fish <shlomif@cpan.org>
41
43 This software is Copyright (c) 2014 by Shlomi Fish.
44
45 This is free software, licensed under:
46
47 The MIT (X11) License
48
50 Please report any bugs or feature requests on the bugtracker website
51 <https://github.com/shlomif/fc-solve/issues>
52
53 When submitting a bug or request, please include a test-file or a patch
54 to an existing test-file that illustrates the bug or desired feature.
55
57 Perldoc
58 You can find documentation for this module with the perldoc command.
59
60 perldoc Games::Solitaire::Verify
61
62 Websites
63 The following websites have more information about this module, and may
64 be of help to you. As always, in addition to those websites please use
65 your favorite search engine to discover more resources.
66
67 · MetaCPAN
68
69 A modern, open-source CPAN search engine, useful to view POD in
70 HTML format.
71
72 <https://metacpan.org/release/Games-Solitaire-Verify>
73
74 · Search CPAN
75
76 The default CPAN search engine, useful to view POD in HTML format.
77
78 <http://search.cpan.org/dist/Games-Solitaire-Verify>
79
80 · RT: CPAN's Bug Tracker
81
82 The RT ( Request Tracker ) website is the default bug/issue
83 tracking system for CPAN.
84
85 <https://rt.cpan.org/Public/Dist/Display.html?Name=Games-Solitaire-Verify>
86
87 · AnnoCPAN
88
89 The AnnoCPAN is a website that allows community annotations of Perl
90 module documentation.
91
92 <http://annocpan.org/dist/Games-Solitaire-Verify>
93
94 · CPAN Ratings
95
96 The CPAN Ratings is a website that allows community ratings and
97 reviews of Perl modules.
98
99 <http://cpanratings.perl.org/d/Games-Solitaire-Verify>
100
101 · CPANTS
102
103 The CPANTS is a website that analyzes the Kwalitee ( code metrics )
104 of a distribution.
105
106 <http://cpants.cpanauthors.org/dist/Games-Solitaire-Verify>
107
108 · CPAN Testers
109
110 The CPAN Testers is a network of smoke testers who run automated
111 tests on uploaded CPAN distributions.
112
113 <http://www.cpantesters.org/distro/G/Games-Solitaire-Verify>
114
115 · CPAN Testers Matrix
116
117 The CPAN Testers Matrix is a website that provides a visual
118 overview of the test results for a distribution on various
119 Perls/platforms.
120
121 <http://matrix.cpantesters.org/?dist=Games-Solitaire-Verify>
122
123 · CPAN Testers Dependencies
124
125 The CPAN Testers Dependencies is a website that shows a chart of
126 the test results of all dependencies for a distribution.
127
128 <http://deps.cpantesters.org/?module=Games::Solitaire::Verify>
129
130 Bugs / Feature Requests
131 Please report any bugs or feature requests by email to
132 "bug-games-solitaire-verify at rt.cpan.org", or through the web
133 interface at
134 <https://rt.cpan.org/Public/Bug/Report.html?Queue=Games-Solitaire-Verify>.
135 You will be automatically notified of any progress on the request by
136 the system.
137
138 Source Code
139 The code is open to the world, and available for you to hack on. Please
140 feel free to browse it and play with it, or whatever. If you want to
141 contribute patches, please send me a diff or prod me to pull from your
142 repository :)
143
144 <https://github.com/shlomif/fc-solve>
145
146 git clone git://github.com/shlomif/fc-solve.git
147
148
149
150perl v5.30.1 2020-01-30 Games::Solitaire::Verify(3)