X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=README;h=f36abee5d016e8e073e31ec17fb2a93954a4b993;hb=baab92d048b9ba06dada3a17ec51d9e9340d4730;hp=632227770cd8c7c3f1833b181b72fdc5d30e4da0;hpb=ad2265d4fc54fc9ba99fc606e6174df34bfb4a0f;p=polyglot.git diff --git a/README b/README index 6322277..f36abee 100644 --- a/README +++ b/README @@ -23,7 +23,7 @@ SYNOPSIS polyglot info-book [-bin inputfile] [-exact] - polyglot dumb-book [-bin inputfile] -color color [-out outputfile] + polyglot dump-book [-bin inputfile] -color color [-out outputfile] polyglot [configfile] epd-test [-epd inputfile] [-min-depth depth] [-max-depth depth] [-max-time time] [-depth-delta delta] @@ -230,9 +230,9 @@ OPTIONS Unconditionally stop the seach after this amount of time. -depth-delta (default: 3) - Stop the search if the best move has been constant for this many - depths, on condition that the mininal depth and minimal time have - been reached. + Stop the search if the solution as been found and the best move has + been constant for this many depths, on condition that the mininal + depth and minimal time have been reached. -min-depth (default: 8) Minimal search depth when the search is stopped using @@ -266,7 +266,7 @@ CONFIG FILE FORMAT option = value ... - Lines starting with "#" are ignored. + The characters "#" and ";" serve as comment characters. NOTE: There can be spaces in option names or values. Do not use quotes. Boolean values are written as "true" or "false". @@ -324,6 +324,9 @@ CONFIG FILE FORMAT Show search information during engine pondering. Turning this off might be better for interactive use in some interfaces. + ScoreWhite (default: true) + Report score from white's point of view in xboard mode. + KibitzMove (default: false) Whether to kibitz when playing a move. @@ -340,6 +343,10 @@ CONFIG FILE FORMAT effect only if "KibitzPV" is selected, move kibitzes are always sent regardless of the delay. + KibitzInterval (default: 0) + This is another form of throttling. PolyGlot will usually wait this + many seconds before doing the next kibitz. + UCI (default: false) If true PolyGlot will not understand xboard commands. @@ -427,9 +434,22 @@ CONFIG FILE FORMAT RepeatPV (default: true) When true, PolyGlot repeats the last pv string (which also contains score,depth and time usage) it got from the engine. Some engines - however do not send a new pv string just before sending the move - and the now old pv string might confuse debugtools that parse the - winboard debug files. + however do not send a new pv string just before sending the move. + In that case the output of PolyGlot would be inconsistent. When + RepeatPV is false PolyGlot does not repeat the last pv string. Due + to the way kibitzing is implemented, KibitzMove is disabled in that + case. + + WbWorkArounds (default: false) + The intention of this option is to provide work arounds for + xboard/winboard bugs should they arise. Currently it only prevents + "feature option=" commands which contain "Draw" in their name from + being sent to the GUI. Some versions of xboard/winboard contain a + bug which causes such options to be interpreted as draw claims by + the engine. + + Engines that send options with "Draw" in their name are Rybka and + HIARCS. [Engine] section @@ -461,10 +481,19 @@ EXAMPLES polyglot make-book -pgn games.pgn -bin book.bin -max-ply 30 - Merge books "in1.bin" and "in2.bin" into a book "out.bin". + Merge books "w1.bin" and "w2.bin" into a book "w.bin". polyglot merge-book -in1 w1.bin -in2 w2.bin -out w.bin + Inspect lines for white in "w.bin" + + polyglot dump-book -bin w.bin -color white -out w_white.txt + + Test epd file "test.epd" with a (maximum) search time of 7 minutes per + position + + polyglot epd-test -epd test.epd -max-time 420 + The command line for using the UCI engine "fruit" in a GUI which uses the xboard protocol. @@ -494,4 +523,4 @@ SEE ALSO - 2009-01-15 POLYGLOT(6) + 2009-08-06 POLYGLOT(6)