mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-21 09:37:16 +08:00
Retire FakeSplit
- Currently broken
- Never been really useful
- Does not work well with new splitting model
Verified for no regression at STC with 3 threads:
LLR: 2.96 (-2.94,2.94) [-6.00,0.00]
Total: 81905 W: 12122 L: 12381 D: 57402
No functional change
This commit is contained in:
@@ -52,9 +52,6 @@ using namespace Search;
|
||||
|
||||
namespace {
|
||||
|
||||
// Set to true to force running with one thread. Used for debugging
|
||||
const bool FakeSplit = false;
|
||||
|
||||
// Different node types, used as template parameter
|
||||
enum NodeType { Root, PV, NonPV };
|
||||
|
||||
@@ -987,8 +984,8 @@ moves_loop: // When in check and at SpNode search starts from here
|
||||
{
|
||||
assert(bestValue > -VALUE_INFINITE && bestValue < beta);
|
||||
|
||||
thisThread->split<FakeSplit>(pos, ss, alpha, beta, &bestValue, &bestMove,
|
||||
depth, moveCount, &mp, NT, cutNode);
|
||||
thisThread->split(pos, ss, alpha, beta, &bestValue, &bestMove,
|
||||
depth, moveCount, &mp, NT, cutNode);
|
||||
|
||||
if (Signals.stop || thisThread->cutoff_occurred())
|
||||
return VALUE_ZERO;
|
||||
|
||||
Reference in New Issue
Block a user