From: Wolfgang Bangerth Date: Sun, 25 Jan 2015 18:53:07 +0000 (-0600) Subject: Remove deprecated classes FEEvaluationGeneral and FEEvaluationGL. X-Git-Tag: v8.3.0-rc1~516^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=22b370c3e9d193a2481c1201578fc3caddb9430c;p=dealii.git Remove deprecated classes FEEvaluationGeneral and FEEvaluationGL. --- diff --git a/doc/news/changes.h b/doc/news/changes.h index 54a4a484c2..da7379865d 100644 --- a/doc/news/changes.h +++ b/doc/news/changes.h @@ -208,6 +208,7 @@ inconvenience this causes. - MGTools::extract_inner_interface_dofs. - Class MGMatrix. - Multigrid::vmult and friends. + - Classes FEEvaluationGeneral and FEEvaluationGL.
This release also removes the deprecated class MGDoFHandler. The functionality of this class had previously been incorporated into diff --git a/include/deal.II/matrix_free/fe_evaluation.h b/include/deal.II/matrix_free/fe_evaluation.h index 9b4df70e3b..0ed7c6b86d 100644 --- a/include/deal.II/matrix_free/fe_evaluation.h +++ b/include/deal.II/matrix_free/fe_evaluation.h @@ -1690,68 +1690,6 @@ private: -/** - * Deprecated. Functionality has been merged into FEEvaluation. Use class - * FEEvaluation instead. - */ -template -class FEEvaluationGeneral : public FEEvaluation -{ -public: - typedef FEEvaluation BaseClass; - typedef Number number_type; - typedef typename BaseClass::value_type value_type; - typedef typename BaseClass::gradient_type gradient_type; - static const unsigned int dimension = dim; - static const unsigned int n_components = n_components_; - static const unsigned int dofs_per_cell = Utilities::fixed_int_power::value; - static const unsigned int n_q_points = Utilities::fixed_int_power::value; - - /** - * Constructor. - */ - FEEvaluationGeneral (const MatrixFree &matrix_free, - const unsigned int fe_no = 0, - const unsigned int quad_no = 0) DEAL_II_DEPRECATED -: - BaseClass (matrix_free, fe_no, quad_no) - {} -}; - - - -/** - * Deprecated. Functionality has been merged into FEEvaluation. Use class - * FEEvaluation instead. - */ -template -class FEEvaluationGL : - public FEEvaluation -{ -public: - typedef FEEvaluation BaseClass; - typedef Number number_type; - typedef typename BaseClass::value_type value_type; - typedef typename BaseClass::gradient_type gradient_type; - static const unsigned int dimension = dim; - static const unsigned int n_components = n_components_; - static const unsigned int dofs_per_cell = Utilities::fixed_int_power::value; - static const unsigned int n_q_points = BaseClass::n_q_points; - - /** - * Constructor. - */ - FEEvaluationGL (const MatrixFree &matrix_free, - const unsigned int fe_no = 0, - const unsigned int quad_no = 0) DEAL_II_DEPRECATED -: - BaseClass (matrix_free, fe_no, quad_no) - {} -}; - - - namespace internal { namespace MatrixFreeFunctions