Skip to content

Commit f345973

Browse files
authored
RFP (#89)
``` ELO | 24.75 +- 10.96 (95%) SPRT | 10.0+0.10s Threads=1 Hash=16MB LLR | 2.97 (-2.94, 2.94) [0.00, 5.00] GAMES | N: 2208 W: 708 L: 551 D: 949 ``` Bench: 9488717
1 parent 0bafb4f commit f345973

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Bit-Genie/src/search.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,11 @@ namespace
164164
}
165165
}
166166

167+
int eval = eval_position(position);
168+
169+
if (!at_root && depth < 6 && (eval - depth * 256) >= beta)
170+
return eval;
171+
167172
if (!pv_node && !in_check && depth >= 4 && !at_root && do_null && position.should_do_null())
168173
{
169174
int R = std::max(4, 3 + depth / 5);

Bit-Genie/src/uci.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#include "searchinit.h"
2727
#include "polyglot.h"
2828

29-
const char *version = "7.16";
29+
const char *version = "7.17";
3030

3131
namespace
3232
{

0 commit comments

Comments
 (0)