From 5b4618faa792fe9ce014571d4084c922f552057d Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Tue, 24 Mar 2020 11:05:53 -0400 Subject: [PATCH] replace n_array_elements in a few comments Follow-up to #9688 --- include/deal.II/matrix_free/shape_info.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/deal.II/matrix_free/shape_info.h b/include/deal.II/matrix_free/shape_info.h index afc38492be..8a2862de7f 100644 --- a/include/deal.II/matrix_free/shape_info.h +++ b/include/deal.II/matrix_free/shape_info.h @@ -150,7 +150,7 @@ namespace internal /** * Stores the shape values of the 1D finite element evaluated on all 1D * quadrature points in vectorized format, i.e., as an array of - * VectorizedArray::n_array_elements equal elements. The length of + * VectorizedArray::size equal elements. The length of * this array is n_dofs_1d * n_q_points_1d and quadrature * points are the index running fastest. */ @@ -159,7 +159,7 @@ namespace internal /** * Stores the shape gradients of the 1D finite element evaluated on all * 1D quadrature points in vectorized format, i.e., as an array of - * VectorizedArray::n_array_elements equal elements. The length of + * VectorizedArray::size equal elements. The length of * this array is n_dofs_1d * n_q_points_1d and quadrature * points are the index running fastest. */ @@ -168,7 +168,7 @@ namespace internal /** * Stores the shape Hessians of the 1D finite element evaluated on all * 1D quadrature points in vectorized format, i.e., as an array of - * VectorizedArray::n_array_elements equal elements. The length of + * VectorizedArray::size equal elements. The length of * this array is n_dofs_1d * n_q_points_1d and quadrature * points are the index running fastest. */ -- 2.39.5