1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-29 16:23:09 +00:00

Revert "MovePicker::score_captures() order with SEE when pv"

Does not seem to increase the strenght.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba 2008-10-30 15:28:25 +01:00
parent 1146fc8d09
commit 8b57416ace

View file

@ -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;