summaryrefslogtreecommitdiff
path: root/src/RSCdefines.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/RSCdefines.h')
-rw-r--r--src/RSCdefines.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/RSCdefines.h b/src/RSCdefines.h
new file mode 100644
index 0000000..75203ac
--- /dev/null
+++ b/src/RSCdefines.h
@@ -0,0 +1,11 @@
+/* Defines quickselect and cormad (double precision) */
+
+double quickselect_recursive(double *vector_extract_k, int vec_size, int extract_this_element);
+
+void cormad(double *matrix, int n_row, int n_col, double *output, int evencorrect);
+
+#ifdef _OPENMP
+void cormad_parallel(double *matrix, int n_row, int n_col, double *output,
+ int evencorrect, int num_threads);
+#endif
+