mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 08:43:09 +00:00
Fix dbg_mean_of() for negative numbers
Type should be int64_t instead of uint64_t No functional change.
This commit is contained in:
parent
553ead429d
commit
13b9e1e098
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ const string engine_info(bool to_uci) {
|
|||
|
||||
/// Debug functions used mainly to collect run-time statistics
|
||||
|
||||
static uint64_t hits[2], means[2];
|
||||
static int64_t hits[2], means[2];
|
||||
|
||||
void dbg_hit_on(bool b) { ++hits[0]; if (b) ++hits[1]; }
|
||||
void dbg_hit_on_c(bool c, bool b) { if (c) dbg_hit_on(b); }
|
||||
|
|
Loading…
Add table
Reference in a new issue