From: Marco Costalba Date: Mon, 27 Oct 2008 21:04:47 +0000 (+0100) Subject: MovePicker::score_captures() order with SEE when pv X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=b2b86cfd271819ca1d0f5c3c637e6b53d9c337bc MovePicker::score_captures() order with SEE when pv Order PV nodes by SEE instead of MVV/LVA. Signed-off-by: Marco Costalba --- diff --git a/src/movepick.cpp b/src/movepick.cpp index 187a3c51..0ff1dcfc 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) + if (seeValue >= 0 && !pvNode) { if (move_promotion(m)) moves[i].score = QueenValueMidgame;