From d1e898292b86c5d6f6c23a5572f7032581510d37 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 14 Mar 2017 07:30:44 -0600 Subject: [PATCH] Rename variables in a function. Match variable names at a calling site to the ones used in the called function. --- source/fe/fe_tools.cc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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