mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-20 17:16:33 +08: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:
@@ -218,7 +218,7 @@ void MovePicker::score_captures() {
|
|||||||
{
|
{
|
||||||
m = moves[i].move;
|
m = moves[i].move;
|
||||||
seeValue = pos.see(m);
|
seeValue = pos.see(m);
|
||||||
if (seeValue >= 0 && !pvNode)
|
if (seeValue >= 0)
|
||||||
{
|
{
|
||||||
if (move_promotion(m))
|
if (move_promotion(m))
|
||||||
moves[i].score = QueenValueMidgame;
|
moves[i].score = QueenValueMidgame;
|
||||||
|
|||||||
Reference in New Issue
Block a user