]> https://gitweb.dealii.org/ - dealii.git/commitdiff
addressed all raised points 6788/head
authorSvenja Schoeder <schoeder@lnm.mw.tum.de>
Wed, 27 Jun 2018 11:00:33 +0000 (13:00 +0200)
committerSvenja Schoeder <schoeder@lnm.mw.tum.de>
Fri, 29 Jun 2018 11:20:24 +0000 (13:20 +0200)
fixed exception message

typo

typo

fixed typos

changes due to indent

include/deal.II/base/partitioner.templates.h
include/deal.II/lac/la_parallel_vector.h
include/deal.II/lac/read_write_vector.templates.h
source/lac/trilinos_sparse_matrix.cc
source/lac/trilinos_vector.cc

index 87b5c601ff04611091ae095d9422f30c52784234..09e9c73175cdc8eb13d7b20f44f91ae5a1fcbbae 100644 (file)
@@ -329,10 +329,10 @@ namespace Utilities
         return a;
       }
 
-      // In the import_from_ghosted_array_finish we need to calculate maximal
-      // and minimal value on number types, which is not straight forward for
-      // complex numbers. Therfore, comparison of complex numbers is
-      // prohibited and throw an assert.
+      // In the import_from_ghosted_array_finish we might need to calculate the
+      // maximal and minimal value for the given number type, which is not
+      // straight forward for complex numbers. Therefore, comparison of complex
+      // numbers is prohibited and throws an exception.
       template <typename Number>
       Number
       get_min(const Number a, const Number b)
@@ -345,7 +345,7 @@ namespace Utilities
       get_min(const std::complex<Number> a, const std::complex<Number>)
       {
         AssertThrow(false,
-                    ExcMessage("VectorOperation::min max not"
+                    ExcMessage("VectorOperation::min not "
                                "implemented for complex numbers"));
         return a;
       }
@@ -362,7 +362,7 @@ namespace Utilities
       get_max(const std::complex<Number> a, const std::complex<Number>)
       {
         AssertThrow(false,
-                    ExcMessage("VectorOperation::min max not "
+                    ExcMessage("VectorOperation::max not "
                                "implemented for complex numbers"));
         return a;
       }
index 97c345574d77561069a84765a2154b2747ca6fad..f3b113a9d1893b130172ebcac4f1f620eb7f3199 100644 (file)
@@ -416,18 +416,18 @@ namespace LinearAlgebra
        * actually consistent between processors, i.e., whenever a non-zero
        * ghost element is found, it is compared to the value on the owning
        * processor and an exception is thrown if these elements do not agree.
-       * If called with VectorOperation::min or VectorOperation::max the
+       * If called with VectorOperation::min or VectorOperation::max, the
        * minimum or maximum on all elements across the processors is set.
        * @note This vector class has a fixed set of ghost entries attached to
        * the local representation. As a consequence, all ghost entries are
-       * assumed to be valid and will be unconditionally exchanged according
+       * assumed to be valid and will be exchanged unconditionally according
        * to the given VectorOperation. Make sure to initialize all ghost
-       * entries with the neutral element of the given VectorOperation. The
-       * neutral element is zero for VectorOperation::add and
-       * VectorOperation::insert, `+inf` for VectorOperation::min, and `-inf`
-       * for VectorOperation::max or touch all ghost entries. If all values
-       * are initialized with values below zero and compress is called with
-       * VectorOperation::max two times subsequently, the maximal value
+       * entries with the neutral element of the given VectorOperation or
+       * touch all ghost entries. The neutral element is zero for
+       * VectorOperation::add and VectorOperation::insert, `+inf` for
+       * VectorOperation::min, and `-inf` for VectorOperation::max. If all
+       * values are initialized with values below zero and compress is called
+       * with VectorOperation::max two times subsequently, the maximal value
        * after the second calculation will be zero.
        */
       virtual void
index 62608caf1089816c7e918ad4ce7574c57c0254b8..77af5dba36bc1380ebc07abde3c281940d50a21f 100644 (file)
@@ -252,10 +252,10 @@ namespace LinearAlgebra
 
   namespace internal
   {
-    // In the import_from_ghosted_array_finish we need to calculate maximal
-    // and minimal value on number types, which is not straight forward for
-    // complex numbers. Therfore, comparison of complex numbers is
-    // prohibited and throw an assert.
+    // In the import_from_ghosted_array_finish we need to calculate the maximal
+    // and minimal value for the given number type, which is not straight
+    // forward for complex numbers. Therefore, comparison of complex numbers is
+    // prohibited and throws an assert.
     template <typename Number>
     Number
     get_min(const Number a, const Number b)
@@ -268,7 +268,7 @@ namespace LinearAlgebra
     get_min(const std::complex<Number> a, const std::complex<Number>)
     {
       AssertThrow(false,
-                  ExcMessage("VectorOperation::min max not"
+                  ExcMessage("VectorOperation::min not "
                              "implemented for complex numbers"));
       return a;
     }
@@ -285,7 +285,7 @@ namespace LinearAlgebra
     get_max(const std::complex<Number> a, const std::complex<Number>)
     {
       AssertThrow(false,
-                  ExcMessage("VectorOperation::min max not "
+                  ExcMessage("VectorOperation::max not "
                              "implemented for complex numbers"));
       return a;
     }
index 1eee3a76cd7590dcd91b83db15b37455db65b671..f67f12977ebf4b592c092cc48a955bb3a8de1e75 100644 (file)
@@ -1158,7 +1158,8 @@ namespace TrilinosWrappers
         else
           Assert(
             false,
-            "compress() can only be called with VectorOperation add, insert, or unknown");
+            ExcMessage(
+              "compress() can only be called with VectorOperation add, insert, or unknown"));
       }
     else
       {
index f143f26209a25236b0a8d7afb194f52e0fd3c0d1..d0ac6a9b3d15a3a21574394e2b39aadcaa4fc861 100644 (file)
@@ -563,7 +563,8 @@ namespace TrilinosWrappers
           else
             Assert(
               false,
-              "compress() can only be called with VectorOperation add, insert, or unknown");
+              ExcMessage(
+                "compress() can only be called with VectorOperation add, insert, or unknown"));
         }
       else
         {

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.