Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
ulthiel committed Mar 6, 2021
1 parent d6fd6c2 commit 0f9df59
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ This version here is a fork of v2.0.4 by [H.G. Muller](http://hgm.nubati.net/cgi
* NodesLimit. If set, any ```go``` command is replaced by ```go nodes NodesLimit```.
* DepthLimit. If set, any ```go``` command is replaced by ```go nodes DepthLimit```.
* Movetime. If set, any ```go``` command is replaced by ```go nodes movetime Movetime```.
* AverageMovetime and AverageMovetimeWindow. If set, any ```go``` command is replaced by ```go wtime AverageMovetime*AverageMovetimeWindow btime AverageMovetime*AverageMovetimeWindow movestogo AverageMovetimeWindow```. This allows to achieve an average time per move over a sequence of specified length.
* AverageMovetime and AverageMovetimeWindow. If set, any ```go``` command is replaced by ```go wtime AverageMovetime*AverageMovetimeWindow btime AverageMovetime*AverageMovetimeWindow movestogo AverageMovetimeWindow```. This allows to achieve an average time per move over a sequence of specified length. By default, AverageMovetimeWindow is set to 10.

## Compilation

Under Linux and macOS the compilation is as usual via ```./configure && make```. Under Windows you need to install [Cygwin](https://www.cygwin.com) together with the packages gcc-core and gcc-g++. Compilation can then be done in the Cygwin terminal via ```make -f makefile.gcc```. You have to add ```C:\cygwin64\bin``` (or whatever your Cywgin installation directory is) to your PATH in order to have all the necessary DLLs available.
Under Linux and macOS the compilation is as usual via ```./configure && make```. Under Windows you need to install [Cygwin](https://www.cygwin.com) together with the packages gcc-core and gcc-g++. Compilation can then be done in the Cygwin terminal via ```make -f makefile.gcc```. You have to add ```C:\cygwin64\bin``` (or whatever your Cywgin installation directory is) to your PATH in order to have all the necessary DLLs available.
4 changes: 2 additions & 2 deletions main.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
// constants


static const char * const Version = "2.0.4";
static const char * const Version = "2.0.4-ut-1";
static const char * const HelpMessage = "\
SYNTAX\n\
* polyglot [configfile] [-noini] [-ec engine] [-ed enginedirectory] [-en enginename] [-log true/false] [-lf logfile] [-pg <name>=<value>]* [-uci <name>=<value>]*\n\
Expand Down Expand Up @@ -485,7 +485,7 @@ int main(int argc, char * argv[]) {
} else {
my_string_set(&Uci->name,option_get_string(Option,"EngineName"));
}


// In the case we have been invoked with NoIni or StandardIni
// we still have to load a config file.
Expand Down

0 comments on commit 0f9df59

Please sign in to comment.