]> git.sesse.net Git - stockfish/commitdiff
Lower minimum allowed TT size to 1 MB
authorMarco Costalba <mcostalba@gmail.com>
Fri, 5 Apr 2013 14:56:01 +0000 (16:56 +0200)
committerMarco Costalba <mcostalba@gmail.com>
Fri, 5 Apr 2013 14:56:01 +0000 (16:56 +0200)
Setting a very low TT size could be used
for some specific testing.

No functional change.

src/ucioption.cpp

index eada2a431c8f7fe523988277a70ff943655b99f5..1a29cae1d879ed5480834fbc8019435d18cdb633 100644 (file)
@@ -74,7 +74,7 @@ void init(OptionsMap& o) {
   o["Max Threads per Split Point"] = Option(5, 4, 8, on_threads);
   o["Threads"]                     = Option(cpus, 1, MAX_THREADS, on_threads);
   o["Use Sleeping Threads"]        = Option(true);
   o["Max Threads per Split Point"] = Option(5, 4, 8, on_threads);
   o["Threads"]                     = Option(cpus, 1, MAX_THREADS, on_threads);
   o["Use Sleeping Threads"]        = Option(true);
-  o["Hash"]                        = Option(32, 4, 8192, on_hash_size);
+  o["Hash"]                        = Option(32, 1, 8192, on_hash_size);
   o["Clear Hash"]                  = Option(on_clear_hash);
   o["Ponder"]                      = Option(true);
   o["OwnBook"]                     = Option(false);
   o["Clear Hash"]                  = Option(on_clear_hash);
   o["Ponder"]                      = Option(true);
   o["OwnBook"]                     = Option(false);