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
Branches
No related tags found
No related merge requests found
...@@ -280,10 +280,8 @@ int main (int argc, char *argv[]) try ...@@ -280,10 +280,8 @@ int main (int argc, char *argv[]) try
// Prolong solution to the very finest grid // Prolong solution to the very finest grid
for (int j=i; j<numLevels; j++) { for (int j=i; j<numLevels; j++) {
FEBasis basis(grid->leafView()); FEBasis basis(grid->leafView());
#if defined THIRD_ORDER #if defined THIRD_ORDER || defined SECOND_ORDER
GeodesicFEFunctionAdaptor<FEBasis,TargetSpace>::higherOrderGFEFunctionAdaptor<3>(basis, *grid, solution); GeodesicFEFunctionAdaptor<FEBasis,TargetSpace>::higherOrderGFEFunctionAdaptor<order>(basis, *grid, solution);
#elif defined SECOND_ORDER
GeodesicFEFunctionAdaptor<FEBasis,TargetSpace>::higherOrderGFEFunctionAdaptor<2>(basis, *grid, solution);
#else #else
geodesicFEFunctionAdaptor(*grid, solution); geodesicFEFunctionAdaptor(*grid, solution);
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment