mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-09 21:50:45 +01:00
WilsonMG: Move comment to make clang-format happy
This commit is contained in:
parent
afdcbf79d1
commit
683a7d2ddd
@ -287,9 +287,8 @@ public:
|
|||||||
static_assert((nBasis & 0x1) == 0, "MG Preconditioner only supports an even number of basis vectors");
|
static_assert((nBasis & 0x1) == 0, "MG Preconditioner only supports an even number of basis vectors");
|
||||||
int nb = nBasis / 2;
|
int nb = nBasis / 2;
|
||||||
|
|
||||||
for(
|
// TODO: to get this to work for more than two levels, I would need to either implement coarse spins or have a template specialization of this class also for the finest level
|
||||||
int n = 0; n < nb;
|
for(int n = 0; n < nb; n++) {
|
||||||
n++) { // TODO: to get this to work for more than two levels, I would need to either implement coarse spins or have a template specialization of this class also for the finest level
|
|
||||||
_Aggregates.subspace[n + nb] = g5 * _Aggregates.subspace[n];
|
_Aggregates.subspace[n + nb] = g5 * _Aggregates.subspace[n];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user