From 6e5cf2f3c5c5cae9a40775aca4052c0fe7089397 Mon Sep 17 00:00:00 2001 From: Marco Costalba Date: Thu, 30 Oct 2008 11:38:06 +0100 Subject: [PATCH] Revert "Relax time constraints" Does not seem to give an improvment, acutually it seems a totally neutral change. Signed-off-by: Marco Costalba --- src/search.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/search.cpp b/src/search.cpp index c4b61881..888c0d78 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -678,7 +678,7 @@ namespace { // Stop search if most of MaxSearchTime is consumed at the end of the // iteration. We probably don't have enough time to search the first // move at the next iteration anyway. - if (current_search_time() > ((MaxSearchTime + ExtraSearchTime)*90) / 128) + if (current_search_time() > ((MaxSearchTime + ExtraSearchTime)*80) / 128) stopSearch = true; if (stopSearch) @@ -2249,7 +2249,7 @@ namespace { bool overTime = t > AbsoluteMaxSearchTime || (RootMoveNumber == 1 && t > MaxSearchTime + ExtraSearchTime) || ( !FailHigh && !fail_high_ply_1() && !Problem - && t > 10*(MaxSearchTime + ExtraSearchTime)); + && t > 6*(MaxSearchTime + ExtraSearchTime)); if ( (Iteration >= 2 && (!InfiniteSearch && overTime)) || (ExactMaxTime && t >= ExactMaxTime) -- 2.39.2