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

Fix a bug in Wilson MG

The calculation of the lattice size of a second coarse level was incorrect.
This commit is contained in:
Daniel Richtmann 2018-01-18 17:02:04 +01:00
parent a70c1feecc
commit 9dc885d297
No known key found for this signature in database
GPG Key ID: B33C490AF0772057

View File

@ -113,7 +113,8 @@ public:
std::cout << GridLogMessage << "Constructing " << coarsegrids << " CoarseGrids" << std::endl;
for(int cl = 0; cl < coarsegrids; ++cl) { // may be a bit ugly and slow but not perf critical
LattSizes.push_back({GridDefaultLatt()});
// need to differentiate between first and other coarse levels in size calculation
LattSizes.push_back({cl == 0 ? GridDefaultLatt() : LattSizes[cl - 1]});
Seeds.push_back(std::vector<int>(LattSizes[cl].size()));
for(int d = 0; d < LattSizes[cl].size(); ++d) {