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:
Marco Costalba
2013-02-04 22:09:52 +01:00
parent b8c5ea869c
commit 91427c8242
3 changed files with 35 additions and 37 deletions
+2 -2
View File
@@ -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;
}