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

minor simplification

[[Imported from SVN: r8258]]
parent f85f762c
No related branches found
No related tags found
No related merge requests found
......@@ -280,10 +280,8 @@ int main (int argc, char *argv[]) try
// Prolong solution to the very finest grid
for (int j=i; j<numLevels; j++) {
FEBasis basis(grid->leafView());
#if defined THIRD_ORDER
GeodesicFEFunctionAdaptor<FEBasis,TargetSpace>::higherOrderGFEFunctionAdaptor<3>(basis, *grid, solution);
#elif defined SECOND_ORDER
GeodesicFEFunctionAdaptor<FEBasis,TargetSpace>::higherOrderGFEFunctionAdaptor<2>(basis, *grid, solution);
#if defined THIRD_ORDER || defined SECOND_ORDER
GeodesicFEFunctionAdaptor<FEBasis,TargetSpace>::higherOrderGFEFunctionAdaptor<order>(basis, *grid, solution);
#else
geodesicFEFunctionAdaptor(*grid, solution);
#endif
......
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