mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-22 01:56:58 +08:00
Provide selective search depth info for each pv move
No functional change Closes #1166
This commit is contained in:
@@ -35,7 +35,7 @@ ThreadPool Threads; // Global object
|
||||
Thread::Thread() {
|
||||
|
||||
exit = false;
|
||||
maxPly = 0;
|
||||
selDepth = 0;
|
||||
nodes = tbHits = 0;
|
||||
idx = Threads.size(); // Start from 0
|
||||
|
||||
@@ -210,7 +210,6 @@ void ThreadPool::start_thinking(Position& pos, StateListPtr& states,
|
||||
|
||||
for (Thread* th : Threads)
|
||||
{
|
||||
th->maxPly = 0;
|
||||
th->nodes = 0;
|
||||
th->tbHits = 0;
|
||||
th->rootDepth = DEPTH_ZERO;
|
||||
|
||||
Reference in New Issue
Block a user