We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd6c9d6 commit 17b155aCopy full SHA for 17b155a
src/search.cpp
@@ -414,6 +414,10 @@ Value Worker::search(
414
&& (tt_data->bound() == Bound::Exact
415
|| (tt_data->bound() == Bound::Lower && tt_data->score >= beta)
416
|| (tt_data->bound() == Bound::Upper && tt_data->score <= alpha))) {
417
+ if (depth <= 7) {
418
+ return tt_data->score;
419
+ }
420
+
421
if (tt_data->move == Move::none()) {
422
return tt_data->score;
423
}
0 commit comments