aboutsummaryrefslogtreecommitdiff
path: root/doc/documentation.tex
diff options
context:
space:
mode:
Diffstat (limited to 'doc/documentation.tex')
-rw-r--r--doc/documentation.tex6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/documentation.tex b/doc/documentation.tex
index 82feefd..6a16d45 100644
--- a/doc/documentation.tex
+++ b/doc/documentation.tex
@@ -390,14 +390,14 @@ void CCTK_FCALL CCTK_FNAME(Ell_SimpelEllSolver)
Here we show the first lines of the Fortran code for the solver:
\begin{verbatim}
- subroutine FastSOR_solver(_CCTK_FARGUMENTS,
+ subroutine FastSOR_solver(_CCTK_ARGUMENTS,
. Mlinear_lsh,Mlinear,
. var,
. abstol,reltol)
implicit none
- _DECLARE_CCTK_FARGUMENTS
+ _DECLARE_CCTK_ARGUMENTS
DECLARE_CCTK_PARAMETERS
INTEGER CCTK_Equals
@@ -419,7 +419,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\_ARGUMENTS},
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.