From: Wolfgang Bangerth Date: Wed, 2 Sep 2015 18:31:17 +0000 (-0500) Subject: Deprecate FEValues::transform(). X-Git-Tag: v8.4.0-rc2~485^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1513%2Fhead;p=dealii.git Deprecate FEValues::transform(). I don't see the use of this function given that all the transformations from reference to real cell should actually go through the Mapping classes directly. The function is also not used anywhere. Fixes #1509. In reference to #1198. --- diff --git a/doc/news/changes.h b/doc/news/changes.h index e0b6ed0ef7..a22bbd2ee9 100644 --- a/doc/news/changes.h +++ b/doc/news/changes.h @@ -240,6 +240,13 @@ inconvenience this causes.
    +
  1. Changed: FEValues::transform() has been deprecated. The functionality + of this function is a (small) subset of what the Mapping classes + already provide. +
    + (Wolfgang Bangerth, 2015/09/02) +
  2. +
  3. New: introduced hp::FECollection::find_least_face_dominating_fe(const std::set &fes) which aims to find the least dominating finite element w.r.t. those provided as fe_indices in @p fes. diff --git a/include/deal.II/fe/fe_values.h b/include/deal.II/fe/fe_values.h index 7e39b1961b..123984957a 100644 --- a/include/deal.II/fe/fe_values.h +++ b/include/deal.II/fe/fe_values.h @@ -2215,10 +2215,12 @@ public: /** * Transform a set of vectors, one for each quadrature point. The * mapping can be any of the ones defined in MappingType. + * + * @deprecated Use the various Mapping::transform() functions instead. */ void transform (std::vector > &transformed, const std::vector > &original, - MappingType mapping) const; + MappingType mapping) const DEAL_II_DEPRECATED; //@}