From: Marco Costalba Date: Sat, 12 Jun 2010 09:29:50 +0000 (+0100) Subject: Set LSNTime to 100 ms X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=e9eea873418775aec7eba786ec30c0b706f12656 Set LSNTime to 100 ms This is a timeout compatible with very short TC of 5 sec/game. No functional change. Signed-off-by: Marco Costalba --- diff --git a/src/search.cpp b/src/search.cpp index 43b850bd..4c90db53 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -236,7 +236,7 @@ namespace { // Last seconds noise filtering (LSN) const bool UseLSNFiltering = true; - const int LSNTime = 4000; // In milliseconds + const int LSNTime = 100; // In milliseconds const Value LSNValue = value_from_centipawns(200); bool loseOnTime = false;