From a6bb24867da2c0ca2afefa98075cd6cb040e795e Mon Sep 17 00:00:00 2001 From: Felix Schindler <felix.schindler@wwu.de> Date: Tue, 1 Mar 2016 12:27:19 +0100 Subject: [PATCH] [test.operators.elliptic] update projection usage --- dune/gdt/test/operators/elliptic.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune/gdt/test/operators/elliptic.hh b/dune/gdt/test/operators/elliptic.hh index e7ef5f1be..0fe12e6b8 100644 --- a/dune/gdt/test/operators/elliptic.hh +++ b/dune/gdt/test/operators/elliptic.hh @@ -557,7 +557,7 @@ struct EllipticMatrixOperatorTest : public EllipticProductBase<SpaceType>, publi auto op = make_elliptic_matrix_operator<MatrixType>(diffusion_factor, diffusion_tensor, space); // project the function DiscreteFunctionType discrete_function(space); - Operators::Projection<GridViewType>(space.grid_view()).apply(function, discrete_function); + project(space.grid_view(), function, discrete_function); // compute product const auto result = op->apply2(discrete_function, discrete_function); auto op_tbb = make_elliptic_matrix_operator<MatrixType>(diffusion_factor, diffusion_tensor, space); -- GitLab