diff options
| author | Adam <adammegarules1@gmail.com> | 2026-07-29 19:26:52 +0200 |
|---|---|---|
| committer | Adam <adammegarules1@gmail.com> | 2026-07-29 19:26:52 +0200 |
| commit | 1e57de844a1524b776167ccd7a1e822677d62527 (patch) | |
| tree | 35587b1a4ed6d94f3d267c329b9086a53d64347d /src/bot.cpp | |
| parent | 1a7996b7a5b477786421469ddcb2dc3f4e0de0bb (diff) | |
making bishops more valuable
Diffstat (limited to 'src/bot.cpp')
| -rw-r--r-- | src/bot.cpp | 5 |
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] = { |
