]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Convert a few more places of Assert(false, dealii::ExcNotImplemented()); 16572/head
authorWolfgang Bangerth <bangerth@colostate.edu>
Wed, 31 Jan 2024 03:21:28 +0000 (20:21 -0700)
committerWolfgang Bangerth <bangerth@colostate.edu>
Wed, 31 Jan 2024 04:39:52 +0000 (21:39 -0700)
include/deal.II/cgal/point_conversion.h
include/deal.II/lac/scalapack.templates.h
source/base/quadrature_lib.cc
source/lac/scalapack.cc
source/multigrid/mg_transfer_global_coarsening.cc

index 9ccf20f5161e1b39b4fc5a0e995cf431390ee356..fb59e0d03273fd1a1e08c94de2885a5086824acb 100644 (file)
@@ -72,7 +72,7 @@ namespace CGALWrappers
     else if constexpr (cdim == 3)
       return CGALPointType(p[0], dim > 1 ? p[1] : 0, dim > 2 ? p[2] : 0);
     else
-      Assert(false, dealii::ExcNotImplemented());
+      DEAL_II_NOT_IMPLEMENTED();
     return CGALPointType();
   }
 
@@ -93,7 +93,7 @@ namespace CGALWrappers
                                 cdim > 1 ? CGAL::to_double(p.y()) : 0,
                                 cdim > 2 ? CGAL::to_double(p.z()) : 0);
     else
-      Assert(false, dealii::ExcNotImplemented());
+      DEAL_II_NOT_IMPLEMENTED();
   }
 } // namespace CGALWrappers
 
index d568e1e4ebc95bd466c58aee0c34f4cc1f30fa57..fa592e9d564c0b12c2f868a5cb6424913cd6a4ba 100644 (file)
@@ -946,7 +946,7 @@ Cgerv2d(int /*context*/,
         int /*rsrc*/,
         int /*csrc*/)
 {
-  Assert(false, dealii::ExcNotImplemented());
+  DEAL_II_NOT_IMPLEMENTED();
 }
 
 inline void
@@ -972,7 +972,7 @@ Cgesd2d(int /*context*/,
         int /*rdest*/,
         int /*cdest*/)
 {
-  Assert(false, dealii::ExcNotImplemented());
+  DEAL_II_NOT_IMPLEMENTED();
 }
 
 inline void
@@ -998,7 +998,7 @@ ppotrf(const char * /*UPLO*/,
        const int * /*DESCA*/,
        int * /*INFO*/)
 {
-  Assert(false, dealii::ExcNotImplemented());
+  DEAL_II_NOT_IMPLEMENTED();
 }
 
 inline void
@@ -1037,7 +1037,7 @@ pgetrf(const int * /*m*/,
        int * /*ipiv*/,
        int * /*INFO*/)
 {
-  Assert(false, dealii::ExcNotImplemented());
+  DEAL_II_NOT_IMPLEMENTED();
 }
 
 inline void
@@ -1077,7 +1077,7 @@ ppotri(const char * /*UPLO*/,
        const int * /*DESCA*/,
        int * /*INFO*/)
 {
-  Assert(false, dealii::ExcNotImplemented());
+  DEAL_II_NOT_IMPLEMENTED();
 }
 
 inline void
@@ -1119,7 +1119,7 @@ pgetri(const int * /*N*/,
        int * /*liwork*/,
        int * /*info*/)
 {
-  Assert(false, dealii::ExcNotImplemented());
+  DEAL_II_NOT_IMPLEMENTED();
 }
 
 inline void
@@ -1165,7 +1165,7 @@ ptrtri(const char * /*UPLO*/,
        const int * /*DESCA*/,
        int * /*INFO*/)
 {
-  Assert(false, dealii::ExcNotImplemented());
+  DEAL_II_NOT_IMPLEMENTED();
 }
 
 inline void
@@ -1210,7 +1210,7 @@ ppocon(const char * /*uplo*/,
        const int * /*LIWORK*/,
        int * /*INFO*/)
 {
-  Assert(false, dealii::ExcNotImplemented());
+  DEAL_II_NOT_IMPLEMENTED();
 }
 
 inline void
@@ -1263,7 +1263,7 @@ plansy(const char * /*norm*/,
        const int * /*DESCA*/,
        number * /*work*/)
 {
-  Assert(false, dealii::ExcNotImplemented());
+  DEAL_II_NOT_IMPLEMENTED();
 }
 
 inline double
@@ -1308,7 +1308,7 @@ pgesv(const int * /*n*/,
       const int * /*descb*/,
       int * /*info*/)
 {
-  Assert(false, dealii::ExcNotImplemented());
+  DEAL_II_NOT_IMPLEMENTED();
 }
 
 inline void
@@ -1368,7 +1368,7 @@ pgemm(const char * /*transa*/,
       const int * /*JC*/,
       const int * /*DESCC*/)
 {
-  Assert(false, dealii::ExcNotImplemented());
+  DEAL_II_NOT_IMPLEMENTED();
 }
 
 inline void
@@ -1467,7 +1467,7 @@ plange(const char * /*norm*/,
        const int * /*desca*/,
        number * /*work*/)
 {
-  Assert(false, dealii::ExcNotImplemented());
+  DEAL_II_NOT_IMPLEMENTED();
 }
 
 inline double
@@ -1515,7 +1515,7 @@ psyev(const char * /*jobz*/,
       const int * /*lwork*/,
       int * /*info*/)
 {
-  Assert(false, dealii::ExcNotImplemented());
+  DEAL_II_NOT_IMPLEMENTED();
 }
 
 inline void
@@ -1575,7 +1575,7 @@ placpy(const char * /*uplo*/,
        const int * /*jb*/,
        const int * /*descb*/)
 {
-  Assert(false, dealii::ExcNotImplemented());
+  DEAL_II_NOT_IMPLEMENTED();
 }
 
 inline void
@@ -1625,7 +1625,7 @@ pgemr2d(const int * /*m*/,
         const int * /*descb*/,
         const int * /*ictxt*/)
 {
-  Assert(false, dealii::ExcNotImplemented());
+  DEAL_II_NOT_IMPLEMENTED();
 }
 
 inline void
@@ -1665,7 +1665,7 @@ template <typename number>
 inline void
 plamch(const int * /*ictxt*/, const char * /*cmach*/, number & /*val*/)
 {
-  Assert(false, dealii::ExcNotImplemented());
+  DEAL_II_NOT_IMPLEMENTED();
 }
 
 inline void
@@ -1713,7 +1713,7 @@ psyevx(const char * /*jobz*/,
        number * /*gap*/,
        int * /*info*/)
 {
-  Assert(false, dealii::ExcNotImplemented());
+  DEAL_II_NOT_IMPLEMENTED();
 }
 
 inline void
@@ -1864,7 +1864,7 @@ pgesvd(const char * /*jobu*/,
        int * /*lwork*/,
        int * /*info*/)
 {
-  Assert(false, dealii::ExcNotImplemented());
+  DEAL_II_NOT_IMPLEMENTED();
 }
 
 inline void
@@ -1974,7 +1974,7 @@ pgels(const char * /*trans*/,
       int * /*lwork*/,
       int * /*info*/)
 {
-  Assert(false, dealii::ExcNotImplemented());
+  DEAL_II_NOT_IMPLEMENTED();
 }
 
 inline void
@@ -2036,7 +2036,7 @@ pgeadd(const char * /*transa*/,
        const int * /*JC*/,
        const int * /*DESCC*/)
 {
-  Assert(false, dealii::ExcNotImplemented());
+  DEAL_II_NOT_IMPLEMENTED();
 }
 
 inline void
@@ -2091,7 +2091,7 @@ ptran(const int * /*m*/,
       const int * /*JC*/,
       const int * /*DESCC*/)
 {
-  Assert(false, dealii::ExcNotImplemented());
+  DEAL_II_NOT_IMPLEMENTED();
 }
 
 inline void
@@ -2156,7 +2156,7 @@ psyevr(const char * /*jobz*/,
        int * /*liwork*/,
        int * /*info*/)
 {
-  Assert(false, dealii::ExcNotImplemented());
+  DEAL_II_NOT_IMPLEMENTED();
 }
 
 inline void
index 4b56f42f12885c3d28eade8313d62878d18af1ce..92dc5ea6baeaccb29ef7192e272209e86fea405c 100644 (file)
@@ -319,7 +319,7 @@ namespace internal
             break;
 
           default:
-            Assert(false, dealii::StandardExceptions::ExcNotImplemented());
+            DEAL_II_NOT_IMPLEMENTED();
             break;
         }
       return weights;
index c9954a8438e1c1b9b416db1eeb9dbbace91b7a3a..3430a81256f5030f3a859621d54bb987ac6a88ed 100644 (file)
@@ -39,7 +39,7 @@ template <typename number>
 inline hid_t
 hdf5_type_id(const number *)
 {
-  Assert(false, dealii::ExcNotImplemented());
+  DEAL_II_NOT_IMPLEMENTED();
   // don't know what to put here; it does not matter
   return -1;
 }
index 0c3fe87bf791e192acccf8331dc39fee2049ee3f..ba7734b0ee1112ebcf056137bfc94be03eecccc7 100644 (file)
@@ -33,7 +33,7 @@ namespace MGTransferGlobalCoarseningTools
         case PolynomialCoarseningSequenceType::go_to_one:
           return 1u;
         default:
-          Assert(false, StandardExceptions::ExcNotImplemented());
+          DEAL_II_NOT_IMPLEMENTED();
           return 1u;
       }
   }

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.