From: David Wells Date: Sat, 1 Sep 2018 01:35:07 +0000 (-0400) Subject: Refer to FESystem as such (not FE_System). X-Git-Tag: v9.1.0-rc1~757^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8fdc639dfeaf639acf5a97265f9d6ce2393237b8;p=dealii.git Refer to FESystem as such (not FE_System). This fixes some doxygen links. --- diff --git a/doc/news/8.5.0-vs-9.0.0.h b/doc/news/8.5.0-vs-9.0.0.h index 3ae0b47ca1..e0d52102c4 100644 --- a/doc/news/8.5.0-vs-9.0.0.h +++ b/doc/news/8.5.0-vs-9.0.0.h @@ -275,7 +275,7 @@ inconvenience this causes. 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.
(Matthias Maier, 2017/08/31) diff --git a/include/deal.II/matrix_free/matrix_free.h b/include/deal.II/matrix_free/matrix_free.h index 5b00e2f701..a7cecd085a 100644 --- a/include/deal.II/matrix_free/matrix_free.h +++ b/include/deal.II/matrix_free/matrix_free.h @@ -534,7 +534,7 @@ public: * 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 diff --git a/include/deal.II/numerics/vector_tools.templates.h b/include/deal.II/numerics/vector_tools.templates.h index 8980930b52..21e6d25706 100644 --- a/include/deal.II/numerics/vector_tools.templates.h +++ b/include/deal.II/numerics/vector_tools.templates.h @@ -5839,7 +5839,7 @@ namespace VectorTools // 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 associated_face_dof_to_face_dof( diff --git a/source/fe/fe_system.cc b/source/fe/fe_system.cc index d01c87c34c..ee31a18fdd 100644 --- a/source/fe/fe_system.cc +++ b/source/fe/fe_system.cc @@ -1994,7 +1994,7 @@ FESystem::get_subface_interpolation_matrix( FullMatrix & interpolation_matrix) const { AssertThrow( - (x_source_fe.get_name().find("FE_System<") == 0) || + (x_source_fe.get_name().find("FESystem<") == 0) || (dynamic_cast *>(&x_source_fe) != nullptr), (typename FiniteElement::ExcInterpolationNotImplemented()));