Add forgotten files 1.4.70b
[polyglot.git] / polyglot.pod
1 =head1 NAME
2
3 PolyGlot -  Winboard protocol to UCI protocol adapter
4          -  book engine for Polyglot books 
5          -  a collection of utilities for creating and analyzing opening books
6          -  a utility for analyzing epd files
7          -  a perft counter
8
9 =head1 SYNOPSIS
10
11 polyglot [configfile] [-noini] [-ec engine] [-ed enginedirectory] [-en enginename] [-log true/false] [-lf logfile] [-pg <name>=<value>]* [-uci <name>=<value>]*
12
13 polyglot make-book [-pgn inputfile] [-bin outputfile] [-max-ply ply] [-min-game games] [-min-score score] [-only-white] [-only-black] [-uniform]
14
15 polyglot merge-book -in1 inputfile1 -in2 inputfile2 [-out outputfile]
16
17 polyglot info-book [-bin inputfile] [-exact]
18
19 polyglot dump-book [-bin inputfile] -color color [-out outputfile]
20
21 polyglot [configfile] epd-test [engineoptions] [-epd inputfile] [-min-depth depth] [-max-depth depth] [-max-time time] [-depth-delta delta] 
22
23 polyglot perft [-fen fen] [-max-depth depth]
24
25 =head1 DESCRIPTION
26
27 =head2 PolyGlot as adapter and book engine
28
29 PolyGlot is a "UCI adapter".  It connects a GUI interface (such as
30 XBoard, Winboard, Arena or Chessbase) to a UCI chess engine.
31
32 By specifying an opening book (in PolyGlot book format) chess engines can
33 transparently use such books.
34
35 PolyGlot understands the two main GUI protocols: UCI and
36 xboard. Normally the protocol will be auto detected but this can be
37 overridden in the configuration file.
38
39 In xboard mode PolyGlot fully translates between the xboard and UCI protocols.
40 In addition it tries to solve known problems with other adapters.
41 For instance, it detects and reports draws by fifty-move rule,
42 repetition, etc ... It also supports Chess960.
43
44 When in UCI mode PolyGlot mostly passes commands from the GUI
45 to the engine and vice versa, except that it will play book moves on
46 behalf of the engine when the occasion arises.
47
48 The engine options are exported as UCI options in UCI
49 mode and as "feature option=" commands in xboard mode. The latter form
50 an extension of the xboard protocol as defined by H.G. Muller.
51
52 Options which normally appear in the [PolyGlot] section of the
53 config file (see below) are exported as options with their name prefixed
54 by "Polyglot". This makes it easy to filter them in the GUI.
55
56 NOTE: Not all options are exported, only those that make sense in the
57 given mode.
58
59 =head2 Book making utilities
60
61 PolyGlot supports the "PolyGlot opening book format". This is the
62 defacto standard non-proprietary opening book format. It is fully documented
63 here
64
65 http://alpha.uhasselt.be/Research/Algebra/Toga/book_format.html
66
67 Roughly speaking a PolyGlot opening book is a collection of triples
68 (position, move, weight). A "position" is represented by a 64-bit
69 Zobrist hash key. The weight is proportional to the probability the move should
70 be played. 
71
72 Other opening book formats such as ChessBase's .ctg format and Arena's
73 .abk format are undocumented and proprietary. They can only be used 
74 by their own GUIs. 
75
76 PolyGlot can compile a pgn file into a binary PolyGlot book and furthermore
77 it can merge two such binary books into a third one.
78
79 PolyGlot can also extract some useful information from PolyGlot books. The utility
80 "dump-book" dumps the "lines" in a book for a given color. By definition
81 a line is a sequence of moves (from the starting position) in which
82 the given color makes only book moves and the other color makes 
83 arbitrary moves (i.e. not necessarily book moves).
84
85 Since a PolyGlot book is built up from positions and not lines there
86 may be (and there usually are) many positions in the book that are not
87 on a "line" as defined in the previous paragraph. It is convenient
88 to call such positions "isolated" positions. The utility "info-book"
89 counts such isolated positions.
90
91 Some of the isolated positions are provably unreachable and they
92 could in principle be deleted from the book. For example if a book
93 contains only the move "e4" in the starting position but also the
94 position after "d4 d5" then this last position is provably unreachable
95 since it requires white to make a non-book move when a book move is
96 available. Such situations arise frequently from the priority rules
97 in merging books.
98
99 Unfortunately not all isolated positions are provably unreachable and
100 it is difficult to identify the latter. If invoked with "-exact" the
101 utility info-book will attempt to count the isolated positions which
102 require a player to make a non-book move when a book move is available.
103 Due to the possibility of transpositions this is not a fool proof method.
104
105 =head2 Epd test mode
106
107 In epd test mode, PolyGlot will search positions in an epd file and
108 record the number of times the right best move was found.  The
109 arguments specify when to stop the search in any given position.
110
111 =head2 Perft counts
112
113 A perft count is the number of legal move sequence in a given position
114 up to a given depth. PolyGlot can perform such perft counts. It
115 is however much slower than other more dedicated programs.
116
117 =head1 OPTIONS
118
119 When PolyGlot is invoked as an adapter of in epd-test mode it gets its
120 options from a config file and then from the command line.  The
121 default config file is "polyglot.ini" but an alternative one may be
122 optionally included as first argument. The config file format is
123 described below.
124
125 The following engine options may be specified on the command line.
126
127 =over 4
128     
129 =item B<-noini> 
130
131 Do not use a config file, even if one was specified on the command line.
132
133 =item B<-pg>
134
135 The argument is a string of the form <name>=<value>. This option will
136 set the Polyglot option <name> to <value>. 
137
138 =item B<-uci>
139
140 The argument is a string of the form <name>=<value>. This option will
141 set the engine option <name> to <value>. 
142
143 =item B<-ec> 
144
145 This is an alias for -pg "EngineCommand=<value>"
146
147 =item B<-ed>
148
149 This is an alias for -pg "EngineDir=<value>"
150
151 =item B<-en>
152
153 This is an alias for -pg "EngineName=<value>"
154
155 =item B<-log> (default: false)
156
157 This is an alias for -pg "Log=<value>"
158
159 =item B<-lf> (default: "polyglot.log")
160
161 This is an alias for -pg "LogFile=<value>".
162
163 =item B<-wb> (default: "true")
164
165 This is an alias for -pg "OnlyWbOptions=<value>".
166
167 =back
168
169 When invoked as
170
171 =head2 polyglot make-book
172
173 PolyGlot supports the following options
174
175 =over 4
176
177 =item B<-pgn> (default: "book.pgn")
178
179 Input file in pgn format. 
180
181 =item B<-bin> (default: "book.bin")
182
183 Output file in PolyGlot format. 
184
185 =item B<-max-ply> (default: 1024)
186
187 Specifies the maximum ply-depth of lines included in the book.
188
189 =item B<-min-game> (default: 3)
190
191 Specifies the minimum number of games that have to contain this move for it to be included in the book.
192
193 =item B<-min-score> (default: 0.0)
194
195 Specifies the minimum score (or weight) this move should have received for 
196 it to  be included in the book. The score is 2*(wins)+(draws), globally scaled
197 to fit into 16 bits. 
198
199 =item B<-only-white>
200
201 Include only moves for white in the book.
202
203 =item B<-only-black>
204     
205 Include only moves for black in the book.
206
207 =item B<-uniform>
208     
209 Set all weights to 1. In other words, all moves will be selected with 
210 equal probability. 
211
212 =back
213
214 When invoked
215 as
216
217 =head2 polyglot merge-book
218
219 PolyGlot supports the following options
220
221 =over 4
222
223 =item B<-in1>
224     
225 First input file (in PolyGlot book format).
226
227 =item B<-in2>
228     
229 Second input file (in PolyGlot book format).
230
231 =item B<-out> (default: out.bin)
232     
233 Output file (in PolyGlot book format).
234
235 =back
236
237 Input files are not symmetrical, "in1" has priority over "in2". In other
238 words when a position occurs both in "in1" and "in2" only the
239 moves and weights from "in1" will be retained in "out".
240
241 When invoked
242 as
243
244 =head2 polyglot dump-book
245
246 PolyGlot supports the following options
247
248 =over 4
249
250 =item B<-bin> (default: book.bin)
251
252 Input file in PolyGlot book format.
253
254 =item B<-color> 
255
256 The color for whom to generate the lines.
257
258 =item B<-out> (default: book_<color>.txt)
259
260 The name of the output file.
261
262 =back
263
264 When invoked
265 as
266
267 =head2 polyglot info-book
268
269 PolyGlot supports the following options
270
271 =over 4
272
273 =item B<-bin> (default: book.bin)
274
275 Input file in PolyGlot book format.
276
277 =item B<-exact> 
278
279 Attempt to count the provably unreachable positions among the isolated ones.
280 Note that this takes a very long time. 
281
282 =back
283
284 When invoked as
285
286 =head2 polyglot epd-test
287
288 (possibly with a config file as first argument) PolyGlot supports
289 besides the generic options described above the following additional
290 options.
291
292 =over 4
293
294 =item B<-max-depth> (default: 63)
295
296 Unconditionally stop the search when this depth has
297 been reached.
298
299 =item B<-max-time> (default: 5.0)
300
301 Unconditionally stop the seach after this amount of time.
302
303 =item B<-depth-delta> (default: 3)
304
305 Stop the search if the solution as been found and the best move has
306 been constant for this many depths, on condition that the mininal
307 depth and minimal time have been reached.
308
309 =item B<-min-depth> (default: 8)
310
311 Minimal search depth when the search is stopped using "-depth-delta".
312
313 =item B<-min-time> (default: 1.0)
314
315 Minimal search time when the search is stopped using "-depth-delta".
316
317
318 =back
319
320 When invoked as
321
322 =head2 polyglot perft
323
324 PolyGlot supports the following
325 options
326
327 =over 4
328
329 =item B<-fen> (default: starting position) 
330
331 Fen at which to start searching.
332
333 =item B<-max-depth> (default: 1) 
334
335 Maximum depth to search.
336
337 =back
338
339 =head1 CONFIG FILE FORMAT
340
341 There should be a different config file for each engine.  
342
343 The config file is in the traditional INI format.  
344
345     [PolyGLot]
346     option = value
347     ...
348     [Engine]
349     option = value
350     ...
351
352 The characters "#" and ";" serve as comment characters. 
353
354 Initial and final white space is stripped from option names and
355 values. If you need to use characters which have a special meaning to
356 PolyGlot (these are ';#[]=\') you should quote them by preceding them
357 with '\'. "Quoting" other characters in this way has no effect. In
358 particular the use of '\' as a path separator in windows should
359 normally not affected.
360
361 =head2 [PolyGlot] section
362
363 This section is used by PolyGlot only.  The engine is unaware of these
364 options.  The list of available options is detailed below.
365
366 =over 4
367
368 =item B<EngineName> (default: UCI name)
369
370 This is the name that will appear in the GUI.  It is
371 cosmetic only.  You can use different names for tweaked versions of
372 the same engine.
373
374 =item B<EngineDir> (default: ".")
375
376 Full path of the directory where the engine is installed.  You can use
377 "." (without the quotes) if you know that PolyGlot will be launched in
378 the engine directory or the engine is in the "path" and does not need
379 any data file.
380
381 =item B<EngineCommand>
382
383 Put here the name of the engine executable file.  You can also add
384 command-line arguments.  Path searching is used and the current
385 directory will be "EngineDir". On Linux the EngineCommand is passed
386 to wordexp so that shell quoting rules and expansions are applied.
387 On Windows the EngineCommand is simply passed to CreateProcess which
388 does its own shell like processing.
389
390 =item B<SettingsDir> (default: $HOME/.polyglot on Linux; ".\_PG" on Windows)
391
392 The directory where ini files are stored for engines that are started with
393 -noini. Such ini files may be created by pushing the "Save" button in the
394 Engine settings dialog in WB/XB 4.4.0 and higher. As a special exception
395 (for WB/XB 4.4.0 compatibility) this directory is also used in case
396 PolyGlot is started with config files named "polyglot_1st.ini" or
397 "polyglot_2nd.ini".
398
399 =item B<Log> (default: false)
400
401 Whether PolyGlot should log all transactions with the interface and
402 the engine.  This should be necessary only to locate problems.
403
404 =item B<LogFile> (default: polyglot.log)
405
406 The name of the log file.  Note that it is put where PolyGlot was
407 launched from, not into the engine directory.
408
409 WARNING: Log files are not cleared between sessions, and can become
410 very large.  It is safe to remove them though.
411
412 =item B<Resign> (default: false)
413
414 Set this to "true" if you want PolyGlot to resign on behalf of the
415 engine.
416
417 NOTE: Some engines display buggy scores from time to time although the
418 best move is correct.  Use this option only if you know what you are
419 doing (e.g. you always check the final position of games).
420
421 =item B<ResignMoves> (default: 3)
422
423 Number of consecutive moves with "resign" score (see below) before
424 PolyGlot resigns for the engine.  Positions with only one legal move
425 are ignored.
426
427 =item B<ResignScore> (default: 600)
428
429 This is the score in centipawns that will trigger resign "counting".
430
431 =item B<ShowPonder> (default: true)
432
433 Show search information during engine pondering.  Turning this off
434 might be better for interactive use in some interfaces.
435
436 =item B<ScoreWhite> (default: true)
437
438 Report score from white's point of view in xboard mode.
439
440 =item B<KibitzMove> (default: false)
441
442 Whether to kibitz when playing a move.
443
444 =item B<KibitzPV> (default: false)
445
446 Whether to kibitz when the PV is changed (new iteration or new best move).
447
448 =item B<KibitzCommand> (default: "tellall")
449
450 xboard command to use for kibitzing, normally "tellall" for kibitzing
451 or "tellothers" for whispering.
452
453 =item B<KibitzDelay> (default: 5)
454
455 How many seconds to wait before starting kibitzing.  This has an
456 effect only if "KibitzPV" is selected, move kibitzes are always sent
457 regardless of the delay.
458
459 =item B<KibitzInterval> (default: 0)
460
461 This is another form of throttling. PolyGlot will usually wait this
462 many seconds before doing the next kibitz. 
463
464 =item B<UCI> (default: false)
465
466 If true PolyGlot will not understand xboard commands. 
467
468 =item B<MateScore> (default: 10000)
469
470 Mate score reported to GUI when in xboard mode.
471
472 =item B<Book> (default: false)
473
474 Indicates whether a PolyGlot book should be used.  This has no effect
475 on the engine own book (which can be controlled with the UCI option
476 "OwnBook" in the [Engine] section).  In particular, it is possible to
477 use both a PolyGlot book and an engine book.  In that case, the engine
478 book will be used whenever PolyGlot is out of book.  Remember that
479 PolyGlot is unaware of whether the engine is itself using a book or
480 not.
481
482 =item B<BookFile> (default: book.bin)
483
484 The name of the (binary) book file.  Note that PolyGlot will look for
485 it in the directory it was launched from, not in the engine directory.
486 Of course, full path can be used in which case the current directory
487 does not matter.
488
489 =item B<BookRandom> (default: true)
490
491 Select moves according to their weights in the book. If false the move
492 with the highest weight is selected. 
493
494 =item B<BookLearn> (default: false)
495
496 This is a noop.
497
498 =item B<BookDepth> (default: 256)
499
500 Stop using the book after this number of moves. 
501
502 =item B<BookTreshold> (default: 5)
503
504 Do not play moves with a weight (probability) lower than this (in per mil). 
505
506 =item B<UseNice> (default: false)
507
508 Run the engine at nice level 5, or "NiceValue" if it set.  On some
509 operating systems it may be necessary to run the engine at lower
510 priority for it to be responsive to commands from PolyGlot while
511 searching.
512
513 =item B<NiceValue> (default: 5)
514
515 Nice levels go from -20 to 20 with 20 being the lowest priority.
516 On Unix only root can set negative nice levels. On Windows the standard
517 Win32 priority levels are mapped in a sensible way to Unix nice levels.
518
519
520 =item B<Affinity> (default: -1)
521
522 This a bit vector in which each bit represents the processors that a
523 process is allowed to run on. This option works only on Windows. 
524
525 =item B<STFudge> (default: 20)
526
527 PolyGlot will translate "st x" as "go movetime 1000*x-STFudge". 
528 The rationale is that in the UCI specification the argument of movetime
529 is defined as the exact search time whereas the argument of the
530 st command is only an upperbound. 
531
532 =item B<OnlyWbOptions> (default: true)
533
534 If true then PolyGlot restricts the options it sends to those that
535 are potentially useful for WinBoard. 
536
537 =back
538
539 =head2 Work arounds 
540
541 Work arounds are identical to options except that they should be used
542 only when necessary.  Their purpose is to try to hide problems with
543 various software (not just engines).  
544
545 IMPORTANT: Any of these work arounds might be removed in future
546 versions of PolyGlot.  You are strongly recommended to contact the
547 author of faulty software and truly fix the problem.
548
549 PolyGlot supports the following work arounds:
550
551 =over 4
552
553 =item B<UCIVersion> (default: 2)
554
555 The default value of 2 corresponds to UCI+.  Use 1 to select plain
556 UCI for engines that have problems with UCI+.
557
558 =item B<CanPonder> (default: false)
559
560 PolyGlot now conforms to the documented UCI behaviour: the engine will
561 be allowed to ponder only if it (the engine) declares the "Ponder" UCI
562 option.  However some engines which can actually ponder do not declare
563 the option.  This work around lets PolyGlot know that they can ponder.
564
565 =item B<SyncStop> (default: false)
566
567 When a ponder miss occurs, Polyglot interrupts the engine and
568 IMMEDIATELY launches a new search.  While there should be no problem
569 with this, some engines seem confused and corrupt their search board.
570 "SyncStop" forces PolyGlot to wait for the (now useless) ponder search
571 to finish before launching the new search.
572
573 =item B<PromoteWorkAround> (default: false)
574
575 Some engines do not specify a promotion piece, e.g. they send "e7e8"
576 instead of the correct "e7e8q".  This work around enables the
577 incorrect form (and of course promotes into a queen).
578
579 =item B<RepeatPV> (default: true)
580
581 When true, PolyGlot repeats the last pv string (which also contains
582 score,depth and time usage) it got from the engine. Some engines
583 however do not send a new pv string just before sending the move.
584 In that case the output of PolyGlot would be inconsistent. 
585 When RepeatPV is false PolyGlot does not repeat the last pv string.
586 Due to the way kibitzing is implemented, KibitzMove is disabled in that case. 
587
588 =back
589
590
591 =head2 [Engine] section
592
593 This section contains engine UCI options.  PolyGlot does not
594 understand them, but sends the information to the engine at startup
595 (converted to UCI form).  You can add any UCI option that makes sense
596 to the engine (not just the common options about hash-table size and
597 tablebases).
598
599 NOTE: use INI syntax, not UCI.  For example "OwnBook = true" is
600 correct.  It will be replaced by PolyGlot with "setoption name OwnBook
601 value true" at engine startup.
602
603 Standard UCI options are 
604
605     Hash 
606     NalimovPath
607     NalimovCache
608     OwnBook
609
610 Hidden options like "Ponder" or "UCI_xxx" are automatic
611 and should not be put in an INI file.
612
613 The other options are engine-specific.  Check their name using a UCI
614 GUI or launch the engine in a console and type "uci".
615
616 =head1 EXAMPLES
617
618 Running the UCI engine "fruit" under xboard 4.3.15 and later (this invokes PolyGlot internally).
619
620     xboard -fcp fruit -fUCI
621
622 An explicit command line for using the UCI engine "fruit" with logging enabled (this works also with older versions of xboard).
623
624     xboard -fcp "polyglot -noini -log true -ec fruit"
625
626 The equivalent config file would be:
627
628     [PolyGlot]
629     EngineCommand = fruit
630     Log = true
631     [Engine]
632
633 Compile "games.pgn" into a book "book.bin" retaining all lines of at
634 most 30 plies.
635
636     polyglot make-book -pgn games.pgn -bin book.bin -max-ply 30
637
638 Merge books "w1.bin" and "w2.bin" into a book "w.bin".
639
640     polyglot merge-book -in1 w1.bin -in2 w2.bin -out w.bin
641
642 Inspect lines for white in "w.bin"
643
644     polyglot dump-book -bin w.bin -color white -out w_white.txt
645
646 Test epd file "test.epd" with a (maximum) search time of 7 minutes per position
647
648     polyglot epd-test -epd test.epd -max-time 420
649
650 =head1 EXIT STATUS
651
652 PolyGlot always returns 0 on exit. 
653
654 =head1 AUTHORS
655
656 Main author: Fabien Letouzey<fabien_letouzey(at)hotmail.com>
657
658 Native Windows port:  Huang Chen<webmaster@elephantbase.net> ("Morning Yellow")
659
660 Various enhancements: Fonzy Bleumers<match(at)geenvis.net>
661
662 UCI port and implementation of new WB protocol: Michel Van den Bergh
663 <michel.vandenbergh(at)uhasselt.be>
664
665
666
667 =head1 SEE ALSO
668
669 xboard(6)