We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c13a49 commit 78960f3Copy full SHA for 78960f3
src/search.cpp
@@ -82,7 +82,7 @@ namespace {
82
// History and stats update bonus, based on depth
83
int stat_bonus(Depth depth) {
84
int d = depth / ONE_PLY;
85
- return d > 17 ? 0 : 46 * d * d;
+ return d > 15 ? 0 : 46 * d * d;
86
}
87
88
// Skill structure is used to implement strength limit
0 commit comments