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 8e3e86f commit 8843531Copy full SHA for 8843531
src/search.cpp
@@ -195,6 +195,9 @@ namespace
195
if (move_num > 3 + depth * depth)
196
picker.skip_quiets = true;
197
198
+ if (picker.stage >= MovePicker::Stage::GiveQuiet && move_num > depth * depth + 2)
199
+ break;
200
+
201
if (depth < 5 && move_is_capture(position, move) && move.score < see_pruning_margins[depth])
202
continue;
203
src/uci.cpp
@@ -27,7 +27,7 @@
27
#include "polyglot.h"
28
#include <cstring>
29
30
-const char *version = "7.4";
+const char *version = "7.41";
31
32
namespace
33
{
0 commit comments