From: Wolfgang Bangerth Date: Tue, 14 Mar 2017 13:30:44 +0000 (-0600) Subject: Rename variables in a function. X-Git-Tag: v8.5.0-rc1~16^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d1e898292b86c5d6f6c23a5572f7032581510d37;p=dealii.git Rename variables in a function. Match variable names at a calling site to the ones used in the called function. --- diff --git a/source/fe/fe_tools.cc b/source/fe/fe_tools.cc index 438fa43bdc..20e2587b04 100644 --- a/source/fe/fe_tools.cc +++ b/source/fe/fe_tools.cc @@ -1628,11 +1628,11 @@ namespace FETools // This function specifically works for the case where shape functions // have 'dim' vector components, so allocate that much space std::vector > - values (points.size(), Vector(dim)); + support_point_values (points.size(), Vector(dim)); // In this vector, we store the // result of the interpolation - std::vector local_dofs(n_dofs); + std::vector nodal_values(n_dofs); // Get the values of each shape function in turn. Remember that these // are the 'raw' shape functions (i.e., where the element has not yet @@ -1645,18 +1645,18 @@ namespace FETools for (unsigned int k=0; k