From 23b20efd51c36982ba747eb94e663b479202a71c Mon Sep 17 00:00:00 2001 From: kronbichler Date: Wed, 21 Nov 2012 16:36:27 +0000 Subject: [PATCH] Update outdated function/class names in comments. git-svn-id: https://svn.dealii.org/trunk@27662 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/base/vectorization.h | 2 +- deal.II/include/deal.II/matrix_free/fe_evaluation.h | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/deal.II/include/deal.II/base/vectorization.h b/deal.II/include/deal.II/base/vectorization.h index 09441fe875..574ed00309 100644 --- a/deal.II/include/deal.II/base/vectorization.h +++ b/deal.II/include/deal.II/base/vectorization.h @@ -827,7 +827,7 @@ private: * double and float. The definition of a vectorized array does not * initialize the data field but rather leaves it undefined, as is the case * for double and float. However, when calling something like - * VectorType a = VectorType(), it sets all numbers in this + * VectorizedArray a = VectorizedArray(), it sets all numbers in this * field to zero. In other words, this class is a plain old data (POD) type * which has an equivalent C representation and can e.g. be safely copied * with std::memcpy. This POD layout is also necessary for ensuring correct diff --git a/deal.II/include/deal.II/matrix_free/fe_evaluation.h b/deal.II/include/deal.II/matrix_free/fe_evaluation.h index 4d81957bdc..6a44cc8b47 100644 --- a/deal.II/include/deal.II/matrix_free/fe_evaluation.h +++ b/deal.II/include/deal.II/matrix_free/fe_evaluation.h @@ -1982,7 +1982,7 @@ namespace internal // write access to distributed MPI vectors - // that have operator [] to access data in + // that have a local_element(uint) method to access data in // local index space, which is what we use in // DoFInfo and hence in read_dof_values etc. template @@ -1997,7 +1997,7 @@ namespace internal // read access to distributed MPI vectors that - // have operator [] to access data in local + // have a local_element(uint) method to access data in local // index space, which is what we use in // DoFInfo and hence in read_dof_values etc. template @@ -2017,8 +2017,8 @@ namespace internal // same as stored in MatrixFree template inline - void check_vector_compatibility (const VectorType &vec, - const internal::MatrixFreeFunctions::DoFInfo &dof_info) + void check_vector_compatibility (const VectorType &vec, + const internal::MatrixFreeFunctions::DoFInfo &dof_info) { AssertDimension (vec.size(), dof_info.vector_partitioner->size()); @@ -2026,8 +2026,8 @@ namespace internal template inline - void check_vector_compatibility (const parallel::distributed::Vector &vec, - const internal::MatrixFreeFunctions::DoFInfo &dof_info) + void check_vector_compatibility (const parallel::distributed::Vector &vec, + const internal::MatrixFreeFunctions::DoFInfo &dof_info) { Assert (vec.partitioners_are_compatible(*dof_info.vector_partitioner), ExcMessage("The parallel layout of the given vector is not " -- 2.39.5