From 1aa3cd10147c72fb771b7a743222db3cae0ab134 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eduardo=20C=C3=A1ceres?= Date: Sat, 3 Feb 2024 02:30:19 +0100 Subject: [PATCH] 80% --- src/Lynx/Search/IDDFS.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Lynx/Search/IDDFS.cs b/src/Lynx/Search/IDDFS.cs index cc555633f..cf4bf8992 100644 --- a/src/Lynx/Search/IDDFS.cs +++ b/src/Lynx/Search/IDDFS.cs @@ -307,7 +307,7 @@ private int CheckPonderHit(ref SearchResult? lastSearchResult, int depth) { for (int j = 0; j < _quietHistory[i].Length; j++) { - _quietHistory[i][j] = _quietHistory[i][j] * 1 / 10; + _quietHistory[i][j] = _quietHistory[i][j] * 8 / 10; } }