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

Hadrons: scalar SU(N) fixes

This commit is contained in:
Antonin Portelli 2018-03-02 19:20:23 +00:00
parent 90f4000935
commit fcac5c0772
2 changed files with 7 additions and 3 deletions

View File

@ -110,7 +110,7 @@ std::vector<std::string> TEMT<SImpl>::getInput(void)
template <typename SImpl>
std::vector<std::string> TEMT<SImpl>::getOutput(void)
{
std::vector<std::string> out = {getName()};
std::vector<std::string> out;
for (unsigned int mu = 0; mu < env().getNd(); ++mu)
for (unsigned int nu = mu; nu < env().getNd(); ++nu)
@ -125,7 +125,11 @@ std::vector<std::string> TEMT<SImpl>::getOutput(void)
template <typename SImpl>
void TEMT<SImpl>::setup(void)
{
envCreateLat(ComplexField, getName());
for (unsigned int mu = 0; mu < env().getNd(); ++mu)
for (unsigned int nu = mu; nu < env().getNd(); ++nu)
{
envCreateLat(ComplexField, varName(getName(), mu, nu));
}
envTmpLat(ComplexField, "sumkin");
}

View File

@ -104,7 +104,7 @@ std::vector<std::string> TTransProj<SImpl>::getInput(void)
template <typename SImpl>
std::vector<std::string> TTransProj<SImpl>::getOutput(void)
{
std::vector<std::string> out = {getName()};
std::vector<std::string> out;
for (unsigned int mu = 0; mu < env().getNd(); ++mu)
for (unsigned int nu = mu; nu < env().getNd(); ++nu)