Skip to content

Commit 78960f3

Browse files
author
protonspring
committed
d > 15 ? 46*d*d
1 parent 5c13a49 commit 78960f3

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
@@ -82,7 +82,7 @@ namespace {
8282
// History and stats update bonus, based on depth
8383
int stat_bonus(Depth depth) {
8484
int d = depth / ONE_PLY;
85-
return d > 17 ? 0 : 46 * d * d;
85+
return d > 15 ? 0 : 46 * d * d;
8686
}
8787

8888
// Skill structure is used to implement strength limit

0 commit comments

Comments
 (0)