From: Wolfgang Bangerth Date: Mon, 17 Apr 2017 00:33:23 +0000 (-0600) Subject: Remove deprecated function FETools::get_node_matrix(). X-Git-Tag: v9.0.0-rc1~1686^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=122967150659cbb900377136ed6a20d3cf249527;p=dealii.git Remove deprecated function FETools::get_node_matrix(). --- diff --git a/include/deal.II/fe/fe_tools.h b/include/deal.II/fe/fe_tools.h index 98275c1666..3f53097695 100644 --- a/include/deal.II/fe/fe_tools.h +++ b/include/deal.II/fe/fe_tools.h @@ -302,17 +302,6 @@ namespace FETools FullMatrix compute_node_matrix(const FiniteElement &fe); - /** - * Same as the function above, but return the matrix by reference through - * the first argument, rather than as the function's return value. - * - * @deprecated - */ - template - void - compute_node_matrix(FullMatrix &M, - const FiniteElement &fe) DEAL_II_DEPRECATED; - /** * For all possible (isotropic and anisotropic) refinement cases compute the * embedding matrices from a coarse cell to the child cells. Each column of diff --git a/source/fe/fe_tools.cc b/source/fe/fe_tools.cc index 5915432825..7a10f5db89 100644 --- a/source/fe/fe_tools.cc +++ b/source/fe/fe_tools.cc @@ -1665,16 +1665,6 @@ namespace FETools - template - void - compute_node_matrix(FullMatrix &M, - const FiniteElement &fe) - { - M = compute_node_matrix (fe); - } - - - /* template<> void diff --git a/source/fe/fe_tools.inst.in b/source/fe/fe_tools.inst.in index 0d852fcdf4..a87028c66f 100644 --- a/source/fe/fe_tools.inst.in +++ b/source/fe/fe_tools.inst.in @@ -146,11 +146,6 @@ for (deal_II_dimension : DIMENSIONS; deal_II_space_dimension : SPACE_DIMENSIONS FullMatrix compute_node_matrix(const FiniteElement &); - template - void - compute_node_matrix(FullMatrix &, - const FiniteElement &); - template void compute_component_wise( const FiniteElement & ,