1
0
Fork 0

Better document null move dynamic reduction

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
sf_2.3.1_base
Marco Costalba 2008-12-15 10:43:18 +01:00
parent c831b00544
commit 4c294932e7
1 changed files with 1 additions and 1 deletions

View File

@ -1183,7 +1183,7 @@ namespace {
UndoInfo u;
pos.do_null_move(u);
int R = (depth > 7 ? 4 : 3);
int R = (depth >= 4 * OnePly ? 4 : 3); // Null move dynamic reduction
Value nullValue = -search(pos, ss, -(beta-1), depth-R*OnePly, ply+1, false, threadID);