Replace tabs by 2spaces
[morpheus.git] / pkg / src / morpheus_init.c
index 5352ee8..b872488 100644 (file)
@@ -12,16 +12,16 @@ extern void Moments_M3(void*, void*, void*, void*, void*);
 extern void Compute_Omega(void*, void*, void*, void*, void*, void*);
 
 static const R_CMethodDef CEntries[] = {
-    {"hungarianAlgorithm", (DL_FUNC) &hungarianAlgorithm, 3},
-    {"Moments_M2",         (DL_FUNC) &Moments_M2,         5},
-    {"Moments_M3",         (DL_FUNC) &Moments_M3,         5},
-    {"Compute_Omega",      (DL_FUNC) &Compute_Omega,      6},
-    {NULL, NULL, 0}
+  {"hungarianAlgorithm", (DL_FUNC) &hungarianAlgorithm, 3},
+  {"Moments_M2",         (DL_FUNC) &Moments_M2,         5},
+  {"Moments_M3",         (DL_FUNC) &Moments_M3,         5},
+  {"Compute_Omega",      (DL_FUNC) &Compute_Omega,      6},
+  {NULL, NULL, 0}
 };
 
 void R_init_morpheus(DllInfo *dll)
 {
-    R_registerRoutines(dll, CEntries, NULL, NULL, NULL);
-    R_useDynamicSymbols(dll, FALSE);
+  R_registerRoutines(dll, CEntries, NULL, NULL, NULL);
+  R_useDynamicSymbols(dll, FALSE);
 }