Typo correction.

This commit is contained in:
Ye Luo 2018-01-08 09:09:09 -06:00
parent 871d81f15d
commit 202988bee7
2 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@
& \texttt{reconfiguration } & string & yes/pure/other & no & fixed population technique \\
& \texttt{branchInterval } & integer & $\ge 0$ & 1 & branching interval \\
& \texttt{substeps } & integer & $\ge 0$ & 1 & branching interval \\
& \texttt{nonlocalmoves } & string & yes/v0/v1/other & no & run with tmoves \\
& \texttt{nonlocalmoves } & string & yes/v0/v1/no & no & run with tmoves \\
& \texttt{scaleweight } & string & yes/other & yes & scale weights (CUDA only) \\
& \texttt{MaxAge } & double & $\ge 0$ & 10 & kill persistent walkers \\
& \texttt{MaxCopy } & double & $\ge 0$ &2 & limit population growth \\
@ -99,7 +99,7 @@ where $N$ is the current population.
\item \texttt{substeps}. Same as BranchInterval.
\item \texttt{nonlocalmoves}. DMC driver for running Hamiltonians with non-local moves. An typical usage is to simulate Hamiltonians with non-local psuedopotentials with T-Moves. Setting this equal to false will impose the locality approximation. `yes/v0' impmements the algorithm in the 2006 paper~\cite{Casula2006} and `v1' impmements the v1 algorithm in the 2010 paper~\cite{Casula2010}.
\item \texttt{nonlocalmoves}. DMC driver for running Hamiltonians with non-local moves. An typical usage is to simulate Hamiltonians with non-local psuedopotentials with T-Moves. Setting this equal to false will impose the locality approximation. `yes/v0' implements the algorithm in the 2006 paper~\cite{Casula2006} and `v1' implements the v1 algorithm in the 2010 paper~\cite{Casula2010}.
\item \texttt{scaleweight}. Scaling weight per Umrigar/Nightengale. CUDA only.

View File

@ -64,7 +64,7 @@ int NonLocalTOperator::put(xmlNodePtr cur)
}
else
{
APP_ABORT("NonLocalTOperator::put uknown nonlocalmove option");
APP_ABORT("NonLocalTOperator::put unknown nonlocalmove option " + use_tmove);
}
#pragma omp master
app_log() << o.str() << std::endl;