summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-06-16 11:58:00 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-06-16 11:58:00 +0000
commit7b47712161936835ec70eea4ad90b0e7b17e8e9c (patch)
tree159e2c73ac1bbf51150e71d5cac00e111fd4e40c
parent9bacd8e37433d607dd9f65523bc926d84bf54dc9 (diff)
Some tidying up.
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@2234 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rw-r--r--doc/UsersGuide/Infrastructure.tex58
1 files changed, 29 insertions, 29 deletions
diff --git a/doc/UsersGuide/Infrastructure.tex b/doc/UsersGuide/Infrastructure.tex
index d6049de3..d1e1d47b 100644
--- a/doc/UsersGuide/Infrastructure.tex
+++ b/doc/UsersGuide/Infrastructure.tex
@@ -68,7 +68,7 @@ name of the extension. This returns a unique handle that identifies the extensi
Associated with a GH extension are three functions
-\begin{itemize}
+\begin{Lentry}
\item[SetupGH]
this is used to actually create the data structure holding the extension. It
is called when a new cGH is created.
@@ -88,33 +88,33 @@ the schedule tree.
\begin{tabular}{|l|l|}
\hline {\bf Function} & {\bf Default} \\
- \hline {\t CCTK\_Initialise} &\\
- \hline {\t CCTK\_Evolve} &\\
- \hline {\t CCTK\_Shutdown} &\\
+ \hline {\t CCTK\_Initialise} &\\
+ \hline {\t CCTK\_Evolve} &\\
+ \hline {\t CCTK\_Shutdown} &\\
\hline
\end{tabular}
\chapter{Overloadable and Registerable Functions in Comm}
\begin{tabular}{|l|l|}
- \hline {\bf Function} & {\bf Default} \\
- \hline {\t CCTK\_SyncGroup} &\\
- \hline {\t CCTK\_EnableGroupStorage} &\\
- \hline {\t CCTK\_DisableGroupStorage} &\\
- \hline {\t CCTK\_EnableGroupComm} &\\
- \hline {\t CCTK\_DisableGroupComm} &\\
- \hline {\t CCTK\_Barrier} &\\
- \hline {\t CCTK\_Reduce} &\\
- \hline {\t CCTK\_Interp} &\\
- \hline {\t CCTK\_ParallelInit} &\\
+ \hline {\bf Function} & {\bf Default} \\
+ \hline {\t CCTK\_SyncGroup} &\\
+ \hline {\t CCTK\_EnableGroupStorage} &\\
+ \hline {\t CCTK\_DisableGroupStorage} &\\
+ \hline {\t CCTK\_EnableGroupComm} &\\
+ \hline {\t CCTK\_DisableGroupComm} &\\
+ \hline {\t CCTK\_Barrier} &\\
+ \hline {\t CCTK\_Reduce} &\\
+ \hline {\t CCTK\_Interp} &\\
+ \hline {\t CCTK\_ParallelInit} &\\
\hline
\end{tabular}
\chapter{Overloadable and Registerable Functions in IO}
\begin{tabular}{|l|l|}
- \hline {\bf Function} & {\bf Default} \\
- \hline {\t CCTK\_OutputGH} & \\
+ \hline {\bf Function} & {\bf Default} \\
+ \hline {\t CCTK\_OutputGH} & \\
\hline {\t CCTK\_OutputVarAsByMethod} & \\
\hline
\end{tabular}
@@ -256,19 +256,19 @@ int SimpleScheduleTraversGH(cGH *GH, const char *where)
{
switch(gtype)
{
- case CCTK_SCALAR :
- GH->data[var][level] = extension->variables[var][level];
- break;
- case CCTK_GF :
- GH->data[var][level] =
- ((pGF ***)(extension->variables))[var][level]->data;
- break;
- case CCTK_ARRAY :
- GH->data[var][level] =
- ((pGA ***)(extension->variables))[var][level]->data;
- break;
- default:
- CCTK_WARN(1,"Unknown group type in SimpleScheduleTraverse");
+ case CCTK_SCALAR :
+ GH->data[var][level] = extension->variables[var][level];
+ break;
+ case CCTK_GF :
+ GH->data[var][level] =
+ ((pGF ***)(extension->variables))[var][level]->data;
+ break;
+ case CCTK_ARRAY :
+ GH->data[var][level] =
+ ((pGA ***)(extension->variables))[var][level]->data;
+ break;
+ default:
+ CCTK_WARN(1,"Unknown group type in SimpleScheduleTraverse");
}
}
}