/// 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());
}
/// 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());
}
}
- 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;
}
- 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);
- 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;
// 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
// 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
global_ids.data(),
color_exp.data());
+ (void) rc;
//Check for error code
Assert (rc == ZOLTAN_OK ,
ExcInternalError());