Don't uselessy share rootDepth

It is not needed becuase the only case is a real special
one (bench on depth with many threads) and can be easily
rewritten to avoid sharing rootDepth.

Verified with ThreadSanitizer.

No functional change.

Closes #1159
This commit is contained in:
Marco Costalba
2017-07-02 03:10:50 -07:00
committed by Joona Kiiski
parent 01b6cdb76b
commit 802fca6fdd
2 changed files with 3 additions and 3 deletions

View File

@@ -65,7 +65,7 @@ public:
Position rootPos;
Search::RootMoves rootMoves;
std::atomic<Depth> rootDepth;
Depth rootDepth;
Depth completedDepth;
CounterMoveStat counterMoves;
ButterflyHistory history;