From e2ad92619458a48a9369c1f77991615788b5038f Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 11 Aug 2015 11:01:04 -0500 Subject: [PATCH] Delete unimplemented functions. FE_PolyFace had a lot of functions in the header file that are declared in the base class and implemented in some of the derived finite element classes, but commented out in the current one. Remove those -- there is no value leaving cruft in the header file. --- include/deal.II/fe/fe_poly_face.h | 66 ------------------------------- 1 file changed, 66 deletions(-) diff --git a/include/deal.II/fe/fe_poly_face.h b/include/deal.II/fe/fe_poly_face.h index 444616626c..e0997eb932 100644 --- a/include/deal.II/fe/fe_poly_face.h +++ b/include/deal.II/fe/fe_poly_face.h @@ -72,72 +72,6 @@ public: */ unsigned int get_degree () const; - /** - * Return the value of the ith shape function at the point - * p. See the FiniteElement base class for more information about - * the semantics of this function. - */ -// virtual double shape_value (const unsigned int i, -// const Point &p) const; - - /** - * Return the value of the componentth vector component of the - * ith shape function at the point p. See the - * FiniteElement base class for more information about the semantics of this - * function. - * - * Since this element is scalar, the returned value is the same as if the - * function without the _component suffix were called, provided - * that the specified component is zero. - */ -// virtual double shape_value_component (const unsigned int i, -// const Point &p, -// const unsigned int component) const; - - /** - * Return the gradient of the ith shape function at the point - * p. See the FiniteElement base class for more information about - * the semantics of this function. - */ -// virtual Tensor<1,dim> shape_grad (const unsigned int i, -// const Point &p) const; - - /** - * Return the gradient of the componentth vector component of the - * ith shape function at the point p. See the - * FiniteElement base class for more information about the semantics of this - * function. - * - * Since this element is scalar, the returned value is the same as if the - * function without the _component suffix were called, provided - * that the specified component is zero. - */ -// virtual Tensor<1,dim> shape_grad_component (const unsigned int i, -// const Point &p, -// const unsigned int component) const; - - /** - * Return the tensor of second derivatives of the ith shape - * function at point p on the unit cell. See the FiniteElement base - * class for more information about the semantics of this function. - */ -// virtual Tensor<2,dim> shape_grad_grad (const unsigned int i, -// const Point &p) const; - - /** - * Return the second derivative of the componentth vector component - * of the ith shape function at the point p. See the - * FiniteElement base class for more information about the semantics of this - * function. - * - * Since this element is scalar, the returned value is the same as if the - * function without the _component suffix were called, provided - * that the specified component is zero. - */ -// virtual Tensor<2,dim> shape_grad_grad_component (const unsigned int i, -// const Point &p, -// const unsigned int component) const; - protected: virtual -- 2.39.5