mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-22 18:17:02 +08:00
Retire pv[] from SearchStack
Extract PV info from TT instead of using a set of arrays. This is almost equivalent except for cases when TT is full and the PV entry is overwritten, but this is very rare. (Almost) No functional change Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -50,7 +50,6 @@ const int KILLER_MAX = 2;
|
||||
struct EvalInfo;
|
||||
|
||||
struct SearchStack {
|
||||
Move pv[PLY_MAX_PLUS_2];
|
||||
Move currentMove;
|
||||
Move mateKiller;
|
||||
Move threatMove;
|
||||
|
||||
Reference in New Issue
Block a user