Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
4e9e36861eea62f1fe35ae0dc4ed2995d72ca438
[simgrid.git] / src / nws_portability / Include / mse_forc.h
1 #ifndef MSE_FORC_H
2
3 #define MSE_FORC_H
4
5 #define MAX_MSE_WIN (100)
6
7 /*
8  * API for forc.c
9  */
10 int TotalMSEForecast(char *state, double *forecast);
11 int TotalMAEForecast(char *state, double *forecast);
12
13 char *InitWinMSE(fbuff series, fbuff time_stamps, char *params);
14 char *InitWinMAE(fbuff series, fbuff time_stamps, char *params);
15 void FreeWinMSE(char *state);
16 void FreeWinMAE(char *state);
17 int LocalWinMSEForecast(char *state, double *forecast);
18 int LocalWinMAEForecast(char *state, double *forecast);
19
20 #endif