]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Fix obey the "maxThreadsPerSplitPoint" setting
[stockfish] / src / search.cpp
index d06ca8f3bfd98ed3f4755ad0e0571836ba502b15..b39bc1764dbda697e8a4d19985abd435a8f3c61c 100644 (file)
@@ -1228,8 +1228,8 @@ split_point_start: // At split points actual search starts from here
           && Threads.available_slave_exists(pos.thread())
           && !StopRequest
           && !thread.cutoff_occurred())
-          Threads.split<FakeSplit>(pos, ss, &alpha, beta, &bestValue, depth,
-                                   threatMove, moveCount, &mp, NT);
+          bestValue = Threads.split<FakeSplit>(pos, ss, alpha, beta, bestValue, depth,
+                                               threatMove, moveCount, &mp, NT);
     }
 
     // Step 20. Check for mate and stalemate