mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-19 08:36:33 +08:00
Fix a silly bug that disabled second killer
Signed-off-by: Marco Costalba <mcostalba@gmail.com> Signed-off-by: unknown <Marco@.(none)>
This commit is contained in:
@@ -71,7 +71,7 @@ MovePicker::MovePicker(const Position& p, bool pv, Move ttm,
|
||||
ttMove = ttm;
|
||||
mateKiller = (ss.mateKiller == ttm)? MOVE_NONE : ss.mateKiller;
|
||||
killer1 = ss.killers[0];
|
||||
killer2 = ss.killers[0];
|
||||
killer2 = ss.killers[1];
|
||||
depth = d;
|
||||
movesPicked = 0;
|
||||
numOfMoves = 0;
|
||||
|
||||
Reference in New Issue
Block a user