Skip to content

Commit

Permalink
Increase nmp fixed reduction to 4 (#483)
Browse files Browse the repository at this point in the history
Elo   | 3.09 +- 2.18 (95%)
SPRT  | 8.0+0.08s Threads=1 Hash=16MB
LLR   | 2.89 (-2.25, 2.89) [0.00, 3.00]
Games | N: 25994 W: 6399 L: 6168 D: 13427
Penta | [78, 3032, 6558, 3239, 90]

Elo   | 7.55 +- 3.62 (95%)
SPRT  | 40.0+0.40s Threads=1 Hash=64MB
LLR   | 2.89 (-2.25, 2.89) [0.00, 3.00]
Games | N: 8238 W: 1975 L: 1796 D: 4467
Penta | [2, 862, 2214, 1037, 4]

Bench: 7071570
  • Loading branch information
PGG106 authored Nov 4, 2024
1 parent 6058495 commit b63aa3a
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 @@ -521,7 +521,7 @@ int Negamax(int alpha, int beta, int depth, const bool cutNode, ThreadData* td,
&& BoardHasNonPawns(pos, pos->side)) {

ss->move = NOMOVE;
const int R = 3 + depth / 3 + std::min((eval - beta) / 200, 3);
const int R = 4 + depth / 3 + std::min((eval - beta) / 200, 3);
ss->contHistEntry = &sd->contHist[PieceTo(NOMOVE)];

MakeNullMove(pos);
Expand Down
2 changes: 1 addition & 1 deletion src/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// include the tune stuff here to give it global visibility
#include "tune.h"

#define NAME "Alexandria-7.1.0"
#define NAME "Alexandria-7.1.1"

inline int reductions[2][64][64];
inline int lmp_margin[64][2];
Expand Down

0 comments on commit b63aa3a

Please sign in to comment.