1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-20 00:36:55 +01:00

Stout smearing 3D fixes. Changed LapEvec to perform spatial smearing only

This commit is contained in:
Michael Marshall
2019-04-19 11:54:02 +01:00
parent 4a4203c610
commit 143b75956c
3 changed files with 24 additions and 23 deletions

View File

@ -108,13 +108,12 @@ void TStoutSmearing3D<GImpl>::setup(void)
template <typename GImpl>
void TStoutSmearing3D<GImpl>::execute(void)
{
LOG(Message) << "Smearing '" << par().gauge << "' with " << par().steps
<< " step" << ((par().steps > 1) ? "s" : "")
<< " of 3D-stout smearing and rho= " << par().rho
<< "orthogonal to dimension " << par().orthogdim << std::endl;
LOG(Message) << "Smearing '" << par().gauge
<< "' with " << par().steps << " step" << ((par().steps > 1) ? "s" : "")
<< " of 3D-stout smearing and rho=" << par().rho
<< " orthogonal to dimension " << par().orthogdim << std::endl;
//Smear_Stout<GImpl> smearer(par().rho, par().orthogdim);
Smear_Stout<GImpl> smearer(par().rho);
Smear_Stout<GImpl> smearer(par().rho, par().orthogdim);
auto &U = envGet(GaugeField, par().gauge);
auto &Usmr = envGet(GaugeField, getName());