X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.cpp;h=c80b9bd1fba91c8a1c4ae4f677de646959a0d50a;hp=a5523fc16ee3c00c01f861b679c2f199ffec57d5;hb=336901fdb02dcd473e99be1e13df5725895616b0;hpb=d8f683760c9eb6d2c4714ec83e717dd2143de55c diff --git a/src/thread.cpp b/src/thread.cpp index a5523fc1..c80b9bd1 100644 --- a/src/thread.cpp +++ b/src/thread.cpp @@ -163,7 +163,7 @@ uint64_t ThreadPool::nodes_searched() const { uint64_t nodes = 0; for (Thread* th : *this) - nodes += th->rootPos.nodes_searched(); + nodes += th->nodes; return nodes; } @@ -212,6 +212,7 @@ void ThreadPool::start_thinking(Position& pos, StateListPtr& states, { th->maxPly = 0; th->tbHits = 0; + th->nodes = 0; th->rootDepth = DEPTH_ZERO; th->rootMoves = rootMoves; th->rootPos.set(pos.fen(), pos.is_chess960(), &setupStates->back(), th);