From 122967150659cbb900377136ed6a20d3cf249527 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sun, 16 Apr 2017 18:33:23 -0600 Subject: [PATCH] Remove deprecated function FETools::get_node_matrix(). --- include/deal.II/fe/fe_tools.h | 11 ----------- source/fe/fe_tools.cc | 10 ---------- source/fe/fe_tools.inst.in | 5 ----- 3 files changed, 26 deletions(-) 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 & , -- 2.39.5