Skip to content

Commit df88db1

Browse files
FauziAkramvondele
authored andcommitted
Simplify NMP reduction formula
Passed STC: LLR: 2.97 (-2.94,2.94) <-1.75,0.25> Total: 178912 W: 46625 L: 46559 D: 85728 Ptnml(0-2): 540, 21167, 45975, 21235, 539 https://tests.stockfishchess.org/tests/view/69060677ea4b268f1fac1f25 Passed LTC: LLR: 2.99 (-2.94,2.94) <-1.75,0.25> Total: 140988 W: 36278 L: 36176 D: 68534 Ptnml(0-2): 82, 15520, 39215, 15568, 109 https://tests.stockfishchess.org/tests/view/6908bc32ea4b268f1fac288f closes #6416 bench: 2959834
1 parent 229bd1e commit df88db1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/search.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ Value Search::Worker::search(
872872
assert((ss - 1)->currentMove != Move::null());
873873

874874
// Null move dynamic reduction based on depth
875-
Depth R = 6 + depth / 3 + improving;
875+
Depth R = 7 + depth / 3;
876876
do_null_move(pos, st, ss);
877877

878878
Value nullValue = -search<NonPV>(pos, ss + 1, -beta, -beta + 1, depth - R, false);

0 commit comments

Comments
 (0)