mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Solver documentation page.
This commit is contained in:
parent
11ee25afc2
commit
0a10c72524
3 changed files with 41 additions and 0 deletions
|
@ -64,6 +64,7 @@ files = [
|
||||||
('assist_options.html', 'PySol - Assist Options'),
|
('assist_options.html', 'PySol - Assist Options'),
|
||||||
('solitaire_wizard.html', 'PySol - Solitaire Wizard'),
|
('solitaire_wizard.html', 'PySol - Solitaire Wizard'),
|
||||||
('cardset_customization.html', 'PySol - Cardset Customization'),
|
('cardset_customization.html', 'PySol - Cardset Customization'),
|
||||||
|
('solver.html', 'PySol - Solver'),
|
||||||
('plugins.html', 'PySol - Plugins'),
|
('plugins.html', 'PySol - Plugins'),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
<ul>
|
<ul>
|
||||||
<li> <a href="assist_options.html">Assist Options</a>
|
<li> <a href="assist_options.html">Assist Options</a>
|
||||||
<li> <a href="solitaire_wizard.html">Solitaire Wizard</a>
|
<li> <a href="solitaire_wizard.html">Solitaire Wizard</a>
|
||||||
|
<li> <a href="solver.html">Solver</a>
|
||||||
<li> <a href="cardset_customization.html">Cardset Customization</a>
|
<li> <a href="cardset_customization.html">Cardset Customization</a>
|
||||||
<li> <a href="plugins.html">Plugins</a>
|
<li> <a href="plugins.html">Plugins</a>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
39
html-src/solver.html
Normal file
39
html-src/solver.html
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
<h1>Solver</h1>
|
||||||
|
<p>
|
||||||
|
PySolFC contains integration with a number of solitaire game solvers:
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://fc-solve.shlomifish.org/">fc-solve</a>
|
||||||
|
<li><a href="https://www.shlomifish.org/open-source/projects/black-hole-solitaire-solver/">Black Hole Solver</a>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
The solvers may need to be installed separately to use them, depending on your
|
||||||
|
PySol configuration.
|
||||||
|
<p>
|
||||||
|
To use the solver, first run a game that's compatible with the solver, and then set
|
||||||
|
the configuration settings.
|
||||||
|
|
||||||
|
<h2>Configuration Options</h2>
|
||||||
|
<p>
|
||||||
|
The preset option determines the configuration that the solver uses. The different
|
||||||
|
configurations affect how the solver goes about trying to find a solution. More
|
||||||
|
details on the different preset options can be found on the fc-solve website.
|
||||||
|
<p>
|
||||||
|
The max iterations setting controls how many game states the solver can review for
|
||||||
|
that given game. A higher number means the solver is more accurate, but takes longer
|
||||||
|
to run.
|
||||||
|
<p>
|
||||||
|
Once you've set the configuration options, you can start the solver, and then demo the
|
||||||
|
found solution.
|
||||||
|
|
||||||
|
<h2>For More Information</h2>
|
||||||
|
<p>
|
||||||
|
For more info about fc-solve:
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://fc-solve.shlomifish.org/docs/">https://fc-solve.shlomifish.org/docs/</a>
|
||||||
|
<li><a href="https://fc-solve.shlomifish.org/faq.html">https://fc-solve.shlomifish.org/faq.html</a>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
For more info about black-hole-solve:
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://github.com/shlomif/black-hole-solitaire">https://github.com/shlomif/black-hole-solitaire</a>
|
||||||
|
</ul>
|
Loading…
Add table
Reference in a new issue