X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fbenchmark.cpp;h=9f0ac0c145b220798eaab1449e8b848f3c411b94;hb=d11a52990459601e46e02a8759616737dc045f74;hp=4735729add884116f27a981bf7736e55b1d2eb75;hpb=161c6b025e763d6bcc8339a614be312f2b173437;p=stockfish diff --git a/src/benchmark.cpp b/src/benchmark.cpp index 4735729a..9f0ac0c1 100644 --- a/src/benchmark.cpp +++ b/src/benchmark.cpp @@ -72,7 +72,6 @@ void benchmark(int argc, char* argv[]) { Options["Hash"] = ttSize; Options["Threads"] = threads; - Options["OwnBook"] = false; if (valType == "time") limits.maxTime = 1000 * atoi(valStr.c_str()); // maxTime is in ms @@ -119,7 +118,7 @@ void benchmark(int argc, char* argv[]) { } else { - Threads.start_thinking(pos, limits); + Threads.start_searching(pos, limits); nodes += Search::RootPosition.nodes_searched(); } }