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 0bafb4f commit f345973Copy full SHA for f345973
Bit-Genie/src/search.cpp
@@ -164,6 +164,11 @@ namespace
164
}
165
166
167
+ int eval = eval_position(position);
168
+
169
+ if (!at_root && depth < 6 && (eval - depth * 256) >= beta)
170
+ return eval;
171
172
if (!pv_node && !in_check && depth >= 4 && !at_root && do_null && position.should_do_null())
173
{
174
int R = std::max(4, 3 + depth / 5);
Bit-Genie/src/uci.cpp
@@ -26,7 +26,7 @@
26
#include "searchinit.h"
27
#include "polyglot.h"
28
29
-const char *version = "7.16";
+const char *version = "7.17";
30
31
namespace
32
0 commit comments