X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbenchmark.cpp;h=b0b9e16b7881da1783326d72825a376998e99020;hp=5d8757a61f49dd7214e48038746f0c93cdfe6ffd;hb=1f7b5d9a79e5977ec1be42d7b67444d3cb7e33da;hpb=9546b79e204faef2e2759b481b09a97bdab0fb76 diff --git a/src/benchmark.cpp b/src/benchmark.cpp index 5d8757a6..b0b9e16b 100644 --- a/src/benchmark.cpp +++ b/src/benchmark.cpp @@ -26,6 +26,7 @@ #include "position.h" #include "search.h" #include "thread.h" +#include "tt.h" #include "ucioption.h" using namespace std; @@ -73,6 +74,7 @@ void benchmark(const Position& current, istream& is) { Options["Hash"] = ttSize; Options["Threads"] = threads; + TT.clear(); if (limitType == "time") limits.movetime = 1000 * atoi(limit.c_str()); // movetime is in ms @@ -112,7 +114,7 @@ void benchmark(const Position& current, istream& is) { for (size_t i = 0; i < fens.size(); i++) { - Position pos(fens[i], false, Threads.main_thread()); + Position pos(fens[i], Options["UCI_Chess960"], Threads.main_thread()); cerr << "\nPosition: " << i + 1 << '/' << fens.size() << endl;