Alter version number to 2.0.4
[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://hgm.nubati.net/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<Save>
391
392 =item B<SettingsFile> (default: polyglot.ini)
393
394 The SettingsFile option redefines the name of Polyglot's config file,
395 so future use of the interactive "Polyglot Save" option can save
396 interactively (i.e. through the GUI interface) changed settings
397 to another file as from which the settings were originally read.
398
399 =item B<SettingsDir> (default: $HOME/.polyglot on Linux; ".\_PG" on Windows)
400
401 The directory where ini files are stored for engines that are started with
402 -noini. Such ini files may be created by pushing the "Polyglot Save" button in the
403 Engine settings dialog in WB/XB 4.4.0 and higher. As a special exception
404 (for WB/XB 4.4.0 compatibility) this directory is also used in case
405 PolyGlot is started with config files named "polyglot_1st.ini" or
406 "polyglot_2nd.ini".
407
408 =item B<Log> (default: false)
409
410 Whether PolyGlot should log all transactions with the interface and
411 the engine.  This should be necessary only to locate problems.
412
413 =item B<LogFile> (default: polyglot.log)
414
415 The name of the log file.  Note that it is put where PolyGlot was
416 launched from, not into the engine directory.
417
418 WARNING: Log files are not cleared between sessions, and can become
419 very large.  It is safe to remove them though.
420
421 =item B<Resign> (default: false)
422
423 Set this to "true" if you want PolyGlot to resign on behalf of the
424 engine.
425
426 NOTE: Some engines display buggy scores from time to time although the
427 best move is correct.  Use this option only if you know what you are
428 doing (e.g. you always check the final position of games).
429
430 =item B<ResignMoves> (default: 3)
431
432 Number of consecutive moves with "resign" score (see below) before
433 PolyGlot resigns for the engine.  Positions with only one legal move
434 are ignored.
435
436 =item B<ResignScore> (default: 600)
437
438 This is the score in centipawns that will trigger resign "counting".
439
440 =item B<QueenNeverResigns> (default: true)
441
442 Suppresses resigning irrespective of the score,
443 as long as the engine still has a Queen (hoping for a perpetual).
444
445 =item B<Handledraws> (default: false)
446
447 When set Polyglot can accept draw offers on behalf of the engine,
448 when the last reported engine score is below Polyglot's contempt.
449
450 =item B<ContemptScore> (default: 30)
451
452 This is the score in centipawns that the engine must minimally see
453 in its own disadvantage before Polyglot will accept a draw offer.
454
455 =item B<ShowPonder> (default: true)
456
457 Show search information during engine pondering.  Turning this off
458 might be better for interactive use in some interfaces.
459
460 =item B<ShowTbHits> (default: false)
461
462 Reports extra info on selective depth, search speed (knps) and
463 tablebase hits at the beginning of the PV field in the thinking output
464 of WinBoard protocol, just before the real PV.
465
466 =item B<ScoreWhite> (default: true)
467
468 Report score from white's point of view in xboard mode. (Wrecks XBoard...).
469
470 =item B<KibitzMove> (default: false)
471
472 Whether to kibitz when playing a move.
473
474 =item B<KibitzPV> (default: false)
475
476 Whether to kibitz when the PV is changed (new iteration or new best move).
477
478 =item B<KibitzCommand> (default: "tellall")
479
480 xboard command to use for kibitzing, normally "tellall" for kibitzing
481 or "tellothers" for whispering.
482
483 =item B<KibitzDelay> (default: 5)
484
485 How many seconds to wait before starting kibitzing.  This has an
486 effect only if "KibitzPV" is selected, move kibitzes are always sent
487 regardless of the delay.
488
489 =item B<KibitzInterval> (default: 0)
490
491 This is another form of throttling. PolyGlot will usually wait this
492 many seconds before doing the next kibitz. 
493
494 =item B<UCI> (default: false)
495
496 If true PolyGlot will not understand xboard commands. 
497
498 =item B<MateScore> (default: 0)
499
500 Mate score reported to GUI when in xboard mode.
501 When set to 0 it uses the new CECP convention of reporting 100000 + N
502 for mate in N moves, and -(100000 + N) for mated in N.
503
504 =item B<Book> (default: false)
505
506 Indicates whether a PolyGlot book should be used.  This has no effect
507 on the engine own book (which can be controlled with the UCI option
508 "OwnBook" in the [Engine] section).  In particular, it is possible to
509 use both a PolyGlot book and an engine book.  In that case, the engine
510 book will be used whenever PolyGlot is out of book.  Remember that
511 PolyGlot is unaware of whether the engine is itself using a book or
512 not.
513
514 =item B<BookFile> (default: book.bin)
515
516 The name of the (binary) book file.  Note that PolyGlot will look for
517 it in the directory it was launched from, not in the engine directory.
518 Of course, full path can be used in which case the current directory
519 does not matter.
520
521 =item B<BookRandom> (default: true)
522
523 Select moves according to their weights in the book. If false the move
524 with the highest weight is selected. 
525
526 =item B<BookLearn> (default: false)
527
528 Switches on updating of the 'learn fields' of the opening book,
529 which for each move record the number of times the move was played,
530 and the number of half-points scored with it.
531 It also switches on making use of this information already in the book,
532 for altering the move-selection probabilities from those
533 specified by the book weights.
534 (Rarely played moves will be favored,
535 moves with a significant poor performance will be shunned.)
536 This option must be set before the book is specified,
537 or the updating of the learn info will not work!
538
539 =item B<BookDepth> (default: 256)
540
541 Stop using the book after this number of moves. 
542
543 =item B<BookTreshold> (default: 5)
544
545 Do not play moves with a weight (probability) lower than this (in per mil). 
546
547 =item B<UseNice> (default: false)
548
549 Run the engine at nice level 5, or "NiceValue" if it set.  On some
550 operating systems it may be necessary to run the engine at lower
551 priority for it to be responsive to commands from PolyGlot while
552 searching.
553
554 =item B<NiceValue> (default: 5)
555
556 Nice levels go from -20 to 20 with 20 being the lowest priority.
557 On Unix only root can set negative nice levels. On Windows the standard
558 Win32 priority levels are mapped in a sensible way to Unix nice levels.
559
560
561 =item B<Affinity> (default: -1)
562
563 This a bit vector in which each bit represents the processors that a
564 process is allowed to run on. This option works only on Windows. 
565
566 =item B<STFudge> (default: 20)
567
568 PolyGlot will translate "st x" as "go movetime 1000*x-STFudge". 
569 The rationale is that in the UCI specification the argument of movetime
570 is defined as the exact search time whereas the argument of the
571 st command is only an upperbound. 
572
573 =item B<OnlyWbOptions> (default: true)
574
575 If true then PolyGlot restricts the options it sends to those that
576 are potentially useful for WinBoard. 
577
578 =back
579
580 =head2 Work arounds 
581
582 Work arounds are identical to options except that they should be used
583 only when necessary.  Their purpose is to try to hide problems with
584 various software (not just engines).  
585
586 IMPORTANT: Any of these work arounds might be removed in future
587 versions of PolyGlot.  You are strongly recommended to contact the
588 author of faulty software and truly fix the problem.
589
590 PolyGlot supports the following work arounds:
591
592 =over 4
593
594 =item B<UCIVersion> (default: 2)
595
596 The default value of 2 corresponds to UCI+.  Use 1 to select plain
597 UCI for engines that have problems with UCI+.
598
599 =item B<CanPonder> (default: false)
600
601 PolyGlot now conforms to the documented UCI behaviour: the engine will
602 be allowed to ponder only if it (the engine) declares the "Ponder" UCI
603 option.  However some engines which can actually ponder do not declare
604 the option.  This work around lets PolyGlot know that they can ponder.
605
606 =item B<SyncStop> (default: false)
607
608 When a ponder miss occurs, Polyglot interrupts the engine and
609 IMMEDIATELY launches a new search.  While there should be no problem
610 with this, some engines seem confused and corrupt their search board.
611 "SyncStop" forces PolyGlot to wait for the (now useless) ponder search
612 to finish before launching the new search.
613
614 =item B<PromoteWorkAround> (default: false)
615
616 Some engines do not specify a promotion piece, e.g. they send "e7e8"
617 instead of the correct "e7e8q".  This work around enables the
618 incorrect form (and of course promotes into a queen).
619
620 =item B<RepeatPV> (default: true)
621
622 When true, PolyGlot repeats the last pv string (which also contains
623 score,depth and time usage) it got from the engine. Some engines
624 however do not send a new pv string just before sending the move.
625 In that case the output of PolyGlot would be inconsistent. 
626 When RepeatPV is false PolyGlot does not repeat the last pv string.
627 Due to the way kibitzing is implemented, KibitzMove is disabled in that case. 
628
629 =back
630
631
632 =head2 [Engine] section
633
634 This section contains engine UCI options.  PolyGlot does not
635 understand them, but sends the information to the engine at startup
636 (converted to UCI form).  You can add any UCI option that makes sense
637 to the engine (not just the common options about hash-table size and
638 tablebases).
639
640 NOTE: use INI syntax, not UCI.  For example "OwnBook = true" is
641 correct.  It will be replaced by PolyGlot with "setoption name OwnBook
642 value true" at engine startup.
643
644 Standard UCI options are 
645
646     Hash 
647     NalimovPath
648     NalimovCache
649     GaviotaPath
650     GaviotaCache
651     SyzygyPath
652     OwnBook
653
654 Hidden options like "Ponder" or "UCI_xxx" are automatic
655 and should not be put in an INI file.
656
657 The other options are engine-specific.  Check their name using a UCI
658 GUI or launch the engine in a console and type "uci".
659
660 =head1 EXAMPLES
661
662 Running the UCI engine "fruit" under xboard 4.3.15 and later (this invokes PolyGlot internally).
663
664     xboard -fcp fruit -fUCI
665
666 An explicit command line for using the UCI engine "fruit" with logging enabled (this works also with older versions of xboard).
667
668     xboard -fcp "polyglot -noini -log true -ec fruit"
669
670 The equivalent config file would be:
671
672     [PolyGlot]
673     EngineCommand = fruit
674     Log = true
675     [Engine]
676
677 Compile "games.pgn" into a book "book.bin" retaining all lines of at
678 most 30 plies.
679
680     polyglot make-book -pgn games.pgn -bin book.bin -max-ply 30
681
682 Merge books "w1.bin" and "w2.bin" into a book "w.bin".
683
684     polyglot merge-book -in1 w1.bin -in2 w2.bin -out w.bin
685
686 Inspect lines for white in "w.bin"
687
688     polyglot dump-book -bin w.bin -color white -out w_white.txt
689
690 Test epd file "test.epd" with a (maximum) search time of 7 minutes per position
691
692     polyglot epd-test -epd test.epd -max-time 420
693
694 =head1 EXIT STATUS
695
696 PolyGlot always returns 0 on exit. 
697
698 =head1 AUTHORS
699
700 Main author: Fabien Letouzey<fabien_letouzey(at)hotmail.com>
701
702 Native Windows port:  Huang Chen<webmaster@elephantbase.net> ("Morning Yellow")
703
704 Various enhancements: Fonzy Bleumers<match(at)geenvis.net>
705
706 UCI port and implementation of new WB protocol: Michel Van den Bergh
707 <michel.vandenbergh(at)uhasselt.be>
708
709
710
711 =head1 SEE ALSO
712
713 xboard(6)