aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorjthorn <jthorn@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2005-03-30 16:09:37 +0000
committerjthorn <jthorn@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2005-03-30 16:09:37 +0000
commit6ed5fcf53fce538e6098c50101bd39e291bf7b16 (patch)
treead60649a5cfb6158f001a72935c0e349bb29c1d8 /doc
parent80f35e9d7668e29347736dc0cccd813d599cbe41 (diff)
fix a multiply-defined latex label (CactusBase_MoL_eq:rk2)
git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/MoL/trunk@88 578cdeb0-5ea1-4b81-8215-5a3b8777ee0b
Diffstat (limited to 'doc')
-rw-r--r--doc/documentation.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/documentation.tex b/doc/documentation.tex
index 928c337..35c85ed 100644
--- a/doc/documentation.tex
+++ b/doc/documentation.tex
@@ -473,7 +473,7 @@ All the generic methods evolve the equation
\end{equation}
using the following algorithm for an $N$-step method:
\begin{eqnarray}
- \label{CactusBase_MoL_eq:genrk1}
+ \label{CactusBase_MoL_eq:genrk1-scheme}
{\bf q}^{(0)} & = & {\bf q}^n, \nonumber \\
{\bf q}^{(i)} & = & \sum_{k=0}^{i-1} \left( \alpha_{ik} {\bf
q}^{(k)} \right) + \Delta t \beta_{i-1} {\bf L} ( {\bf q}^{(i-1)} ),
@@ -490,7 +490,7 @@ will use. This table is created from the string parameter {\tt
As an example, the standard TVD RK2 method that is implemented both in
optimized and generic form is written as
\begin{eqnarray}
- \label{CactusBase_MoL_eq:rk2}
+ \label{CactusBase_MoL_eq:rk2-scheme}
{\bf q}^{(1)} & = & {\bf q}^n + \Delta t {\bf L} ({\bf q}^n), \\
{\bf q}^{n+1} & = & \frac{1}{2} \left( {\bf q}^n + {\bf q}^{(1)} +
\Delta t {\bf L} ({\bf q}^{(1)}) \right).