]> git.sesse.net Git - stockfish/commitdiff
Clear TT before running 'bench'
authorMarco Costalba <mcostalba@gmail.com>
Thu, 26 Apr 2012 18:01:13 +0000 (19:01 +0100)
committerMarco Costalba <mcostalba@gmail.com>
Thu, 26 Apr 2012 18:37:30 +0000 (19:37 +0100)
Now that we can call bench multiple times
from command prompt we need to ensure searched
nodes remain constant across different runs.

Spotted by Bálint Pfliegel.

No functional change.

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

index 9b2e81e1a1f335aaf2cc83ed65894ed9c60b7204..b0b9e16b7881da1783326d72825a376998e99020 100644 (file)
@@ -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