From 1e57de844a1524b776167ccd7a1e822677d62527 Mon Sep 17 00:00:00 2001 From: Adam Date: Wed, 29 Jul 2026 19:26:52 +0200 Subject: making bishops more valuable --- src/bot.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/bot.cpp') 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 #include -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] = { -- cgit v1.2.3