File: TODO.xml

package info (click to toggle)
freecell-solver 3.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,332 kB
  • sloc: ansic: 29,493; perl: 8,911; xml: 5,162; python: 1,124; sh: 777; ruby: 358; cpp: 304; makefile: 150
file content (449 lines) | stat: -rw-r--r-- 12,531 bytes parent folder | download
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
<?asciidoc-toc?>
<?asciidoc-numbered?>

<article lang="en">
<articleinfo>
    <title>Freecell Solver&#8217;s To-do list</title>
    <date>2009-08-14</date>
    <author>
        <firstname>Shlomi</firstname>
        <surname>Fish</surname>
        <email>shlomif@cpan.org</email>
    </author>
    <authorinitials>SF</authorinitials>
<revhistory><revision><revnumber>$Id$</revnumber><date>2009-08-14</date><authorinitials>SF</authorinitials></revision></revhistory>
</articleinfo>
<section id="_pressing">
<title>Pressing</title>
<itemizedlist>
<listitem>
<simpara>
Check for thread-safety of the meta_allocator construct in <literal>dbm_fc_solver.c</literal>.
</simpara>
</listitem>
<listitem>
<simpara>
Try to convert the core libfreecell-solver code to meta_alloc and see if
it makes a difference in speed.
</simpara>
</listitem>
</itemizedlist>
</section>
<section id="_non_pressing">
<title>Non-pressing</title>
<itemizedlist>
<listitem>
<simpara>
Prune for variants whose empty columns cannot be filled at all: there is
no point in moving the last card in a column to a parent on a different
column, because then the column won&#8217;t be able to be filled and will be left
to disuse.
</simpara>
<itemizedlist>
<listitem>
<simpara>
See for example: Baker’s Dozen.
</simpara>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<simpara>
Trap one of the UNIX signals in fc-solve to quit prematurely with a valid
footer of "Iterations limit reached"/etc.
</simpara>
</listitem>
<listitem>
<simpara>
Create a displayer for fc-solve&#8217;s solutions which will allow seeing where a card
was moved from (using a colored →) and where it was placed.
</simpara>
<itemizedlist>
<listitem>
<simpara>
Adapt it to dbm_fc_solve&#8217;s solutions.
</simpara>
</listitem>
<listitem>
<simpara>
Create a GUI version.
</simpara>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<simpara>
Create a more compact queue for <literal>dbm_solver.c</literal> which has a header of the
next pointer to the item, some integers for start and finish within
the queue, as well as a vector/array of items that are extracted. Then the
segment is recycled as a whole.
</simpara>
<itemizedlist>
<listitem>
<simpara>
Possibly offload the queue segments to the hard disk.
</simpara>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<simpara>
Adapt the new balanced binary tree to store entire encoded_keys instead of
pointers (to save space).
</simpara>
</listitem>
<listitem>
<simpara>
Make sure that run_hard_thread runs the soft_thread up to the limit of the
instance&#8594;num_times or the soft_thread&#8217;s upper bound instead of entering
and exiting.
</simpara>
</listitem>
<listitem>
<simpara>
Unit-test <literal>fc_solve_compare_lru_cache_keys</literal> in <literal>scans.c</literal>.
</simpara>
</listitem>
<listitem>
<simpara>
Add an option to convert the stack_locs and fc_locs to a
MAX_NUM_STACKS-factorial permutation that can be stored compactly.
</simpara>
</listitem>
<listitem>
<simpara>
With the <literal>fc-solve</literal> command line program: add a flag to trigger different
notice on having reached <literal>FCS_SUSPEND_PROCESS</literal>.
</simpara>
</listitem>
<listitem>
<simpara>
Experiment with using "selection sort" instead of "insertion sort" when
sorting small data sets (columns, freecells, derived states, etc.).
</simpara>
</listitem>
<listitem>
<simpara>
Divide the scan type variable into two variables: super-scan
(DFS vs BeFS/BFS/Opt) and sub-scan (random_dfs, soft_dfs, etc.), to facilitate
multiplexing them.
</simpara>
</listitem>
<listitem>
<simpara>
If <literal>-opt</literal> is specified for the flare, then make sure that if the flares
loop stop it when it&#8217;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>
Inline fc_solve_free_instance().
</simpara>
</listitem>
<listitem>
<simpara>
Experiment with making fcs_move_t a bit-field with half-octets/etc. for
the various fields.
</simpara>
<itemizedlist>
<listitem>
<simpara>
Make sure that the amount required can fit there using CMake and a log2
function.
</simpara>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<simpara>
Play with moving commonly accessed struct elements to the start of
the struct to fit within the processor&#8217;s cache line. Like the Linux kernel
where the most important elements are at the first 32 bytes of the struct.
</simpara>
</listitem>
<listitem>
<simpara>
See about getting rid of the unused context variable where appropriate.
</simpara>
</listitem>
<listitem>
<simpara>
Investigate a way to have positions_by_rank also index according to the
suit, and to traverse only the possible parents or children based on the
suit.
</simpara>
</listitem>
<listitem>
<simpara>
Do the test for <literal>SUSPEND_PROCESS</literal> (<literal>check_if_limits_exceeded()</literal> ) in only
one place. There isn&#8217;t a need for it to be done in several places.
</simpara>
</listitem>
<listitem>
<simpara>
Experiment with using a union in the soft_thread to unify common elements
that are used only by one of the scans.
</simpara>
</listitem>
<listitem>
<simpara>
Move the trunk, branches, tags, etc. to under /fc-solve. (?)
</simpara>
</listitem>
<listitem>
<simpara>
Re-organize the source code to be more sensibly organized.
</simpara>
</listitem>
<listitem>
<simpara>
Experiment with using bit members for cards:
</simpara>
<itemizedlist>
<listitem>
<simpara>
<ulink url="http://en.wikipedia.org/wiki/Bit_field">http://en.wikipedia.org/wiki/Bit_field</ulink>
</simpara>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<simpara>
Abstract away the move of a single card from one column to another
in freecell.c.
</simpara>
</listitem>
<listitem>
<simpara>
Interactive mode? Continue a scan that reached its limit.
</simpara>
</listitem>
<listitem>
<simpara>
Investigate ways to perform more pointer arithematics and
(ptr &lt; end_ptr) ; ptr++ . A lot of code is under-optimized this way.
</simpara>
</listitem>
<listitem>
<simpara>
In the states handling, there&#8217;s still some room for pointer arithmetics.
</simpara>
</listitem>
<listitem>
<simpara>
Implement more of Kevin Atkinson&#8217;s Common Lisp solver&#8217;s atomic move types,
and try to contruct 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>
Add a FCS_2FC_FREECELL_ONLY macro for quickly solving 2 freecell games.
</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>
Add the new Freecell Solver-copmatible game variants of PySolFC.
</simpara>
</listitem>
</itemizedlist>
</listitem>
</itemizedlist>
</section>
<section id="_long_term">
<title>Long-term</title>
<itemizedlist>
<listitem>
<simpara>
Code a generic tests grouping.
</simpara>
</listitem>
<listitem>
<simpara>
Integrate the patsolve&#8217;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>
</listitem>
<listitem>
<simpara>
Write a multi-threaded version.
</simpara>
</listitem>
<listitem>
<simpara>
Port to Java (?)
</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>
</listitem>
<listitem>
<simpara>
Add a way to build the various libavl2 trees to be used as
positions/columns collections.
</simpara>
</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>
</itemizedlist>
</section>
<section id="_to_be_considered">
<title>To be considered</title>
<itemizedlist>
<listitem>
<simpara>
Make the code <ulink url="https://sourceforge.net/projects/splint/">splint</ulink>-clean.
</simpara>
</listitem>
<listitem>
<simpara>
Write a multi-process client/server program.
</simpara>
</listitem>
<listitem>
<simpara>
Add a limit to stacks number (in the case of Indirect Stack States),
number of states that are stored anywhere, etc.
</simpara>
</listitem>
</itemizedlist>
</section>
</article>