]> git.sesse.net Git - stockfish/commitdiff
Set LSNTime to 100 ms
authorMarco Costalba <mcostalba@gmail.com>
Sat, 12 Jun 2010 09:29:50 +0000 (10:29 +0100)
committerMarco Costalba <mcostalba@gmail.com>
Sat, 12 Jun 2010 09:29:50 +0000 (10:29 +0100)
This is a timeout compatible with very short TC of 5 sec/game.

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
src/search.cpp

index 43b850bd557efbe219f1972744a8f0ea5772af02..4c90db53d93619a3a34cf0c3a9f0e6876a507ef8 100644 (file)
@@ -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;