From aa8aa0acc175b4bf950b8958ed2606bb68f638e0 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sun, 25 Jan 2015 12:54:21 -0600 Subject: [PATCH] Remove deprecated class FEEvaluationDGP. --- doc/news/changes.h | 2 +- include/deal.II/matrix_free/fe_evaluation.h | 33 --------------------- 2 files changed, 1 insertion(+), 34 deletions(-) diff --git a/doc/news/changes.h b/doc/news/changes.h index da7379865d..ea390d237d 100644 --- a/doc/news/changes.h +++ b/doc/news/changes.h @@ -208,7 +208,7 @@ inconvenience this causes. - MGTools::extract_inner_interface_dofs. - Class MGMatrix. - Multigrid::vmult and friends. - - Classes FEEvaluationGeneral and FEEvaluationGL. + - Classes FEEvaluationDGP, 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 0ed7c6b86d..e3a7d16a6b 100644 --- a/include/deal.II/matrix_free/fe_evaluation.h +++ b/include/deal.II/matrix_free/fe_evaluation.h @@ -1714,39 +1714,6 @@ namespace internal } - -/** - * Functionality has been merged into FEEvaluation. Use class FEEvaluation - * instead. - */ -template -class FEEvaluationDGP : - 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 = internal::MatrixFreeFunctions::DGP_dofs_per_cell::value; - static const unsigned int n_q_points = BaseClass::n_q_points; - - /** - * Constructor. - */ - FEEvaluationDGP (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) - {} -}; - - - /*----------------------- Inline functions ----------------------------------*/ #ifndef DOXYGEN -- 2.39.5