From 683a7d2ddd69337518be26991d1f92fb614402df Mon Sep 17 00:00:00 2001 From: Daniel Richtmann Date: Mon, 26 Mar 2018 14:59:40 +0200 Subject: [PATCH] WilsonMG: Move comment to make clang-format happy --- tests/solver/Test_wilsonclover_mg.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/solver/Test_wilsonclover_mg.cc b/tests/solver/Test_wilsonclover_mg.cc index 70dc31e0..294029c9 100644 --- a/tests/solver/Test_wilsonclover_mg.cc +++ b/tests/solver/Test_wilsonclover_mg.cc @@ -287,9 +287,8 @@ public: static_assert((nBasis & 0x1) == 0, "MG Preconditioner only supports an even number of basis vectors"); int nb = nBasis / 2; - for( - int n = 0; n < nb; - 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 + // 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 + for(int n = 0; n < nb; n++) { _Aggregates.subspace[n + nb] = g5 * _Aggregates.subspace[n]; }