X-Git-Url: https://git.auder.net/?p=valse.git;a=blobdiff_plain;f=src%2Fsources%2FEMGLLF.h;h=8f375ff2028a0f5845dfe0ff573a4cd6541383f3;hp=005c05bccf8fa51d03deee5b329a3237bfbcd13d;hb=9ff729fb6afff5bed327fa8619138fd3b6f6f13b;hpb=e8bb47649b9f4e625ef050aae096d23cfc058163 diff --git a/src/sources/EMGLLF.h b/src/sources/EMGLLF.h index 005c05b..8f375ff 100644 --- a/src/sources/EMGLLF.h +++ b/src/sources/EMGLLF.h @@ -1,25 +1,27 @@ #ifndef valse_EMGLLF_H #define valse_EMGLLF_H +#include "utils.h" + void EMGLLF_core( // IN parameters - const float* phiInit, - const float* rhoInit, - const float* piInit, - const float* gamInit, + const Real* phiInit, + const Real* rhoInit, + const Real* piInit, + const Real* gamInit, int mini, int maxi, - float gamma, - float lambda, - const float* X, - const float* Y, - float tau, + Real gamma, + Real lambda, + const Real* X, + const Real* Y, + Real tau, // OUT parameters - float* phi, - float* rho, - float* pi, - float* LLF, - float* S, + Real* phi, + Real* rho, + Real* pi, + Real* LLF, + Real* S, // additional size parameters int n, int p,