aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdam <adammegarules1@gmail.com>2026-07-29 19:26:52 +0200
committerAdam <adammegarules1@gmail.com>2026-07-29 19:26:52 +0200
commit1e57de844a1524b776167ccd7a1e822677d62527 (patch)
tree35587b1a4ed6d94f3d267c329b9086a53d64347d /src
parent1a7996b7a5b477786421469ddcb2dc3f4e0de0bb (diff)
making bishops more valuable
Diffstat (limited to 'src')
-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] = {