From 8f6c7ab1c3f073697e4b6ce302c5b13988bc3e72 Mon Sep 17 00:00:00 2001 From: yaneurao Date: Tue, 4 Jun 2024 22:01:57 +0900 Subject: [PATCH] - Adjust lowest depth constants to the natural place : https://github.com/official-stockfish/Stockfish/commit/397f47a7a1b7abe490d7bcb7a526d01555aed2be --- source/types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/types.h b/source/types.h index 5afb4ef85..9e29cfc15 100644 --- a/source/types.h +++ b/source/types.h @@ -399,10 +399,10 @@ enum : int { // only for the TT entry occupancy check (see tt.cpp), and should thus be lower than _UNSEARCHED. // DEPTH_NONEは探索せずに値を求めたという意味に使う。 - DEPTH_UNSEARCHED = -6, + DEPTH_UNSEARCHED = -2, // TTの下駄履き用(TTEntryが使われているかどうかのチェックにのみ用いる) - DEPTH_ENTRY_OFFSET = -7 + DEPTH_ENTRY_OFFSET = -3 }; // --------------------