mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-24 19:16:49 +08:00
qsearch: take in account enpassant in futility formula
Should not change anything at ELO level but it is the correct thing to do. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -1487,6 +1487,7 @@ namespace {
|
||||
Value futilityValue = staticValue
|
||||
+ Max(pos.midgame_value_of_piece_on(move_to(move)),
|
||||
pos.endgame_value_of_piece_on(move_to(move)))
|
||||
+ (move_is_ep(move) ? PawnValueEndgame : Value(0))
|
||||
+ FutilityMargin0
|
||||
+ ei.futilityMargin;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user