1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 09:15:38 +01:00

added comments

This commit is contained in:
Felix Erben 2019-11-08 11:15:51 +00:00
parent 293bfe17d1
commit 65aa54804e
2 changed files with 14 additions and 1 deletions

View File

@ -39,6 +39,14 @@ BEGIN_MODULE_NAMESPACE(MDistil)
Laplacian eigenvectors - parameters Laplacian eigenvectors - parameters
Computes the eigenvectors of the 3D-Laplacian, built from stout-smeared
gauge links with the specified number of steps and smearing parameter rho.
The smearing is only applied to the spatial components of the gauge field,
i.e. rho_{4i} = rho_{i4} = rho_{44} = 0.
Chebyshev-preconditioning is needed for convergence of the nvec lowest
eigenvectors.
******************************************************************************/ ******************************************************************************/
struct StoutParameters: Serializable { struct StoutParameters: Serializable {

View File

@ -36,7 +36,12 @@ BEGIN_HADRONS_NAMESPACE
BEGIN_MODULE_NAMESPACE(MDistil) BEGIN_MODULE_NAMESPACE(MDistil)
/****************************************************************************** /******************************************************************************
* PerambFromSolve * * PerambFromSolve
This module computes a perambulator from an already completed solve.
Optionally, the number of eigenvectors used in the perambulator and the
parameter LI can be chosen to be lower than the ones in the solve, allowing
for a study of the signal with different values of nvec.
******************************************************************************/ ******************************************************************************/
class PerambFromSolvePar: Serializable class PerambFromSolvePar: Serializable