X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmisc.h;h=420347f43faf46313fe06a3991f3e9c7bbd02a91;hp=d7addd845351f2a5f03fc9552ea6255c17bcb314;hb=a87da2c4b3dce975fa8642c352c99aed5a1420f8;hpb=c9dcda6ac488c0058ebd567e1f52e30b8cd0db20 diff --git a/src/misc.h b/src/misc.h index d7addd84..420347f4 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,18 +45,18 @@ 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 key) { return &table[(uint32_t)key & (Size - 1)]; } private: - std::vector e; + std::vector table; }; -enum SyncCout { io_lock, io_unlock }; +enum SyncCout { IO_LOCK, IO_UNLOCK }; std::ostream& operator<<(std::ostream&, SyncCout); -#define sync_cout std::cout << io_lock -#define sync_endl std::endl << io_unlock +#define sync_cout std::cout << IO_LOCK +#define sync_endl std::endl << IO_UNLOCK #endif // #ifndef MISC_H_INCLUDED