From 026ba8f048730726a3aca44ddd45695c8755a520 Mon Sep 17 00:00:00 2001 From: Denis Davydov Date: Mon, 22 Feb 2016 13:42:32 +0100 Subject: [PATCH] minor change to fe_tools_interpolate to allow complex-valued vectors --- source/fe/fe_tools_interpolate.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/fe/fe_tools_interpolate.cc b/source/fe/fe_tools_interpolate.cc index 1a611c6521..b3ddcfd21e 100644 --- a/source/fe/fe_tools_interpolate.cc +++ b/source/fe/fe_tools_interpolate.cc @@ -222,7 +222,7 @@ namespace FETools for (types::global_dof_index i=0; i(touch_count(i)) != typename OutVector::value_type(0), ExcInternalError()); u2(i) /= touch_count(i); } @@ -714,8 +714,8 @@ namespace FETools const unsigned int n1 = dof1.get_fe().dofs_per_cell; const unsigned int n2 = dof2.get_fe().dofs_per_cell; - Vector u1_local(n1); - Vector u2_local(n2); + Vector u1_local(n1); + Vector u2_local(n2); std::vector dofs(n2); FullMatrix matrix(n2,n1); -- 2.39.5