mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-24 19:16:49 +08:00
Fix SearchStack and ply misalignment in RootMoveList
In RootMoveList c'tor we call qsearch() with ply == 1 but SearchStack at 0. We never noticed before because in qsearch we don't access previous's ply SearchStack, otherwise we would have got a nice crash ;-) This bug is a fall down of previous patch. No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -2787,7 +2787,7 @@ namespace {
|
||||
init_ss_array(ss);
|
||||
pos.do_move(cur->move, st);
|
||||
moves[count].move = cur->move;
|
||||
moves[count].score = -qsearch<PV>(pos, ss, -VALUE_INFINITE, VALUE_INFINITE, Depth(0), 1, 0);
|
||||
moves[count].score = -qsearch<PV>(pos, ss+1, -VALUE_INFINITE, VALUE_INFINITE, Depth(0), 1, 0);
|
||||
moves[count].pv[0] = cur->move;
|
||||
moves[count].pv[1] = MOVE_NONE;
|
||||
pos.undo_move(cur->move);
|
||||
|
||||
Reference in New Issue
Block a user