From: Martin Kronbichler Date: Thu, 10 Dec 2020 10:50:18 +0000 (+0100) Subject: Merge pull request #11343 from peterrum/simplex_get_constant_modes X-Git-Tag: v9.3.0-rc1~777 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=510b7e5086d69186d3cd68f616d5410c7cb51d39;p=dealii.git Merge pull request #11343 from peterrum/simplex_get_constant_modes Implement Simplex::FE_Poly::get_constant_modes --- 510b7e5086d69186d3cd68f616d5410c7cb51d39 diff --cc include/deal.II/simplex/fe_lib.h index 6ef147dc2b,201620d543..aa833316b9 --- a/include/deal.II/simplex/fe_lib.h +++ b/include/deal.II/simplex/fe_lib.h @@@ -40,10 -40,16 +40,17 @@@ namespace Simple /** * Constructor. */ - FE_Poly(const unsigned int degree, - const std::vector &dpo_vector); + FE_Poly(const unsigned int degree, + const std::vector & dpo_vector, + const typename FiniteElementData::Conformity conformity); + /** + * Return a list of constant modes of the element. For this element, the + * list consists of true arguments for all components. + */ + std::pair, std::vector> + get_constant_modes() const override; + private: /** * @copydoc dealii::FiniteElement::convert_generalized_support_point_values_to_dof_values()