mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-20 17:16:33 +08:00
Fix a multiPV bug in lazy SMP
Where the helper threads were not doing multiPV at all. Regression tested sprt @ 5+0.05 th 7 LLR: 2.95 (-2.94,2.94) [-3.00,1.00] Total: 73918 W: 11891 L: 11853 D: 50174 bench: 8716243
This commit is contained in:
committed by
Marco Costalba
parent
16c603ce9b
commit
0784bd542b
@@ -507,7 +507,7 @@ void Thread::search() {
|
|||||||
std::stable_sort(rootMoves.begin(), rootMoves.begin() + PVIdx + 1);
|
std::stable_sort(rootMoves.begin(), rootMoves.begin() + PVIdx + 1);
|
||||||
|
|
||||||
if (!mainThread)
|
if (!mainThread)
|
||||||
break;
|
continue;
|
||||||
|
|
||||||
if (Signals.stop)
|
if (Signals.stop)
|
||||||
sync_cout << "info nodes " << Threads.nodes_searched()
|
sync_cout << "info nodes " << Threads.nodes_searched()
|
||||||
|
|||||||
Reference in New Issue
Block a user