]> git.sesse.net Git - stockfish/blobdiff - src/thread.cpp
Checking for rook color when setting castling
[stockfish] / src / thread.cpp
index 2fd3c7aa9e37fbfc24b579ddd2f89d33dbb6d983..8eaee87500dbf3c2fa5e78950e2df5c989a077c2 100644 (file)
@@ -321,10 +321,6 @@ void ThreadPool::read_uci_options() {
 
   assert(requested > 0);
 
-  // If zero (default) then set best minimum split depth automatically
-  if (!minimumSplitDepth)
-      minimumSplitDepth = requested < 8 ? 4 * ONE_PLY : 7 * ONE_PLY;
-
   while (size() < requested)
       push_back(new_thread<Thread>());