From 30d3c2ae89c74ea7520329bb1e5e991cb48daa5a Mon Sep 17 00:00:00 2001 From: "Fernando P. Panadero" Date: Thu, 30 Nov 2023 12:19:10 +0100 Subject: [PATCH] Small changes in documentation --- docs/src/dirac.md | 5 +++-- src/Solvers/Propagators.jl | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/src/dirac.md b/docs/src/dirac.md index b911ab8..bcca0d3 100644 --- a/docs/src/dirac.md +++ b/docs/src/dirac.md @@ -41,10 +41,11 @@ where $$m_0$$ and $$\theta$$ are respectively the values `.m0` and `.th` of [`Di Note that $$|\theta(i)|=1$$ is not built into the code, so it should be imposed explicitly. Additionally, if |`dpar.csw`| > 1.0E-10, the clover term is assumed to be stored in `ymws.csw`, which -can be done via the [`Csw`](@ref) function. In this case we have an extra term in `Dw!`: +can be done via the [`Csw`](@ref) function. In this case we have the Sheikholeslami–Wohlert (SW) term +in `Dw!`: ```math - \frac{i}{2}C_{sw} \sum_{\pi = 1}^6 F^{cl}_\pi \sigma_\pi \psi(\vec{x}) + \frac{i}{2}c_{sw} \sum_{\pi = 1}^6 F^{cl}_\pi \sigma_\pi \psi(\vec{x}) ``` where the $$\sigma$$ matrices are those described in the `Spinors` module and the index $$\pi$$ runs as specified in `lp.plidx`. diff --git a/src/Solvers/Propagators.jl b/src/Solvers/Propagators.jl index 541f0ed..73ebcce 100644 --- a/src/Solvers/Propagators.jl +++ b/src/Solvers/Propagators.jl @@ -99,7 +99,7 @@ end """ - function Tbndpropagator(U, dpar::DiracParam{T}, dws::DiracWorkspace, lp::SpaceParm{4,6,1,D}, maxiter::Int64, tol::Float64, c::Int64, s::Int64) + function Tbndpropagator!(pro, U, dpar::DiracParam{T}, dws::DiracWorkspace, lp::SpaceParm{4,6,1,D}, maxiter::Int64, tol::Float64, c::Int64, s::Int64) Returns the propagator from the t=T boundary to the bulk for the SF boundary conditions for a source with color 'c' and spin 's'. The factor c_t is included while the factor 1/sqrt(V) is not. For the propagator from t=0 to the bulk, use the function bndpropagator(U, dpar::DiracParam{T}, dws::DiracWorkspace, lp::SpaceParm{4,6,1,D}, maxiter::Int64, tol::Float64, c::Int64, s::Int64)