From: Marco Costalba Date: Sun, 20 Feb 2011 10:07:13 +0000 (+0100) Subject: Increase MAX_THREADS to 32 X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=c980163316d48ff304bfb253089c7d474d090b12 Increase MAX_THREADS to 32 No speed regression after 8731 games: Mod vs Orig 1394 - 1342 - 5995 ELO +2 (+- 4.1) No functional change. Signed-off-by: Marco Costalba --- diff --git a/src/thread.h b/src/thread.h index 609b2e60..463739fe 100644 --- a/src/thread.h +++ b/src/thread.h @@ -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 {