From: Matthias Maier Date: Sat, 25 Nov 2017 18:39:21 +0000 (-0600) Subject: update documentation X-Git-Tag: v9.0.0-rc1~728^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aee45235470a54d72adfedc85763d4141f01b2a8;p=dealii.git update documentation --- diff --git a/include/deal.II/fe/fe_system.h b/include/deal.II/fe/fe_system.h index 538690667b..20b9e116d0 100644 --- a/include/deal.II/fe/fe_system.h +++ b/include/deal.II/fe/fe_system.h @@ -932,14 +932,21 @@ public: /** * Implementation of the * FiniteElement::convert_generalized_support_point_values_to_dof_values() - * function. The current function simply takes the input argument apart, - * passes the pieces to the base elements, and then re-assembles everything - * into the output argument. + * function. + * + * This function simply calls + * FiniteElement::convert_generalized_support_point_values_to_dof_values + * of the base elements and re-assembles everything into the output + * argument. If a base element is non-interpolatory the corresponding dof + * values are filled with "signaling" NaNs instead. + * + * The function fails if none of the base elements of the FESystem are + * interpolatory. */ virtual void convert_generalized_support_point_values_to_dof_values (const std::vector > &support_point_values, - std::vector &nodal_values) const; + std::vector &dof_values) const; /** * Determine an estimate for the memory consumption (in bytes) of this