From 4966e2c6c6b608b3bf9747e755f1604612933f70 Mon Sep 17 00:00:00 2001 From: wolf Date: Wed, 17 Nov 2004 04:08:44 +0000 Subject: [PATCH] Adjust naming in the 3d case to what we have in 2d. git-svn-id: https://svn.dealii.org/trunk@9787 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/fe/fe_q.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/deal.II/source/fe/fe_q.cc b/deal.II/deal.II/source/fe/fe_q.cc index e940a15af0..0b84320f79 100644 --- a/deal.II/deal.II/source/fe/fe_q.cc +++ b/deal.II/deal.II/source/fe/fe_q.cc @@ -1383,7 +1383,7 @@ FE_Q<3>::initialize_constraints () for (unsigned int i=0;i<=this->degree;++i) v.push_back(Polynomials::LagrangeEquidistant(this->degree,i)); - const TensorProductPolynomials face_polynomial(v); + const TensorProductPolynomials face_polynomials(v); this->interface_constraints .TableBase<2,double>::reinit (this->interface_constraints_size()); @@ -1475,7 +1475,7 @@ FE_Q<3>::initialize_constraints () new_index = indices[1] * (this->degree + 1) + indices[0]; this->interface_constraints(j,i) = - face_polynomial.compute_value (new_index, constraint_point); + face_polynomials.compute_value (new_index, constraint_point); // if the value is small up // to round-off, then -- 2.39.5