X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fsearch.cpp;h=de343144b4c02efac3fe56c482c6f3bb244c7fea;hb=15eb59683ed00a4b1fba9eec609f0e1ce2442b79;hp=08e3a997c4d3c63365e24040e1803d298e8b3075;hpb=fe523b2d18c0bb4533aad296fd44d504f67f2d4a;p=stockfish diff --git a/src/search.cpp b/src/search.cpp index 08e3a997..de343144 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1080,7 +1080,7 @@ namespace { { // Try to reduce non-pv search depth by one ply if move seems not problematic, // if the move fails high will be re-searched at full depth. - if ( depth >= 2*OnePly + if ( depth >= 3*OnePly && moveCount >= LMRPVMoves && !dangerous && !moveIsCapture @@ -1243,8 +1243,9 @@ namespace { StateInfo st; pos.do_null_move(st); + int R = (depth >= 5 * OnePly ? 4 : 3); // Null move dynamic reduction - Value nullValue = -search(pos, ss, -(beta-1), depth-4*OnePly, ply+1, false, threadID); + Value nullValue = -search(pos, ss, -(beta-1), depth-R*OnePly, ply+1, false, threadID); pos.undo_null_move(); @@ -1363,7 +1364,7 @@ namespace { // Try to reduce non-pv search depth by one ply if move seems not problematic, // if the move fails high will be re-searched at full depth. - if ( depth >= (ss[ply-1].currentMove == MOVE_NULL ? 3 : 2) * OnePly + if ( depth >= 3*OnePly && moveCount >= LMRNonPVMoves && !dangerous && !moveIsCapture