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:
parent
a70c1feecc
commit
9dc885d297
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user