From fd4df7ec57490aa15aabb1ae9a2449b6e4f3acb0 Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@igpm.rwth-aachen.de> Date: Thu, 13 Sep 2012 18:36:43 +0000 Subject: [PATCH] test interpolation of 2nd-order polynomials by 3rd-order polynomials [[Imported from SVN: r8871]] --- test/nestednesstest.cc | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/test/nestednesstest.cc b/test/nestednesstest.cc index 8d5b0960..076a3c67 100644 --- a/test/nestednesstest.cc +++ b/test/nestednesstest.cc @@ -132,7 +132,9 @@ void testNestedness(const LocalGeodesicFEFunction<domainDim,double,typename PQkL template <class TargetSpace, int domainDim, int lowOrder, int highOrder> void test(const GeometryType& element) { - std::cout << " --- Testing " << className<TargetSpace>() << ", domain dimension: " << element.dim() << " ---" << std::endl; + std::cout << " --- Testing " << element << " --> " << className<TargetSpace>() + << ", low: " << lowOrder + << ", high: " << highOrder << std::endl; std::vector<TargetSpace> testPoints; ValueFactory<TargetSpace>::get(testPoints); @@ -175,6 +177,13 @@ void testElement(const GeometryType& element) test<UnitVector<double,3>,domainDim,1,2>(element); test<Rotation<double,3>,domainDim,1,2>(element); test<RigidBodyMotion<double,3>,domainDim,1,2>(element); + + test<RealTuple<double,1>,domainDim,2,3>(element); + test<UnitVector<double,2>,domainDim,2,3>(element); + test<UnitVector<double,3>,domainDim,2,3>(element); + test<Rotation<double,3>,domainDim,2,3>(element); + test<RigidBodyMotion<double,3>,domainDim,2,3>(element); + } int main() -- GitLab