mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-16 15:16:25 +08:00
Search negative SEE moves in qsearch in PV
After 2704 games on slow single core mod - orig: 1381 - 1323 Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
committed by
Marco Costalba
parent
a093f33154
commit
7c61b8ad2a
@@ -1695,6 +1695,7 @@ namespace {
|
||||
|
||||
// Don't search moves with negative SEE values
|
||||
if ( (!isCheck || evasionPrunable)
|
||||
&& !pvNode
|
||||
&& move != ttMove
|
||||
&& !move_is_promotion(move)
|
||||
&& pos.see_sign(move) < 0)
|
||||
|
||||
Reference in New Issue
Block a user