Skip to content
Snippets Groups Projects
Commit 9fd8804c authored by Oliver Sander's avatar Oliver Sander Committed by sander@FU-BERLIN.DE
Browse files

adapt to recent changes in BoundaryPatch

[[Imported from SVN: r7571]]
parent ad72cd11
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,7 @@
#include <dune/grid/io/file/amirameshreader.hh>
#include <dune/fufem/functionspacebases/p1nodalbasis.hh>
#include <dune/fufem/boundarypatch.hh>
#include <dune/fufem/assemblers/operatorassembler.hh>
#include <dune/fufem/assemblers/localassemblers/laplaceassembler.hh>
#include <dune/fufem/assemblers/localassemblers/massassembler.hh>
......@@ -57,7 +58,7 @@ void solve (const shared_ptr<GridType>& grid,
BitSetVector<1> allNodes(grid->size(dim));
allNodes.setAll();
BoundaryPatch<GridType::LeafGridView> dirichletBoundary(grid->leafView(), allNodes);
BoundaryPatch<typename GridType::LeafGridView> dirichletBoundary(grid->leafView(), allNodes);
BitSetVector<blocksize> dirichletNodes(grid->size(dim));
for (int i=0; i<dirichletNodes.size(); i++)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment