X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmisc.h;h=34ef03259f9de5e6f1d75664aa0c16bef88f7e36;hp=c4232a48ce3c653e5e17c9d16e58d133c5a4315f;hb=c014444f09ace05e908909d9c5c60127e998b538;hpb=41641e3b1eea0038ab6984766d2b3bca869be7fa diff --git a/src/misc.h b/src/misc.h index c4232a48..34ef0325 100644 --- a/src/misc.h +++ b/src/misc.h @@ -20,27 +20,21 @@ #ifndef MISC_H_INCLUDED #define MISC_H_INCLUDED -#include +#include #include #include #include "types.h" -extern const std::string engine_info(bool to_uci = false); -extern void timed_wait(WaitCondition&, Lock&, int); -extern void prefetch(char* addr); -extern void start_logger(bool b); +const std::string engine_info(bool to_uci = false); +void timed_wait(WaitCondition&, Lock&, int); +void prefetch(char* addr); +void start_logger(bool b); -extern void dbg_hit_on(bool b); -extern void dbg_hit_on_c(bool c, bool b); -extern void dbg_mean_of(int v); -extern void dbg_print(); - - -struct Log : public std::ofstream { - Log(const std::string& f = "log.txt") : std::ofstream(f.c_str(), std::ios::out | std::ios::app) {} - ~Log() { if (is_open()) close(); } -}; +void dbg_hit_on(bool b); +void dbg_hit_on_c(bool c, bool b); +void dbg_mean_of(int v); +void dbg_print(); namespace Time { @@ -51,11 +45,11 @@ namespace Time { template struct HashTable { - HashTable() : e(Size, Entry()) {} - Entry* operator[](Key k) { return &e[(uint32_t)k & (Size - 1)]; } + HashTable() : table(Size, Entry()) {} + Entry* operator[](Key k) { return &table[(uint32_t)k & (Size - 1)]; } private: - std::vector e; + std::vector table; };