Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
document last changes
[simgrid.git] / src / nws_portability / Include / exp_smooth.h
1 /* $Id$ */
2
3 #if !defined(EXP_SMOOTH_H)
4 #define EXP_SMOOTH_H
5
6 #include "fbuff.h"
7
8 extern char *InitExpSmooth(fbuff series,
9                            fbuff time_stamps,
10                            char *params);
11
12 extern void FreeExpSmooth(char *state);
13
14 extern void UpdateExpSmooth(char *state,
15                             double ts,
16                             double value);
17
18 extern int ForcExpSmooth(char *state, double *v);
19 #endif
20