aboutsummaryrefslogtreecommitdiff
path: root/src/bot.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/bot.cpp')
-rw-r--r--src/bot.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/bot.cpp b/src/bot.cpp
index 5d5e1ad..4188308 100644
--- a/src/bot.cpp
+++ b/src/bot.cpp
@@ -10,14 +10,13 @@
#include <iostream>
#include <vector>
-const int SEARCH_DEPTH = 4;
+const int SEARCH_DEPTH = 5;
const int PAWN_VALUE = 100;
const int KNIGHT_VALUE = 320;
-const int BISHOP_VALUE = 330;
+const int BISHOP_VALUE = 400;
const int ROOK_VALUE = 500;
const int QUEEN_VALUE = 900;
-const int CHECK_BIAS = 10;
const int MATE = 10000;
const int PAWN_TABLE[64] = {