Skip to content
Snippets Groups Projects
Commit 5496f225 authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Whitespace

parent 38e99693
No related branches found
No related tags found
No related merge requests found
......@@ -32,9 +32,8 @@ void assemble_neumann(GridView const &gridView, FEBasis const &feBasis,
SampleVector);
NeumannBoundaryAssembler<GridType, LocalVectorType> neumannBoundaryAssembler(
fNeumann);
BoundaryFunctionalAssembler<FEBasis>(feBasis, neumannBoundary).assemble(
neumannBoundaryAssembler, f, true); // resize and zero output vector
BoundaryFunctionalAssembler<FEBasis>(feBasis, neumannBoundary)
.assemble(neumannBoundaryAssembler, f, true);
}
// Assembles constant 1-function on frictional boundary in nodalIntegrals
......@@ -50,8 +49,7 @@ assemble_frictional(GridView const &gridView, FEBasis const &feBasis,
auto const nodalIntegrals = Dune::make_shared<Dune::BlockVector<Singleton>>();
BoundaryFunctionalAssembler<FEBasis>(feBasis, frictionalBoundary)
.assemble(frictionalBoundaryAssembler, *nodalIntegrals,
true); // resize and zero output vector
.assemble(frictionalBoundaryAssembler, *nodalIntegrals, true);
return nodalIntegrals;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment