summaryrefslogtreecommitdiff
path: root/src/include/cctk_Reduction.h
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2005-10-03 16:20:34 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2005-10-03 16:20:34 +0000
commitd51b12875913e37cdd43f7ef1c67039bdd4b85f6 (patch)
treeef32c161bc7134385b90b015ca45fa6f03f64bc4 /src/include/cctk_Reduction.h
parentafaab9892c742f8064f003842d1c3233f9a89a3c (diff)
Untabifying.
git-svn-id: http://svn.cactuscode.org/flesh/trunk@4163 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cctk_Reduction.h')
-rw-r--r--src/include/cctk_Reduction.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/include/cctk_Reduction.h b/src/include/cctk_Reduction.h
index 861aec76..6d7c0d73 100644
--- a/src/include/cctk_Reduction.h
+++ b/src/include/cctk_Reduction.h
@@ -9,7 +9,7 @@
@@*/
#ifndef _CCTK_REDUCTION_H_
-#define _CCTK_REDUCTION_H_
+#define _CCTK_REDUCTION_H_ 1
#define REDUCTION_OPERATOR_REGISTER_ARGLIST \
const cGH *arg_GH, \
@@ -63,12 +63,12 @@ extern "C"
/* prototype for reduction operator routine */
typedef int (*cReduceOperator) (const cGH *GH,
- int arg_proc,
- int arg_num_outvals,
- int arg_outtype,
- void *arg_outvals,
- int arg_num_invars,
- const int arg_varlist[]);
+ int arg_proc,
+ int arg_num_outvals,
+ int arg_outtype,
+ void *arg_outvals,
+ int arg_num_invars,
+ const int arg_varlist[]);
/* prototype for local array reduction operator routine */
typedef int (*cLocalArrayReduceOperator) (int N_dims, int operator_handle,
@@ -105,8 +105,8 @@ int CCTK_ReductionHandle(const char *reduction);
CCTKi_RegisterReductionOperator(CCTK_THORNSTRING,a,b)
int CCTKi_RegisterReductionOperator(const char *thorn,
- cReduceOperator operatorGV,
- const char *name);
+ cReduceOperator operatorGV,
+ const char *name);
int CCTK_ReductionArrayHandle(const char *reduction);
@@ -138,8 +138,8 @@ int CCTK_LocalArrayReductionHandle(const char *reduction);
CCTKi_RegisterLocalArrayReductionOperator(CCTK_THORNSTRING,a,b)
int CCTKi_RegisterLocalArrayReductionOperator(const char *thorn,
- cLocalArrayReduceOperator operatorGV,
- const char *name);
+ cLocalArrayReduceOperator operatorGV,
+ const char *name);
int CCTK_RegisterReductionLocalArrayOperator(
int (*function)(REDUCTION_LOCAL_ARRAY_OPERATOR_REGISTER_ARGLIST),