We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca15562 commit 2a453b4Copy full SHA for 2a453b4
src/search.cpp
@@ -1109,8 +1109,7 @@ Value Search::Worker::search(
1109
1110
// Increase reduction if next ply has a lot of fail high
1111
if ((ss + 1)->cutoffCnt > 1)
1112
- r += 120 + 1024 * ((ss + 1)->cutoffCnt > 2) + 100 * ((ss + 1)->cutoffCnt > 3)
1113
- + 1024 * allNode;
+ r += 256 + 1024 * ((ss + 1)->cutoffCnt > 2) + 1024 * allNode;
1114
1115
// For first picked move (ttMove) reduce reduction
1116
if (move == ttData.move)
0 commit comments