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

Hadrons: fixes and cleaning in the scalar SU(N) part

This commit is contained in:
2018-10-08 15:14:08 +01:00
parent 148fc052bd
commit fe6a372f75
6 changed files with 3 additions and 311 deletions

View File

@ -103,7 +103,7 @@ std::vector<Complex> makeTwoPoint(const std::vector<SinkSite> &sink,
{
for (unsigned int t = 0; t < nt; ++t)
{
res[dt] += trace(sink[(t+dt)%nt]*source[t]);
res[dt] += trace(sink[(t+dt)%nt]*adj(source[t]));
}
res[dt] *= factor/static_cast<double>(nt);
}