Skip to content

Commit 8843531

Browse files
authored
Quiet LMP (#123)
ELO | 6.64 +- 4.98 (95%) SPRT | 8.0+0.08s Threads=1 Hash=16MB LLR | 2.94 (-2.94, 2.94) [0.00, 5.00] GAMES | N: 11152 W: 3435 L: 3222 D: 4495 Bench: 6189797
1 parent 8e3e86f commit 8843531

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/search.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,9 @@ namespace
195195
if (move_num > 3 + depth * depth)
196196
picker.skip_quiets = true;
197197

198+
if (picker.stage >= MovePicker::Stage::GiveQuiet && move_num > depth * depth + 2)
199+
break;
200+
198201
if (depth < 5 && move_is_capture(position, move) && move.score < see_pruning_margins[depth])
199202
continue;
200203

src/uci.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#include "polyglot.h"
2828
#include <cstring>
2929

30-
const char *version = "7.4";
30+
const char *version = "7.41";
3131

3232
namespace
3333
{

0 commit comments

Comments
 (0)