From 893c8ce468752143b2736cd8d072baeb9e1ebc52 Mon Sep 17 00:00:00 2001 From: Ralf Hartmann Date: Mon, 29 May 2000 13:06:42 +0000 Subject: [PATCH] replace MatrixCreator::create_interpolation_matrix by FETools::get_interpolation_matrix git-svn-id: https://svn.dealii.org/trunk@2969 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/fe_tables.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/deal.II/fe_tables.cc b/tests/deal.II/fe_tables.cc index c1f86065b5..812ee23b14 100644 --- a/tests/deal.II/fe_tables.cc +++ b/tests/deal.II/fe_tables.cc @@ -18,6 +18,7 @@ #include #include #include +#include #include #include #include @@ -25,7 +26,6 @@ #include #include #include -#include #include #include @@ -97,7 +97,7 @@ print_fe_matrices(const FiniteElement& high, const FiniteElement& low) { FullMatrix interpolation(low.dofs_per_cell, high.dofs_per_cell); - MatrixCreator::create_interpolation_matrix(high, low, interpolation); + FETools::get_interpolation_matrix(high, low, interpolation); deallog << "Interpolation" << endl; interpolation.print(logfile); } -- 2.39.5