Skip to content

Commit 4b38926

Browse files
Reduce MAX_DEPTH from 128 to 120 because of hash table depth limit.
1 parent 34f160f commit 4b38926

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/globals.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ typedef unsigned int UINT;
115115

116116
// Search values
117117
#define MAX_PLY 256
118-
#define MAX_DEPTH 128
118+
#define MAX_DEPTH 120
119119
#define MAX_HIST 2048
120120
#define MAX_TIME 10000000
121121

src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
#define ENGINE "Tucano"
2222
#define AUTHOR "Alcides Schulz"
23-
#define VERSION "12.16"
23+
#define VERSION "12.17"
2424

2525
void develop_workbench(void);
2626
double bench(int depth, int print);

0 commit comments

Comments
 (0)