]> git.sesse.net Git - stockfish/blobdiff - src/thread.h
Remove "divide by zero" workaround
[stockfish] / src / thread.h
index 609b2e609687a9e1cafb1952aef2d0c7dd96a4cc..64804d45e19f9b882010ff1a0751a53cc3fade31 100644 (file)
@@ -27,7 +27,7 @@
 #include "position.h"
 #include "search.h"
 
-const int MAX_THREADS = 16;
+const int MAX_THREADS = 32;
 const int MAX_ACTIVE_SPLIT_POINTS = 8;
 
 struct SplitPoint {
@@ -36,7 +36,7 @@ struct SplitPoint {
   SplitPoint* parent;
   const Position* pos;
   Depth depth;
-  bool pvNode, mateThreat;
+  bool pvNode;
   Value beta;
   int ply;
   int master;