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