mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 08:37:44 +00:00
Move split() under Thread
Previous renaming patch suggested this reformat: when a better naming leads to a better code! No functional change.
This commit is contained in:
+2
-2
@@ -1030,8 +1030,8 @@ split_point_start: // At split points actual search starts from here
|
||||
{
|
||||
assert(bestValue < beta);
|
||||
|
||||
bestValue = Threads.split<FakeSplit>(pos, ss, alpha, beta, bestValue, &bestMove,
|
||||
depth, threatMove, moveCount, mp, NT);
|
||||
bestValue = thisThread->split<FakeSplit>(pos, ss, alpha, beta, bestValue, &bestMove,
|
||||
depth, threatMove, moveCount, mp, NT);
|
||||
if (bestValue >= beta)
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user