mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-16 07:06:23 +08:00
Increase LMR limit by one ply
Seems there is no regression so prefer to prune less. After 8278 games Mod vs Orig 1246 - 1265 - 5767 +0 ELO (+- 4.2) Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -1134,7 +1134,7 @@ split_point_start: // At split points actual search starts from here
|
|||||||
bool doFullDepthSearch = true;
|
bool doFullDepthSearch = true;
|
||||||
alpha = SpNode ? sp->alpha : alpha;
|
alpha = SpNode ? sp->alpha : alpha;
|
||||||
|
|
||||||
if ( depth >= 3 * ONE_PLY
|
if ( depth > 3 * ONE_PLY
|
||||||
&& !captureOrPromotion
|
&& !captureOrPromotion
|
||||||
&& !dangerous
|
&& !dangerous
|
||||||
&& !move_is_castle(move)
|
&& !move_is_castle(move)
|
||||||
|
|||||||
Reference in New Issue
Block a user