summaryrefslogtreecommitdiff
path: root/doc/UsersGuide/ThornWriters.tex
diff options
context:
space:
mode:
authorkcamarda <kcamarda@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-01-16 16:39:54 +0000
committerkcamarda <kcamarda@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-01-16 16:39:54 +0000
commit19c4974c44c68ce8aaad30d9880362d52113474e (patch)
tree1ce79782c0643654b12736c42b7261ec9fa0a9ac /doc/UsersGuide/ThornWriters.tex
parent5be5f27a3ada4a725ecd90863cee06ec78ef085d (diff)
Fixed prototype of CCTK_Reduce.
Fixed name of function CCTK_ReductionArrayHandle (got rid of old "Get"). git-svn-id: http://svn.cactuscode.org/flesh/trunk@1996 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'doc/UsersGuide/ThornWriters.tex')
-rw-r--r--doc/UsersGuide/ThornWriters.tex13
1 files changed, 7 insertions, 6 deletions
diff --git a/doc/UsersGuide/ThornWriters.tex b/doc/UsersGuide/ThornWriters.tex
index c0fb7f42..18333d10 100644
--- a/doc/UsersGuide/ThornWriters.tex
+++ b/doc/UsersGuide/ThornWriters.tex
@@ -2104,7 +2104,7 @@ character*(*) reduction_name
call CCTK_ReductionHandle(reduction_handle, reduction_name)
-int CCTK_GetReductionArrayHandle(const char *reduction_name);
+int CCTK_ReductionArrayHandle(const char *reduction_name);
integer reduction_handle
character*(*) reduction_name
@@ -2151,11 +2151,12 @@ uncertain, you should use these.
\begin{verbatim}
int CCTK_Reduce( cGH *GH,
- int retvaltype,
- int retvalnum,
- void *retval,
- int handle,
- int index,
+ int proc,
+ int operation_handle,
+ int num_out_vals,
+ int type_out_vals,
+ void *out_vals,
+ int num_in_fields,
...);