]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Update outdated function/class names in comments.
authorkronbichler <kronbichler@0785d39b-7218-0410-832d-ea1e28bc413d>
Wed, 21 Nov 2012 16:36:27 +0000 (16:36 +0000)
committerkronbichler <kronbichler@0785d39b-7218-0410-832d-ea1e28bc413d>
Wed, 21 Nov 2012 16:36:27 +0000 (16:36 +0000)
git-svn-id: https://svn.dealii.org/trunk@27662 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/include/deal.II/base/vectorization.h
deal.II/include/deal.II/matrix_free/fe_evaluation.h

index 09441fe875006fd17a0f3392a6149be7ac75803a..574ed003098074097a8bb07b92837bdf4d552638 100644 (file)
@@ -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<double> a = VectorType<double>(), it sets all numbers in this
+ * VectorizedArray<double> a = VectorizedArray<double>(), 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
index 4d81957bdc160a987c7de34662b4240226f8257f..6a44cc8b470db079989950a7294c039cb2702189 100644 (file)
@@ -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 <typename Number>
@@ -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 <typename Number>
@@ -2017,8 +2017,8 @@ namespace internal
   // same as stored in MatrixFree
   template <typename VectorType>
   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 <typename Number>
   inline
-  void check_vector_compatibility (const parallel::distributed::Vector<Number> &vec,
-                                   const internal::MatrixFreeFunctions::DoFInfo      &dof_info)
+  void check_vector_compatibility (const parallel::distributed::Vector<Number>  &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 "

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.