aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorallen <allen@57bc7290-fb3d-4efd-a9b1-28e84cce6043>2001-06-25 09:34:44 +0000
committerallen <allen@57bc7290-fb3d-4efd-a9b1-28e84cce6043>2001-06-25 09:34:44 +0000
commitcb7f0833edbe1f37e2006b773ddd32f693ec97e9 (patch)
tree14ebc8453b74eb9eb11257e13468915557db3481
parent8d3a2a4756799af18bbdc8efb30ea1fc97d10a69 (diff)
FARGUMENTS -> ARGUMENTS
git-svn-id: http://svn.cactuscode.org/arrangements/CactusElliptic/EllBase/trunk@59 57bc7290-fb3d-4efd-a9b1-28e84cce6043
-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.