Add dbg_clear helper function

closes https://github.com/official-stockfish/Stockfish/pull/5921

No functional change
This commit is contained in:
Shawn Xu
2025-03-21 11:09:28 +01:00
committed by Disservin
parent e407a4f269
commit e3660b47bd
2 changed files with 15 additions and 1 deletions
+1
View File
@@ -73,6 +73,7 @@ void dbg_stdev_of(int64_t value, int slot = 0);
void dbg_extremes_of(int64_t value, int slot = 0);
void dbg_correl_of(int64_t value1, int64_t value2, int slot = 0);
void dbg_print();
void dbg_clear();
using TimePoint = std::chrono::milliseconds::rep; // A value in milliseconds
static_assert(sizeof(TimePoint) == sizeof(int64_t), "TimePoint should be 64 bits");