From: Wolfgang Bangerth <bangerth@math.tamu.edu> Date: Sun, 25 Jan 2015 18:54:21 +0000 (-0600) Subject: Remove deprecated class FEEvaluationDGP. X-Git-Tag: v8.3.0-rc1~516^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa8aa0acc175b4bf950b8958ed2606bb68f638e0;p=dealii.git Remove deprecated class FEEvaluationDGP. --- 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. <br> 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 <int dim, int fe_degree, int n_q_points_1d = fe_degree+1, - int n_components_ = 1, typename Number = double > -class FEEvaluationDGP : - public FEEvaluation<dim,fe_degree,n_q_points_1d,n_components_,Number> -{ -public: - typedef FEEvaluation<dim,fe_degree,n_q_points_1d,n_components_,Number> 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<dim,fe_degree>::value; - static const unsigned int n_q_points = BaseClass::n_q_points; - - /** - * Constructor. - */ - FEEvaluationDGP (const MatrixFree<dim,Number> &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