From 05e12b37578a9f22341692618bd8a29b162390d5 Mon Sep 17 00:00:00 2001 From: MJZ1977 <37274752+MJZ1977@users.noreply.github.com> Date: Wed, 12 Jun 2019 12:14:51 +0200 Subject: [PATCH] 4 + move0 / 10 --- src/search.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/search.cpp b/src/search.cpp index 8f085364c3a..4750c222b65 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -881,7 +881,7 @@ namespace { if (rootNode && moveCount > 1 && depth > 4 * ONE_PLY) { RootMove& rm = *std::find(thisThread->rootMoves.begin(), thisThread->rootMoves.end(), move); - skipLMR = rm.nodesSearched > (4 + thisThread->rootMoves[0].nodesSearched / 12); + skipLMR = rm.nodesSearched > (4 + thisThread->rootMoves[0].nodesSearched / 10); /*if (skipLMR) sync_cout << "Move = " << UCI::move(move, pos.is_chess960()) << " currmovenumber " << moveCount + thisThread->pvIdx