Skip to content

Commit 62b68ed

Browse files
authored
3.5.4: tune razor depth (#282)
http://chess.grantnet.us/test/32773/ ELO | 5.30 +- 3.50 (95%) SPRT | 10.0+0.10s Threads=1 Hash=8MB LLR | 2.97 (-2.94, 2.94) [0.00, 3.00] GAMES | N: 19352 W: 5116 L: 4821 D: 9415 http://chess.grantnet.us/test/32777/ ELO | 2.86 +- 2.24 (95%) SPRT | 60.0+0.60s Threads=1 Hash=64MB LLR | 2.96 (-2.94, 2.94) [0.00, 3.00] GAMES | N: 45160 W: 11298 L: 10926 D: 22936 bench: 17469608
1 parent 60db05e commit 62b68ed

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/search.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ EVAL Search::abSearch(EVAL alpha, EVAL beta, int depth, int ply, bool isNull, bo
277277
// razoring
278278
//
279279

280-
if (depth <= 1 && staticEval + 150 < alpha)
280+
if (depth <= 2 && staticEval + 150 < alpha)
281281
return qSearch(alpha, beta, ply, 0);
282282

283283
//

src/uci.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#include <iostream>
3232
#include <sstream>
3333

34-
const std::string VERSION = "3.5.3";
34+
const std::string VERSION = "3.5.4";
3535
const std::string ARCHITECTURE = " 64 "
3636

3737
#if _BTYPE==0

0 commit comments

Comments
 (0)