From: Marco Costalba Date: Thu, 30 Oct 2008 14:28:25 +0000 (+0100) Subject: Revert "MovePicker::score_captures() order with SEE when pv" X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=8b57416ace03cc37568f19ed561931cfda288bb3;hp=1146fc8d09204945f01ce5ebe8dd24150c617631 Revert "MovePicker::score_captures() order with SEE when pv" Does not seem to increase the strenght. Signed-off-by: Marco Costalba --- diff --git a/src/movepick.cpp b/src/movepick.cpp index 0ff1dcfc..187a3c51 100644 --- a/src/movepick.cpp +++ b/src/movepick.cpp @@ -218,7 +218,7 @@ void MovePicker::score_captures() { { m = moves[i].move; seeValue = pos.see(m); - if (seeValue >= 0 && !pvNode) + if (seeValue >= 0) { if (move_promotion(m)) moves[i].score = QueenValueMidgame;