Commit | Line | Data |
---|---|---|
1d3c1faa BA |
1 | #ifndef select_EMGLLF_H |
2 | #define select_EMGLLF_H | |
3 | ||
4 | #include "ioutils.h" | |
5 | ||
6 | void EMGLLF( | |
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 | // additional size parameters | |
26 | mwSize n, | |
27 | mwSize p, | |
28 | mwSize m, | |
29 | mwSize k); | |
30 | ||
31 | #endif |