]> git.sesse.net Git - stockfish/blobdiff - src/thread.cpp
Remove pawn count in space() calculation #2139
[stockfish] / src / thread.cpp
index 6c1d729987d90bb237f0b0c9034d78d19aa2d7f0..2f1237a3b0c6b5b02b27636d9c3d78d02f31c84d 100644 (file)
@@ -18,9 +18,9 @@
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-#include <algorithm> // For std::count
 #include <cassert>
 
+#include <algorithm> // For std::count
 #include "movegen.h"
 #include "search.h"
 #include "thread.h"
@@ -32,7 +32,7 @@ ThreadPool Threads; // Global object
 
 
 /// Thread constructor launches the thread and waits until it goes to sleep
-/// in idle_loop(). Note that 'searching' and 'exit' should be alredy set.
+/// in idle_loop(). Note that 'searching' and 'exit' should be already set.
 
 Thread::Thread(size_t n) : idx(n), stdThread(&Thread::idle_loop, this) {