Skip to content
Snippets Groups Projects
Commit f3dbcff8 authored by Sander, Oliver's avatar Sander, Oliver
Browse files

Call constructBoundaryDofs directly with a dune-functions basis

This used to work only with dune-fufem bases, but the method
constructBoundaryDofs recently learned to also handle the bases
of dune-functions.
parent 068fbd55
No related branches found
No related tags found
No related merge requests found
Pipeline #2064 failed
......@@ -237,10 +237,10 @@ int main (int argc, char *argv[]) try
BitSetVector<1> dirichletNodes(feBasis.size(), false);
constructBoundaryDofs(dirichletBoundary,fufemFeBasis,dirichletNodes);
constructBoundaryDofs(dirichletBoundary,feBasis,dirichletNodes);
BitSetVector<1> neumannNodes(feBasis.size(), false);
constructBoundaryDofs(neumannBoundary,fufemFeBasis,neumannNodes);
constructBoundaryDofs(neumannBoundary,feBasis,neumannNodes);
BitSetVector<blocksize> dirichletDofs(feBasis.size(), false);
for (size_t i=0; i<feBasis.size(); i++)
......
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