aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorallen <allen@57bc7290-fb3d-4efd-a9b1-28e84cce6043>2000-01-27 07:49:39 +0000
committerallen <allen@57bc7290-fb3d-4efd-a9b1-28e84cce6043>2000-01-27 07:49:39 +0000
commit12657eface47289c2b96f0cc2784bff55fed46cc (patch)
tree2c8841add1688c217b04ede4545160ac7d55b021 /doc
parentb90e474717bbf96c56a029b18918cc37af7f1c48 (diff)
cctk_arguments -> cctk_Arguments
cctk_parameters -> cctk_Parameters git-svn-id: http://svn.cactuscode.org/arrangements/CactusElliptic/EllBase/trunk@35 57bc7290-fb3d-4efd-a9b1-28e84cce6043
Diffstat (limited to 'doc')
-rw-r--r--doc/ThornGuide.tex6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ThornGuide.tex b/doc/ThornGuide.tex
index 322943d..bfa65df 100644
--- a/doc/ThornGuide.tex
+++ b/doc/ThornGuide.tex
@@ -325,7 +325,7 @@ need to have C wrapper function ``{\tt FastSOR\_wrapper}''.
\begin{verbatim}
#include ``cctk.h''
-#include ``cctk_parameters.h''
+#include ``cctk_Parameters.h''
#include ``cctk_FortranString.h''
#include ``StoreNamedData.h''
@@ -420,7 +420,7 @@ c We have no storage for M if they are of size one in each direction
\end{verbatim}
This Fortran solver receives the following arguments: the ``typical''
- CCTK\_ARGUMENTS (see \ref{sec:cctk_arguments}): {\tt \_CCTK\_FARGUMENTS},
+ CCTK\_ARGUMENTS (see \ref{sec:cctk_Arguments}): {\tt \_CCTK\_FARGUMENTS},
the {\em size} of the coefficient matrix: {\tt Mlinear\_lsh}, the coefficient
matrix {\tt Mlinear}, the variable to solve for: {\tt var}, and the two arrays with convergence information.
@@ -478,7 +478,7 @@ The routine below in {\tt Startup.c} performs the registration of our solver wra
Startup,c} we have:
\begin{verbatim}
#include ``cctk.h''
-#include ``cctk_parameters.h''
+#include ``cctk_Parameters.h''
void FastSOR_register(cGH *GH) {