mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 03:57:45 +00:00
MovePicker::score_captures() order with SEE when pv
Order PV nodes by SEE instead of MVV/LVA. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
+1
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user