mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-20 00:56:39 +08:00
Less aggressive null move dynamic reduction
In null move search do not jump directly in qsearch() from depth(4*OnePly), but only from depth(3*OnePly). After 999 games at 1+0: +248 -224 =527 +8ELO Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -1199,7 +1199,7 @@ namespace {
|
||||
|
||||
StateInfo st;
|
||||
pos.do_null_move(st);
|
||||
int R = (depth >= 4 * OnePly ? 4 : 3); // Null move dynamic reduction
|
||||
int R = (depth >= 5 * OnePly ? 4 : 3); // Null move dynamic reduction
|
||||
|
||||
Value nullValue = -search(pos, ss, -(beta-1), depth-R*OnePly, ply+1, false, threadID);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user