From: David Wells Date: Sat, 28 Oct 2017 19:49:03 +0000 (-0400) Subject: Avoid referencing the removed function compute_support_points. X-Git-Tag: v9.0.0-rc1~851^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7c8cdaba91541b90a9e3a0c2cb055211dfcda561;p=dealii.git Avoid referencing the removed function compute_support_points. --- diff --git a/include/deal.II/fe/mapping_c1.h b/include/deal.II/fe/mapping_c1.h index bc43f897c7..84035a476c 100644 --- a/include/deal.II/fe/mapping_c1.h +++ b/include/deal.II/fe/mapping_c1.h @@ -73,9 +73,6 @@ protected: * located on bounding lines to the vector @p a. Points located on the * line but on vertices are not included. * - * Needed by the compute_support_points_simple(laplace) - * functions. For dim=1 this function is empty. - * * This function chooses the respective points not such that they are * interpolating the boundary (as does the base class), but rather such * that the resulting cubic mapping is a continuous one. @@ -89,9 +86,6 @@ protected: * located on bounding faces (quads in 3d) to the vector @p a. Points * located on the line but on vertices are not included. * - * Needed by the @p compute_support_points_laplace function. For - * dim=1 and 2 this function is empty. - * * This function chooses the respective points not such that they are * interpolating the boundary (as does the base class), but rather such * that the resulting cubic mapping is a continuous one. diff --git a/include/deal.II/fe/mapping_q_generic.h b/include/deal.II/fe/mapping_q_generic.h index 0bd5c07952..6b8af95b28 100644 --- a/include/deal.II/fe/mapping_q_generic.h +++ b/include/deal.II/fe/mapping_q_generic.h @@ -692,14 +692,13 @@ protected: const Point &initial_p_unit) const; /** - * For dim=2,3. Append the support points of all shape functions - * located on bounding lines of the given cell to the vector @p a. Points - * located on the vertices of a line are not included. + * Append the support points of all shape functions located on bounding + * lines of the given cell to the vector @p a. Points located on the + * vertices of a line are not included. * - * Needed by the @p compute_support_points() function. For dim=1 - * this function is empty. The function uses the underlying manifold object - * of the line (or, if none is set, of the cell) for the location of the - * requested points. + * This function uses the underlying manifold object of the line (or, if + * none is set, of the cell) for the location of the requested points. This + * function is usually called by compute_mapping_support_points() function. * * This function is made virtual in order to allow derived classes to choose * shape function support points differently than the present class, which @@ -711,14 +710,14 @@ protected: std::vector > &a) const; /** - * For dim=3. Append the support points of all shape functions - * located on bounding faces (quads in 3d) of the given cell to the vector - * @p a. Points located on the vertices or lines of a quad are not included. + * Append the support points of all shape functions located on bounding + * faces (quads in 3d) of the given cell to the vector @p a. This function + * is only defined for dim=3. Points located on the vertices or + * lines of a quad are not included. * - * Needed by the @p compute_support_points() function. For dim=1 - * and dim=2 this function is empty. The function uses the - * underlying manifold object of the quad (or, if none is set, of the cell) - * for the location of the requested points. + * This function uses the underlying manifold object of the quad (or, if + * none is set, of the cell) for the location of the requested points. This + * function is usually called by compute_mapping_support_points(). * * This function is made virtual in order to allow derived classes to choose * shape function support points differently than the present class, which