X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmisc.cpp;h=99deedcc6a66f5e8d99086fa2baa2c4ccf59a2a9;hp=a3b1b0324c8ee20357fb515294696d9b9befb240;hb=161c6b025e763d6bcc8339a614be312f2b173437;hpb=b966adf103bd4a8b08141d9fd189f5ad6744bfdd diff --git a/src/misc.cpp b/src/misc.cpp index a3b1b032..99deedcc 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -19,15 +19,11 @@ #if defined(_WIN32) || defined(_WIN64) -#define _CRT_SECURE_NO_DEPRECATE #define NOMINMAX // disable macros min() and max() #include -#include #else -# include -# include # include # if defined(__hpux) # include @@ -77,12 +73,12 @@ const string engine_info(bool to_uci) { s << "Stockfish " << Tag << setfill('0') << " " << year.substr(2) << setw(2) << (1 + months.find(month) / 4) - << setw(2) << day << cpu64 << popcnt; + << setw(2) << day; } else - s << "Stockfish " << Version << cpu64 << popcnt; + s << "Stockfish " << Version; - s << (to_uci ? "\nid author ": " by ") + s << cpu64 << popcnt << (to_uci ? "\nid author ": " by ") << "Tord Romstad, Marco Costalba and Joona Kiiski"; return s.str(); @@ -109,22 +105,6 @@ void dbg_print() { } -/// system_time() returns the current system time, measured in milliseconds - -int system_time() { - -#if defined(_WIN32) || defined(_WIN64) - struct _timeb t; - _ftime(&t); - return int(t.time * 1000 + t.millitm); -#else - struct timeval t; - gettimeofday(&t, NULL); - return t.tv_sec * 1000 + t.tv_usec / 1000; -#endif -} - - /// cpu_count() tries to detect the number of CPU cores int cpu_count() {