Ian Jauslin
summaryrefslogtreecommitdiff
blob: cc344d1675c88fecadba7798974df9a3cb0f5eb1 (plain)
1
2
3
4
5
6
7
8
9
#ifndef STATISTICS_H
#define STATISTICS_H

#include <stdint.h>

// run this at each step to compute the running average
double average_step( double val, double avg, uint64_t t, uint64_t starting_time, uint64_t print_freq, uint64_t first_box);

#endif