Skip to content
Snippets Groups Projects
Commit 75d5b44f authored by Max Kahnt's avatar Max Kahnt
Browse files

Warn when SubgridL2FunctionalAssembler falls back to L2FunctionalAssembler.

parent 97509008
No related branches found
No related tags found
No related merge requests found
...@@ -102,6 +102,7 @@ class SubgridL2FunctionalAssembler : ...@@ -102,6 +102,7 @@ class SubgridL2FunctionalAssembler :
if (not(fAsHostGridFunction_)) if (not(fAsHostGridFunction_))
{ {
L2FunctionalAssembler<GridType,TrialLocalFE,T>::assemble(element, localVector, tFE); L2FunctionalAssembler<GridType,TrialLocalFE,T>::assemble(element, localVector, tFE);
Dune::dwarn << "SubgridL2FunctionalAssembler fallback to L2FunctionalAssembler. Make sure the given QuadKey is appropriate." << std::endl;
return; return;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment