]> git.sesse.net Git - stockfish/blobdiff - src/misc.cpp
Order bad captures by MVV/LVA
[stockfish] / src / misc.cpp
index 7cc6192c1b48b74ceb5014cc1b667892e2d17745..ae8b6ffbed302c7e0075d5ddfe29a9fcd3ecc4b9 100644 (file)
 #endif
 
 #include <algorithm>
-#include <cassert>
-#include <cstdio>
 #include <iomanip>
 #include <iostream>
 #include <sstream>
 
-#include "bitcount.h"
 #include "misc.h"
 #include "thread.h"
 
@@ -56,7 +53,7 @@ using namespace std;
 /// date (in the format YYMMDD) is used as a version number.
 
 static const string Version = "";
-static const string Tag  = "";
+static const string Tag = "";
 
 
 /// engine_info() returns the full name of the current Stockfish version.
@@ -156,7 +153,7 @@ int cpu_count() {
 /// timed_wait() waits for msec milliseconds. It is mainly an helper to wrap
 /// conversion from milliseconds to struct timespec, as used by pthreads.
 
-void timed_wait(WaitCondition* sleepCond, Lock* sleepLock, int msec) {
+void timed_wait(WaitCondition& sleepCond, Lock& sleepLock, int msec) {
 
 #if defined(_MSC_VER)
   int tm = msec;