e0fddb8b494016d3ae4de6004cc249830e568f1a
1 #include <stdlib.h> // for NULL
2 #include <R_ext/Rdynload.h>
5 Check these declarations against the C/Fortran source code.
9 extern void hungarianAlgorithm(void*, void*, void*);
10 extern void Moments_M2(void*, void*, void*, void*, void*);
11 extern void Moments_M3(void*, void*, void*, void*, void*);
12 extern void Compute_Omega(void*, void*, void*, void*, void*, void*, void*);
14 static const R_CMethodDef CEntries
[] = {
15 {"hungarianAlgorithm", (DL_FUNC
) &hungarianAlgorithm
, 3},
16 {"Moments_M2", (DL_FUNC
) &Moments_M2
, 5},
17 {"Moments_M3", (DL_FUNC
) &Moments_M3
, 5},
18 {"Compute_Omega", (DL_FUNC
) &Compute_Omega
, 7},
22 void R_init_morpheus(DllInfo
*dll
)
24 R_registerRoutines(dll
, CEntries
, NULL
, NULL
, NULL
);
25 R_useDynamicSymbols(dll
, FALSE
);