Skip to content

Commit 5ee05ef

Browse files
authored
3.5.9: low bound condition in sext (#299)
Elo | 3.73 +- 2.51 (95%) SPRT | 10.0+0.10s Threads=1 Hash=8MB LLR | 2.95 (-2.94, 2.94) [0.00, 3.00] Games | N: 22792 W: 5927 L: 5682 D: 11183 Penta | [172, 2689, 5459, 2874, 202] http://chess.grantnet.us/test/38228/ Elo | 2.28 +- 1.73 (95%) SPRT | 60.0+0.60s Threads=1 Hash=64MB LLR | 2.96 (-2.94, 2.94) [0.00, 3.00] Games | N: 39096 W: 9770 L: 9513 D: 19813 Penta | [86, 4449, 10243, 4662, 108] http://chess.grantnet.us/test/38230/ bench: 1217611
1 parent 79de4bd commit 5ee05ef

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
@@ -421,7 +421,7 @@ EVAL Search::abSearch(EVAL alpha, EVAL beta, int depth, int ply, bool isNull, bo
421421
// singular extensions
422422
//
423423

424-
if (depth >= 8 && !skipMove && hashMove == mv && !rootNode && !isCheckMateScore(hEntry.m_data.score) && (hEntry.m_data.type == HASH_BETA || hEntry.m_data.type == HASH_EXACT) && hEntry.m_data.depth >= depth - 3) {
424+
if (depth >= 8 && !skipMove && hashMove == mv && !rootNode && !isCheckMateScore(hEntry.m_data.score) && hEntry.m_data.type == HASH_BETA && hEntry.m_data.depth >= depth - 3) {
425425
auto betaCut = hEntry.m_data.score - depth;
426426
auto score = abSearch(betaCut - 1, betaCut, depth / 2, ply + 1, false, false, cutNode, mv);
427427

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.8";
34+
const std::string VERSION = "3.5.9";
3535
const std::string ARCHITECTURE = " 64 "
3636

3737
#if _BTYPE==0

0 commit comments

Comments
 (0)