1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-04 19:25:56 +01:00

Merge pull request #276 from nils-asmussen/fix/regression_nt

fix regression in tests/core/Test_qed.cc
This commit is contained in:
Peter Boyle 2020-04-16 11:42:39 -04:00 committed by GitHub
commit 3cca10e617
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -76,7 +76,7 @@ int main(int argc, char *argv[])
std::cout << GridLogMessage << "Spatial zero-mode norm 2" << std::endl;
sliceSum(a, zm, grid.Nd() - 1);
for (unsigned int t = 0; t < latt_size.size(); ++t)
for (unsigned int t = 0; t < latt_size[Tp]; ++t)
{
std::cout << GridLogMessage << "t = " << t << " " << std::sqrt(norm2(zm[t])) << std::endl;
}