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

Remove another use of FufemFEBasis

parent dc5ce6c6
No related branches found
No related tags found
No related merge requests found
......@@ -156,10 +156,7 @@ int main (int argc, char *argv[]) try
i = i<<(numLevels-1);
FEBasis feBasis(gridView, lower, upper, elements, order);
#endif
typedef DuneFunctionsBasis<FEBasis> FufemFEBasis;
FufemFEBasis fufemFeBasis(feBasis);
SolutionType x(fufemFeBasis.size());
SolutionType x(feBasis.size());
// /////////////////////////////////////////
// Read Dirichlet values
......@@ -170,6 +167,10 @@ int main (int argc, char *argv[]) try
BoundaryPatch<GridView> dirichletBoundary(gridView, allNodes);
BitSetVector<blocksize> dirichletNodes;
typedef DuneFunctionsBasis<FEBasis> FufemFEBasis;
FufemFEBasis fufemFeBasis(feBasis);
constructBoundaryDofs(dirichletBoundary,fufemFeBasis,dirichletNodes);
// //////////////////////////
......
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