]> git.sesse.net Git - stockfish/commitdiff
Revert "Simple implementation of strong YBWC"
authorMarco Costalba <mcostalba@gmail.com>
Sat, 22 May 2010 10:35:15 +0000 (11:35 +0100)
committerMarco Costalba <mcostalba@gmail.com>
Sat, 22 May 2010 10:36:51 +0000 (11:36 +0100)
It does not seem to increase anything even with a QUAD,
so revert.

After 1000 games with a QUAD
Mod - Orig: 500 - 497 (+1 elo)

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
src/search.cpp

index a349fd6c7687c33002fbad2b5f6821a4785650b3..1a01601b8144f9d68a8cdd0b3c30356acc0d5d68 100644 (file)
@@ -234,9 +234,6 @@ namespace {
   // better than the second best move.
   const Value EasyMoveMargin = Value(0x200);
 
-  // Maximum number of moves to try before to split (strong YBWC)
-  const int MaximumSplitMove = 3;
-
   // Last seconds noise filtering (LSN)
   const bool UseLSNFiltering = true;
   const int LSNTime = 4000; // In milliseconds
@@ -1366,7 +1363,6 @@ namespace {
       if (   TM.active_threads() > 1
           && bestValue < beta
           && depth >= MinimumSplitDepth
-          && (PvNode || moveCount > MaximumSplitMove * MinimumSplitDepth / depth)
           && Iteration <= 99
           && TM.available_thread_exists(threadID)
           && !AbortSearch