Skip to content
Snippets Groups Projects
Commit a6bb2486 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[test.operators.elliptic] update projection usage

parent cd2fd814
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment