Skip to content

Commit

Permalink
Merge branch 'main' into shallow-again
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonnold committed Feb 3, 2024
2 parents febaf3e + bb1edb0 commit eff4be3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
EXE = berserk
SRC = *.c nn/*.c pyrrhic/tbprobe.c
CC = gcc
VERSION = 20240124
VERSION = 20240201
MAIN_NETWORK = berserk-da85741a5582.nn
EVALFILE = $(MAIN_NETWORK)
DEFS = -DVERSION=\"$(VERSION)\" -DEVALFILE=\"$(EVALFILE)\" -DNDEBUG
Expand Down
4 changes: 2 additions & 2 deletions src/uci.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

#define START_FEN "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1"

int MOVE_OVERHEAD = 6;
int MOVE_OVERHEAD = 10;
int MULTI_PV = 1;
int PONDER_ENABLED = 0;
int CHESS_960 = 0;
Expand Down Expand Up @@ -260,7 +260,7 @@ void PrintUCIOptions() {
printf("option name Ponder type check default false\n");
printf("option name UCI_ShowWDL type check default true\n");
printf("option name UCI_Chess960 type check default false\n");
printf("option name MoveOverhead type spin default 6 min 0 max 10000\n");
printf("option name MoveOverhead type spin default 10 min 0 max 10000\n");
printf("option name Contempt type spin default 0 min -100 max 100\n");
printf("option name EvalFile type string default <empty>\n");
printf("uciok\n");
Expand Down

0 comments on commit eff4be3

Please sign in to comment.