summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-05-13 17:36:30 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-05-13 17:36:30 +0000
commit5e7252e9ad1fb0cab1d229e71f6993287db9a9f2 (patch)
treeed1529be374a7b906029fe17f5aa34f72911b48a /src/include
parent2193e0bf6b84d349a77204a556d89e7df2d16238 (diff)
Prototypes for reduction functions
git-svn-id: http://svn.cactuscode.org/flesh/trunk@526 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include')
-rw-r--r--src/include/Reduction.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/include/Reduction.h b/src/include/Reduction.h
new file mode 100644
index 00000000..91bf38cb
--- /dev/null
+++ b/src/include/Reduction.h
@@ -0,0 +1,31 @@
+ /*@@
+ @header Reduction.h
+ @date
+ @author Gabrielle Allen
+ @desc
+ Header file for using reduction operators
+ @enddesc
+ @@*/
+
+/* $Id$ */
+
+
+#ifndef _REDUCTION_H_
+#define _REDUCTION_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+int CCTK_Reduce(cGH *GH,
+ int retvaltype,
+ int retvalnum,
+ void *retval,
+ int operation_handle,
+ int index, ...);
+
+#ifdef __cplusplus
+ }
+#endif
+
+#endif