mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 08:43:09 +00:00
Correctly score enpassant captures
Surprisingly this rare case was not considered when scoring a capture. Also take in account that in the promotion case we gain a new piece (typically a queen) but we lose the promoting pawn. These small issues were present since Glaurung times! Found while browsing DiscoCheck sources bench: 5400063
This commit is contained in:
parent
ddbe6082c4
commit
5f58db8c99
1 changed files with 4 additions and 1 deletions
|
@ -168,7 +168,10 @@ void MovePicker::score_captures() {
|
|||
- type_of(pos.piece_moved(m));
|
||||
|
||||
if (type_of(m) == PROMOTION)
|
||||
it->score += PieceValue[MG][promotion_type(m)];
|
||||
it->score += PieceValue[MG][promotion_type(m)] - PieceValue[MG][PAWN];
|
||||
|
||||
else if (type_of(m) == ENPASSANT)
|
||||
it->score += PieceValue[MG][PAWN];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue