aboutsummaryrefslogtreecommitdiff
path: root/src/bot.cpp
diff options
context:
space:
mode:
authorAdam <adammegarules1@gmail.com>2026-07-28 14:18:11 +0200
committerAdam <adammegarules1@gmail.com>2026-07-28 14:18:11 +0200
commit530b81fb80159b68598d4b974924d2206f7c9d6a (patch)
tree6b5029872239e179fc6299f08f39881e919f2729 /src/bot.cpp
parentd69c731bde5cf2c958c794f505684365072ab64a (diff)
optimazing the getlegal moves function
Diffstat (limited to 'src/bot.cpp')
-rw-r--r--src/bot.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bot.cpp b/src/bot.cpp
index c8842bd..4137f05 100644
--- a/src/bot.cpp
+++ b/src/bot.cpp
@@ -57,7 +57,7 @@ int ROOK_TABLE[64] = {
0, 0, 5, 10, 10, 5, 0, 0, //
};
-const int SEARCH_DEPTH = 5;
+const int SEARCH_DEPTH = 4;
#include <fstream>