]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Fix unused variables in linear algebra source files 5799/head
authorDaniel Arndt <daniel.arndt@iwr.uni-heidelberg.de>
Wed, 24 Jan 2018 21:43:29 +0000 (22:43 +0100)
committerDaniel Arndt <daniel.arndt@iwr.uni-heidelberg.de>
Wed, 24 Jan 2018 23:01:04 +0000 (00:01 +0100)
include/deal.II/lac/lapack_templates.h
source/lac/lapack_full_matrix.cc
source/lac/sparsity_tools.cc

index ecec4f7365ae4a6547c2de4e9db0415a8c92fe5c..332b1f615744eff9431fa0fc500ad745a456fedb 100644 (file)
@@ -423,9 +423,9 @@ gemv (const char *, const types::blas_int *, const types::blas_int *, const floa
 /// Template wrapper for LAPACK functions dtrmv and strmv
 template <typename number>
 inline void
-trmv (const char *uplo, const char *trans, const char *diag,
-      const types::blas_int *N, const number *A, const types::blas_int *lda,
-      number *x, const types::blas_int *incx)
+trmv (const char * /*uplo*/, const char * /*trans*/, const char * /*diag*/,
+      const types::blas_int * /*N*/, const number * /*A*/, const types::blas_int * /*lda*/,
+      number * /*x*/, const types::blas_int * /*incx*/)
 {
   Assert (false, ExcNotImplemented());
 }
@@ -553,10 +553,10 @@ potrf (const char *uplo, const types::blas_int *n, float *A, const types::blas_i
 /// Tempalte wrapper for trcon
 template <typename number>
 inline void
-trcon(const char *norm, const char *uplo, const char *diag,
-      const types::blas_int *n, const number *A, const types::blas_int *lda,
-      number *rcond,
-      number *work, types::blas_int *iwork, types::blas_int *info)
+trcon(const char * /*norm*/, const char * /*uplo*/, const char * /*diag*/,
+      const types::blas_int * /*n*/, const number * /*A*/, const types::blas_int * /*lda*/,
+      number * /*rcond*/,
+      number * /*work*/, types::blas_int * /*iwork*/, types::blas_int * /*info*/)
 {
   Assert (false, ExcNotImplemented());
 }
index 3f6cd8bfe7c58a236e7a54dd6596e2997dbc7a7b..d56b2ea920d4e3481302d7b7eb90a098dda64851 100644 (file)
@@ -320,9 +320,9 @@ namespace
 
 
   template <typename number>
-  void cholesky_rank1(LAPACKFullMatrix<std::complex<number>> &A,
-                      const std::complex<number> a,
-                      const Vector<std::complex<number>> &v)
+  void cholesky_rank1(LAPACKFullMatrix<std::complex<number> > &/*A*/,
+                      const std::complex<number> /*a*/,
+                      const Vector<std::complex<number> > &/*v*/)
   {
     AssertThrow(false, ExcNotImplemented());
   }
index 10a8a78c0eff0f01ac03b2e8deca90e8902534e7..f8dc0bd58d4faa1a1becf0a3547da4e64919cea1 100644 (file)
@@ -150,9 +150,9 @@ namespace SparsityTools
     }
 
 
-    void get_object_list(void *data, int sizeGID, int sizeLID,
+    void get_object_list(void *data, int /*sizeGID*/, int /*sizeLID*/,
                          ZOLTAN_ID_PTR globalID, ZOLTAN_ID_PTR localID,
-                         int wgt_dim, float *obj_wgts, int *ierr)
+                         int /*wgt_dim*/, float * /*obj_wgts*/, int *ierr)
     {
       SparsityPattern *graph = reinterpret_cast<SparsityPattern *>(data);
       *ierr = ZOLTAN_OK;
@@ -171,9 +171,9 @@ namespace SparsityTools
     }
 
 
-    void get_num_edges_list(void *data, int sizeGID, int sizeLID,
+    void get_num_edges_list(void *data, int /*sizeGID*/, int /*sizeLID*/,
                             int num_obj,
-                            ZOLTAN_ID_PTR globalID, ZOLTAN_ID_PTR localID,
+                            ZOLTAN_ID_PTR globalID, ZOLTAN_ID_PTR /*localID*/,
                             int *numEdges, int *ierr)
     {
       SparsityPattern *graph = reinterpret_cast<SparsityPattern *>(data);
@@ -193,11 +193,11 @@ namespace SparsityTools
 
 
 
-    void get_edge_list(void *data, int sizeGID, int sizeLID,
-                       int num_obj, ZOLTAN_ID_PTR globalID, ZOLTAN_ID_PTR localID,
-                       int *num_edges,
+    void get_edge_list(void *data, int /*sizeGID*/, int /*sizeLID*/,
+                       int num_obj, ZOLTAN_ID_PTR /*globalID*/, ZOLTAN_ID_PTR /*localID*/,
+                       int * /*num_edges*/,
                        ZOLTAN_ID_PTR nborGID, int *nborProc,
-                       int wgt_dim, float *ewgts, int *ierr)
+                       int /*wgt_dim*/, float * /*ewgts*/, int *ierr)
     {
       SparsityPattern *graph = reinterpret_cast<SparsityPattern *>(data);
       *ierr = ZOLTAN_OK;
@@ -232,7 +232,9 @@ namespace SparsityTools
       // Make sure that ZOLTAN is actually
       // installed and detected
 #ifndef DEAL_II_TRILINOS_WITH_ZOLTAN
-      (void)sparsity_pattern;
+      (void) sparsity_pattern;
+      (void) n_partitions;
+      (void) partition_indices;
       AssertThrow (false, ExcZOLTANNotInstalled());
 #else
 
@@ -354,7 +356,8 @@ namespace SparsityTools
     // Make sure that ZOLTAN is actually
     // installed and detected
 #ifndef DEAL_II_TRILINOS_WITH_ZOLTAN
-    (void)sparsity_pattern;
+    (void) sparsity_pattern;
+    (void) color_indices;
     AssertThrow (false, ExcZOLTANNotInstalled());
     return 0;
 #else
@@ -398,6 +401,7 @@ namespace SparsityTools
                         global_ids.data(),
                         color_exp.data());
 
+    (void) rc;
     //Check for error code
     Assert (rc == ZOLTAN_OK ,
             ExcInternalError());

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.