From 2fc3dd3a762e689677a1da83edabe0dc629fb97e Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Thu, 13 Jul 2017 14:49:53 -0500 Subject: [PATCH] make astyle happy --- include/deal.II/multigrid/mg_block_smoother.h | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/include/deal.II/multigrid/mg_block_smoother.h b/include/deal.II/multigrid/mg_block_smoother.h index e6ba850c2a..15c780af93 100644 --- a/include/deal.II/multigrid/mg_block_smoother.h +++ b/include/deal.II/multigrid/mg_block_smoother.h @@ -200,21 +200,25 @@ MGSmootherBlock::initialize (const MGMatrixT matrices[i] = LinearOperator>(); matrices[i].vmult = [&m, i](BlockVector &v, - const BlockVector &u) { + const BlockVector &u) + { m[i].vmult(v, u); }; matrices[i].Tvmult = [&m, i](BlockVector &v, - const BlockVector &u) { + const BlockVector &u) + { m[i].Tvmult(v, u); }; smoothers[i] = LinearOperator>(); smoothers[i].vmult = [&s, i](BlockVector &v, - const BlockVector &u) { + const BlockVector &u) + { s[i].vmult(v, u); }; smoothers[i].Tvmult = [&s, i](BlockVector &v, - const BlockVector &u) { + const BlockVector &u) + { s[i].Tvmult(v, u); }; } -- 2.39.5