Skip to content

Commit

Permalink
Increase NMP reduction (#121)
Browse files Browse the repository at this point in the history
ELO   | 19.08 +- 9.45 (95%)
SPRT  | 25.0+0.20s Threads=1 Hash=16MB
LLR   | 2.96 (-2.94, 2.94) [-1.00, 4.00]
GAMES | N: 2680 W: 764 L: 617 D: 1299

Bench: 7743157
  • Loading branch information
Aryan1508 authored Jul 6, 2021
1 parent e862c8c commit 084cca1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ namespace

if (!pv_node && !in_check && depth >= 4 && !at_root && do_null && position.should_do_null())
{
int R = std::max(4, 3 + depth / 5);
int R = std::max(4, 3 + depth / 3);

position.apply_null_move(search.stats.ply);
int score = -pvs(search, depth - R, -beta, -beta + 1, false).score;
Expand Down
2 changes: 1 addition & 1 deletion src/uci.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include "polyglot.h"
#include <cstring>

const char *version = "7.38";
const char *version = "7.39";

namespace
{
Expand Down

0 comments on commit 084cca1

Please # to comment.