From e95e2bbb3b64520da81cc73ab8f35d3b85be0292 Mon Sep 17 00:00:00 2001 From: TheRealGioviok <425gioviok@gmail.com> Date: Wed, 6 May 2026 16:23:08 +0200 Subject: [PATCH] nonfunctional due to second check, but logically sound Bench: 14793132 --- src/search.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/search.cpp b/src/search.cpp index 947fe682..4f7197ac 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -641,7 +641,7 @@ Value Worker::search( // Singular extensions int extension = 0; - if (!ROOT_NODE && m == tt_data->move && !excluded && tt_data + if (!ROOT_NODE && tt_data && m == tt_data->move && !excluded && depth >= tuned::sing_min_depth && is_valid_score(tt_data->score) && !is_mate_score(tt_data->score) && tt_data->depth >= depth - tuned::sing_depth_margin && tt_data->bound() != Bound::Upper) {