Commit | Line | Data |
---|---|---|
8e92c49c BA |
1 | #ifndef valse_EMGLLF_H |
2 | #define valse_EMGLLF_H | |
1d3c1faa | 3 | |
09ab3c16 | 4 | void EMGLLF_core( |
1d3c1faa | 5 | // IN parameters |
afa07d41 BA |
6 | const float* phiInit, |
7 | const float* rhoInit, | |
8 | const float* piInit, | |
9 | const float* gamInit, | |
8e92c49c BA |
10 | int mini, |
11 | int maxi, | |
afa07d41 BA |
12 | float gamma, |
13 | float lambda, | |
14 | const float* X, | |
15 | const float* Y, | |
16 | float tau, | |
1d3c1faa | 17 | // OUT parameters |
afa07d41 BA |
18 | float* phi, |
19 | float* rho, | |
20 | float* pi, | |
21 | float* LLF, | |
22 | float* S, | |
1d3c1faa | 23 | // additional size parameters |
8e92c49c BA |
24 | int n, |
25 | int p, | |
26 | int m, | |
27 | int k); | |
1d3c1faa BA |
28 | |
29 | #endif |