From c6d1b18cf3fbbc0ca33f40ab1f1e0d7fd8227a9d Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Sun, 23 Aug 1998 11:02:21 +0000 Subject: [PATCH] Umbenennung der Argumente i,j git-svn-id: https://svn.dealii.org/trunk@506 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/fe/fe_values.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/deal.II/deal.II/include/fe/fe_values.h b/deal.II/deal.II/include/fe/fe_values.h index fc156f0f1f..0f94998cb5 100644 --- a/deal.II/deal.II/include/fe/fe_values.h +++ b/deal.II/deal.II/include/fe/fe_values.h @@ -231,8 +231,8 @@ class FEValuesBase { * the last time the #reinit# function * of the derived class was called. */ - double shape_value (const unsigned int i, - const unsigned int j) const; + double shape_value (const unsigned int function, + const unsigned int quadrature_point) const; /** * Return a pointer to the matrix holding @@ -275,8 +275,8 @@ class FEValuesBase { * The function returns the gradient on the * real element, not the reference element. */ - const Point & shape_grad (const unsigned int i, - const unsigned int j) const; + const Point & shape_grad (const unsigned int function, + const unsigned int quadrature_point) const; /** * Return a pointer to the matrix holding @@ -366,7 +366,7 @@ class FEValuesBase { * transformation's Jacobi matrix in * all cases). */ - double JxW (const unsigned int i) const; + double JxW (const unsigned int quadrature_point) const; /** * Return a pointer to the array holding -- 2.39.5