From 7c61b8ad2a81438cdfd6c6e6c66f86a4760c0b8d Mon Sep 17 00:00:00 2001 From: Joona Kiiski Date: Fri, 12 Feb 2010 10:53:03 +0200 Subject: [PATCH] Search negative SEE moves in qsearch in PV After 2704 games on slow single core mod - orig: 1381 - 1323 Signed-off-by: Marco Costalba --- src/search.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/search.cpp b/src/search.cpp index 3e74ddc2..8d941f92 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -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) -- 2.39.2