From 5ef7b42024cddfc33a4333c89fb0002e46385c42 Mon Sep 17 00:00:00 2001 From: Max Kahnt <max.kahnt@fu-berlin.de> Date: Thu, 25 Feb 2016 11:58:55 +0100 Subject: [PATCH] Use Arithmetic::addProduct instead of StaticMatrix::axpy. --- dune/solvers/transferoperators/compressedmultigridtransfer.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune/solvers/transferoperators/compressedmultigridtransfer.hh b/dune/solvers/transferoperators/compressedmultigridtransfer.hh index 9f4deeb4..31a32163 100644 --- a/dune/solvers/transferoperators/compressedmultigridtransfer.hh +++ b/dune/solvers/transferoperators/compressedmultigridtransfer.hh @@ -265,7 +265,7 @@ public: size_t j = j_it.index(); for (size_t k=0; k<lr_fine_factor.N(); ++k) - StaticMatrix::axpy(lr_coarse_factor[k][j], *j_it, lr_fine_factor[k][i]); + Arithmetic::addProduct(lr_coarse_factor[k][j], *j_it, lr_fine_factor[k][i]); } } } -- GitLab