From: wolf Date: Wed, 24 Jul 2002 13:36:55 +0000 (+0000) Subject: Better debuggable now. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ce7106c15fbc9aaa53f7fb3de30db2fb371a9f2;p=dealii-svn.git Better debuggable now. git-svn-id: https://svn.dealii.org/trunk@6271 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/fe/shapes.cc b/tests/fe/shapes.cc index 44560287d4..b15b9e23ac 100644 --- a/tests/fe/shapes.cc +++ b/tests/fe/shapes.cc @@ -193,15 +193,19 @@ plot_face_shape_functions(Mapping& mapping, for (unsigned int c=0; c g1 = sub.shape_grad(i,k), + g2 = sub.shape_grad_component(i,k,c); + Assert (g1 == g2, ExcInternalError()); + + const Tensor<2,dim> s1 = sub.shape_2nd_derivative(i,k), + s2 = sub.shape_2nd_derivative_component(i,k,c); + Assert (s1 == s2, ExcInternalError()); + } else Assert ((sub.shape_value_component(i,k,c) == 0) && (sub.shape_grad_component(i,k,c) == Tensor<1,dim>()) &&