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

test shape function evaluation

[[Imported from SVN: r7908]]
parent cee19220
No related branches found
No related tags found
No related merge requests found
......@@ -47,8 +47,11 @@ void test()
for (int j=0; j<domainDim+1; j++)
coefficients[j] = testPoints[index[j]];
LocalGFETestFunction<3,double,LocalFiniteElement,TargetSpace>(feCache.get(simplex),coefficients);
LocalGFETestFunction<domainDim,double,LocalFiniteElement,TargetSpace> testFunctionSet(feCache.get(simplex),coefficients);
FieldVector<double,domainDim> stupidTestPoint(0);
std::vector<typename TargetSpace::EmbeddedTangentVector> values;
testFunctionSet.evaluateFunction(stupidTestPoint, values);
}
}
......
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