mirror of
https://github.com/sockspls/badfish
synced 2025-04-29 16:23:09 +00:00
MovePicker: avoid calling see() for LxH and equal captures
No functional change but should speed-up the captures scoring. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
b4fcfed55b
commit
32934c0c8d
1 changed files with 14 additions and 3 deletions
|
@ -228,18 +228,29 @@ void MovePicker::score_captures() {
|
|||
// to the badCaptures[] array.
|
||||
Move m;
|
||||
int seeValue;
|
||||
Square from, to;
|
||||
|
||||
for (int i = 0; i < numOfMoves; i++)
|
||||
{
|
||||
m = moves[i].move;
|
||||
seeValue = pos.see(m);
|
||||
from = move_from(m);
|
||||
to = move_to(m);
|
||||
|
||||
bool hxl = ( int(pos.midgame_value_of_piece_on(from))
|
||||
-int(pos.midgame_value_of_piece_on(to)) > 0)
|
||||
|| pos.type_of_piece_on(from) == KING;
|
||||
|
||||
// Avoid calling see() for LxH and equal captures because
|
||||
// SEE is always >= 0 and we order for MVV/LVA anyway.
|
||||
seeValue = (hxl ? pos.see(m) : 0);
|
||||
|
||||
if (seeValue >= 0)
|
||||
{
|
||||
if (move_promotion(m))
|
||||
moves[i].score = QueenValueMidgame;
|
||||
else
|
||||
moves[i].score = int(pos.midgame_value_of_piece_on(move_to(m)))
|
||||
-int(pos.type_of_piece_on(move_from(m)));
|
||||
moves[i].score = int(pos.midgame_value_of_piece_on(to))
|
||||
-int(pos.type_of_piece_on(from));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue