From: Denis Davydov Date: Mon, 22 Feb 2016 12:42:32 +0000 (+0100) Subject: minor change to fe_tools_interpolate to allow complex-valued vectors X-Git-Tag: v8.5.0-rc1~1291^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2220%2Fhead;p=dealii.git minor change to fe_tools_interpolate to allow complex-valued vectors --- 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);