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

Hadrons: scalar SU(N) 2-pt guard against negative momenta components

This commit is contained in:
Antonin Portelli 2018-09-04 18:24:07 +01:00
parent 2e69e03f6f
commit 3a40e4fc69

View File

@ -141,6 +141,10 @@ void TTwoPoint<SImpl>::setup(void)
HADRONS_ERROR(Size, "momentum number of components different from "
+ std::to_string(nd-1));
}
for (unsigned int j = 0; j < nd - 1; ++j)
{
mom_[i][j] = (mom_[i][j] + env().getDim(j)) % env().getDim(j);
}
}
envTmpLat(ComplexField, "ftBuf");
}