1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
|
<?xml version="1.0" encoding="UTF-8"?>
<?asciidoc-toc?>
<?asciidoc-numbered?>
<article xmlns="http://docbook.org/ns/docbook" xmlns:xl="http://www.w3.org/1999/xlink" version="5.0" xml:lang="en">
<info>
<title>Freecell Solver’s To-do list</title>
<date>2018-09-05</date>
<author>
<personname>
<firstname>Shlomi</firstname>
<surname>Fish</surname>
</personname>
<email>shlomif@cpan.org</email>
</author>
<authorinitials>SF</authorinitials>
</info>
<section xml:id="pressing">
<title>Pressing</title>
</section>
<section xml:id="non_pressing">
<title>Non-pressing</title>
<itemizedlist>
<listitem>
<simpara>Write a better initial board/initial layout validation code for the online
solver (at least initially]):</simpara>
<itemizedlist>
<listitem>
<simpara>Exact number of playstacks. (requires introspection).</simpara>
</listitem>
<listitem>
<simpara>Number of Freecells not exceeded. (requires introspection).</simpara>
</listitem>
<listitem>
<simpara>missing/extra cards.</simpara>
</listitem>
<listitem>
<simpara>whitespace gaps.</simpara>
</listitem>
<listitem>
<simpara>invalid characters.</simpara>
</listitem>
<listitem>
<simpara>misformatting of the format.</simpara>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<simpara>Find how well the solver performs with different permutations of the
order of columns/freecells.</simpara>
<itemizedlist>
<listitem>
<simpara>See if it’s possible to combine several scans on such different
permutations.</simpara>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<simpara>Write a "simulator" for new flare-based runs to see how they improve on
the existing runs. It will process the scans' command line based on their
end results and performance and will generate the new estimated performance.</simpara>
</listitem>
<listitem>
<simpara>Write the split-dbm-solver which stores the results on the disk for every
non-reversible-moves offset, and fully-connected-components.</simpara>
</listitem>
<listitem>
<simpara>Refer to <literal>expand-solitaire-multi-card-moves</literal> from the fc-solve process.</simpara>
</listitem>
<listitem>
<simpara>Create a displayer for fc-solve’s solutions which will allow seeing where a
card was moved from (using a colored →) and where it was placed.</simpara>
<itemizedlist>
<listitem>
<simpara>Create a GUI version.</simpara>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<simpara>If <literal>-opt</literal> is specified for the flare, then make sure that if the flares
loop stop it when it’s doing the optimization scan, then the optimization scan
goes on until it ends.</simpara>
<itemizedlist>
<listitem>
<simpara>Not sure about it.</simpara>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<simpara>Implement more of Kevin Atkinson’s Common Lisp solver’s atomic move types,
and try to construct good heuristics out of them.</simpara>
</listitem>
<listitem>
<simpara>Play with writing a memory-re-cycling Soft-DFS scan: if a sub-tree was
marked as a dead-end, then its states might be able to be placed on a linked
list of states that can be reused.</simpara>
</listitem>
<listitem>
<simpara>PySolFC Deal No. 48007594292403677907 :</simpara>
</listitem>
</itemizedlist>
<screen>shlomif:~$ make_pysol_freecell_board.py -t -F 48007594292403677907 | fc-solve -l cpb -sam | grep ^Move | wc -l
106
shlomif:~$ make_pysol_freecell_board.py -t -F 48007594292403677907 | fc-solve --method a-star -to 01234675 -asw 300,1500,0,2,50000 -sam | grep ^Move | wc -l
105
shlomif:~$ make_pysol_freecell_board.py -t -F 48007594292403677907 | fc-solve --method a-star -to 01234675 -asw 40,2,40,0,40 -sam | grep ^Move | wc -l
121
shlomif:~$ make_pysol_freecell_board.py -t -F 48007594292403677907 | fc-solve --method a-star -to 0123467589 -asw 300,1500,0,2,50000 -sam | grep ^Move | wc -l
100
shlomif:~$ make_pysol_freecell_board.py -t -F 48007594292403677907 | fc-solve --method a-star -to 0123467589 -asw 300,1500,0,2,40000 -sam | grep ^Move | wc -l
106
shlomif:~$ make_pysol_freecell_board.py -t -F 48007594292403677907 | fc-solve --method a-star -to 0123467589 -asw 300,1500,0,2,60000 -sam | grep ^Move | wc -l
91</screen>
<screen>shlomif:~$ make_pysol_freecell_board.py -F -t 91151234961275807905 | ~/apps/test/fcs/bin/fc-solve -p -t -sam --method a-star -to 0123467589 -asw 300,1000,0,2,90000 | grep ^Move | wc -l
84</screen>
<simpara>However this scan generates takes too much time for most boards (over 100K
iterations).</simpara>
<itemizedlist>
<listitem>
<simpara>PySolFC deal No. 03620802041832966472:</simpara>
</listitem>
</itemizedlist>
<screen>shlomif[fcs]:$trunk/fc-solve/source$ make_pysol_freecell_board.py -t -F 03620802041832966472 | ./scripts/summarize-fc-solve -- --method a-star -to 0123467589 -asw 300,1500,99,2,65000
Verdict: Solved ; Iters: 156 ; Length: 87</screen>
<itemizedlist>
<listitem>
<simpara>I solved it at length 87.</simpara>
<itemizedlist>
<listitem>
<simpara>PySolFC deal No. 54369539487824719321:</simpara>
</listitem>
</itemizedlist>
</listitem>
</itemizedlist>
<screen>shlomif[fcs]:$trunk/fc-solve/source$ make_pysol_freecell_board.py -F -t 54369539487824719321 | ./scripts/summarize-fc-solve --method a-star -to 0123456789 -asw 3000,100,60,0,500
Verdict: Solved ; Iters: 1325 ; Length: 115</screen>
<itemizedlist>
<listitem>
<simpara>Shlomi Fish solved it in under 110 moves.</simpara>
<itemizedlist>
<listitem>
<simpara>PySolFC deal 96166640969002647853:</simpara>
</listitem>
</itemizedlist>
</listitem>
</itemizedlist>
<screen>shlomif[fcs]:$trunk/fc-solve/source$ make_pysol_freecell_board.py -F -t 96166640969002647853 | ./scripts/summarize-fc-solve --method a-star -to 0123467589 -asw 370,0,0,2,90000
Verdict: Solved ; Iters: 615 ; Length: 77</screen>
<itemizedlist>
<listitem>
<simpara>Shlomi Fish solved it in 77 moves.</simpara>
<itemizedlist>
<listitem>
<simpara>PySolFC deal 26892246862786948900:</simpara>
</listitem>
</itemizedlist>
</listitem>
</itemizedlist>
<screen>shlomif[fcs]:$trunk/fc-solve/source$ make_pysol_freecell_board.py -F -t 26892246862786948900 | perl scripts/summarize-fc-solve -l qsi --flares-choice fc_solve
Verdict: Solved ; Iters: 195331 ; Length: 98
shlomif[fcs]:$trunk/fc-solve/source$ make_pysol_freecell_board.py -F -t 26892246862786948900 | perl scripts/summarize-fc-solve --method a-star -asw '1,0,4,0,4' --flares-choice fc_solve
Verdict: Solved ; Iters: 111 ; Length: 92</screen>
<itemizedlist>
<listitem>
<simpara>Shlomi Fish solved it in 92 moves.</simpara>
<itemizedlist>
<listitem>
<simpara>Add the new Freecell Solver-compatible game variants of PySolFC.</simpara>
</listitem>
<listitem>
<simpara>Convert magic rank constants such as 1 or 13 to FCS_MAX_RANK and
FCS_RANK_ACE/etc.</simpara>
</listitem>
<listitem>
<simpara>Investigate:</simpara>
</listitem>
</itemizedlist>
</listitem>
</itemizedlist>
<screen>$ make_pysol_freecell_board.py -F -t 00682189035907813607 | perl ../scripts/summarize-fc-solve -l qsi
Verdict: Solved ; Iters: 157905 ; Length: 109
$ make_pysol_freecell_board.py -F -t 00682189035907813607 | perl ../scripts/summarize-fc-solve --method a-star -to '01234567' -asw 1 -opt
Verdict: Solved ; Iters: 433 ; Length: 89</screen>
<itemizedlist>
<listitem>
<simpara>Consider adding the <literal>restrict</literal> keyword:</simpara>
<itemizedlist>
<listitem>
<simpara><link xl:href="http://stackoverflow.com/questions/776283/what-does-the-restrict-keyword-mean-in-c">http://stackoverflow.com/questions/776283/what-does-the-restrict-keyword-mean-in-c</link></simpara>
</listitem>
<listitem>
<simpara><link xl:href="https://duckduckgo.com/?q=restrict+keyword+c&ia=web">https://duckduckgo.com/?q=restrict+keyword+c&ia=web</link></simpara>
</listitem>
</itemizedlist>
</listitem>
</itemizedlist>
</section>
<section xml:id="long_term">
<title>Long-term</title>
<itemizedlist>
<listitem>
<simpara>Integrate the patsolve’s prioritization and mixed BFS/DFS scan.</simpara>
</listitem>
<listitem>
<simpara>Update the architecture document.</simpara>
</listitem>
<listitem>
<simpara>Make a super-strict parsable-output without all the quirks of
-p -t (see Games-Solitaire-Verify for why).</simpara>
<itemizedlist>
<listitem>
<simpara>Perhaps see: <link xl:href="https://groups.yahoo.com/neo/groups/fc-solve-discuss/conversations/topics/1264">https://groups.yahoo.com/neo/groups/fc-solve-discuss/conversations/topics/1264</link> .</simpara>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<simpara>Write a multi-threaded version.</simpara>
</listitem>
<listitem>
<simpara>Add a switch to ask the user if he wants to continue and enter a bigger
iterations limit.</simpara>
</listitem>
<listitem>
<simpara>Check for unmalloced data and if so gracefully exit.</simpara>
</listitem>
<listitem>
<simpara>Experiment with a delta-based state storage.</simpara>
<itemizedlist>
<listitem>
<simpara>see delta_states_debondt.c - port it to the main libfreecell-solver.</simpara>
</listitem>
<listitem>
<simpara>see: <link xl:href="http://fc-solve.shlomifish.org/to-do.html#orig_calc_states">http://fc-solve.shlomifish.org/to-do.html#orig_calc_states</link> .</simpara>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<simpara>Adapt the scans based on the parameters of the initial board.</simpara>
<itemizedlist>
<listitem>
<simpara>Try to find a correlation between various parameters of the initial board
(such as those calculated in the A* scan or the number of steps required to
sort the cards in each column by rank), and the performance of various scans
and then:</simpara>
<orderedlist numeration="arabic">
<listitem>
<simpara>Calculate the initial parameters on startup.</simpara>
</listitem>
<listitem>
<simpara>See what would be a good meta-scan based on them.</simpara>
</listitem>
<listitem>
<simpara>Use it.</simpara>
</listitem>
</orderedlist>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<simpara>Unit-test <literal>fc_solve_compare_lru_cache_keys</literal> in <literal>scans.c</literal>.</simpara>
</listitem>
<listitem>
<simpara>Interactive mode? Continue a scan that reached its limit.</simpara>
</listitem>
<listitem>
<simpara>Adapt <literal>-dto2</literal> to other parameters aside from depth, such as
total-number-of-cards-in-the-foundations or maximal foundation value.</simpara>
</listitem>
<listitem>
<simpara>Set up a <literal>-dto2</literal> like scheme for <literal>--method a-star</literal> where we change the tests
order based on the depth/etc.</simpara>
</listitem>
<listitem>
<simpara>Work on HYBRID_STACKS_STATES where if the stacks are shorter than 8 cards,
then one can store them in the normally pointer bytes, by specifying whether
the stack is a pointer or a direct stack using the low bit. (An improvement
to INDIRECT_STACK_STATES).</simpara>
</listitem>
</itemizedlist>
</section>
<section xml:id="to_be_considered">
<title>To be considered</title>
<itemizedlist>
<listitem>
<simpara>Make the code <link xl:href="https://sourceforge.net/projects/splint/">splint</link>-clean.</simpara>
</listitem>
<listitem>
<simpara>Write a multi-process client/server program.</simpara>
</listitem>
</itemizedlist>
</section>
</article>
|