From 60f814733d4b98bd5743e9c2ed6e4975f2bffd84 Mon Sep 17 00:00:00 2001 From: Quadro Date: Tue, 25 May 2021 18:18:15 -0400 Subject: [PATCH] Could maybe simplify and require theh params always containn locally_periodic --- .../fermion/implementation/WilsonFermionImplementation.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Grid/qcd/action/fermion/implementation/WilsonFermionImplementation.h b/Grid/qcd/action/fermion/implementation/WilsonFermionImplementation.h index a88da710..9d06584f 100644 --- a/Grid/qcd/action/fermion/implementation/WilsonFermionImplementation.h +++ b/Grid/qcd/action/fermion/implementation/WilsonFermionImplementation.h @@ -47,9 +47,9 @@ WilsonFermion::WilsonFermion(GaugeField &_Umu, GridCartesian &Fgrid, Kernels(p), _grid(&Fgrid), _cbgrid(&Hgrid), - Stencil(&Fgrid, npoint, Even, directions, displacements,p), - StencilEven(&Hgrid, npoint, Even, directions,displacements,p), // source is Even - StencilOdd(&Hgrid, npoint, Odd, directions,displacements,p), // source is Odd + Stencil(&Fgrid, npoint, Even, directions, displacements,p.locally_periodic,p), + StencilEven(&Hgrid, npoint, Even, directions,displacements,p.locally_periodic,p), // source is Even + StencilOdd(&Hgrid, npoint, Odd, directions,displacements,p.locally_periodic,p), // source is Odd mass(_mass), Lebesgue(_grid), LebesgueEvenOdd(_cbgrid),