This fixes some doxygen links.
Fixed: FiniteElement::get_generalized_support_points() now always returns a
list of unique points. This is in contrast to the old behavior where
get_generalized_support_points() returned a repeated list of (nodal)
- support points for an FE_System consisting of Lagrangian elements.
+ support points for an FESystem consisting of Lagrangian elements.
<br>
(Matthias Maier, 2017/08/31)
</li>
* pointers to the initialization function. Note that the finite element
* underlying an DoFHandler must either be scalar or contain several copies
* of the same element. Mixing several different elements into one
- * @p FE_System is not allowed.
+ * FESystem is not allowed.
*
* This function also allows for using several quadrature formulas, e.g.
* when the description contains independent integrations of elements of
// For FE_Nedelec<3> we just need to have a face numbering greater
// than the number of edge DoFs (=lines_per_face*(degree+1).
//
- // For FE_System<3> we need to base the base_indices (base element
+ // For FESystem<3> we need to base the base_indices (base element
// and copy within that base element) and ensure we're above the
// number of edge DoFs within that base element.
std::vector<unsigned int> associated_face_dof_to_face_dof(
FullMatrix<double> & interpolation_matrix) const
{
AssertThrow(
- (x_source_fe.get_name().find("FE_System<") == 0) ||
+ (x_source_fe.get_name().find("FESystem<") == 0) ||
(dynamic_cast<const FESystem<dim, spacedim> *>(&x_source_fe) != nullptr),
(typename FiniteElement<dim, spacedim>::ExcInterpolationNotImplemented()));