/// Template wrapper for potrf
template <typename number1>
inline void
-potrf (const char *uplo, const int *n, number1 *A, const int *lda, int *info)
+potrf (const char *, const int *, number1 *, const int *, int *)
{
Assert (false, ExcNotImplemented());
}
#ifdef DEAL_II_WITH_LAPACK
dpotrf_ (uplo,n,A,lda,info);
#else
+ (void) uplo;
+ (void) n;
+ (void) A;
+ (void) lda;
+ (void) info;
+
Assert (false, LAPACKSupport::ExcMissing("dpotrf"));
#endif
}
#ifdef DEAL_II_WITH_LAPACK
spotrf_ (uplo,n,A,lda,info);
#else
+ (void) uplo;
+ (void) n;
+ (void) A;
+ (void) lda;
+ (void) info;
+
Assert (false, LAPACKSupport::ExcMissing("spotrf"));
#endif
}
/// Template wrapper for pocon
template <typename number1>
inline void
-pocon (const char *uplo, const int *n, const number1 *A, const int *lda, const number1 *anorm, number1 *rcond, number1 *work, int *iwork, int *info)
+pocon (const char *, const int *, const number1 *, const int *, const number1 *, number1 *, number1 *, int *, int *)
{
Assert (false, ExcNotImplemented());
}
#ifdef DEAL_II_WITH_LAPACK
dpocon_ (uplo,n,A,lda,anorm,rcond,work,iwork,info);
#else
+ (void) uplo;
+ (void) n;
+ (void) A;
+ (void) lda;
+ (void) anorm;
+ (void) rcond;
+ (void) work;
+ (void) iwork;
+ (void) info;
+
Assert (false, LAPACKSupport::ExcMissing("dpocon"));
#endif
}
#ifdef DEAL_II_WITH_LAPACK
spocon_ (uplo,n,A,lda,anorm,rcond,work,iwork,info);
#else
+ (void) uplo;
+ (void) n;
+ (void) A;
+ (void) lda;
+ (void) anorm;
+ (void) rcond;
+ (void) work;
+ (void) iwork;
+ (void) info;
+
Assert (false, LAPACKSupport::ExcMissing("dpocon"));
#endif
}
/// Template wrapper for potri
template <typename number1>
inline void
-potri(const char *uplo, const int *n, number1 *A, const int *lda, int *info)
+potri(const char *, const int *, number1 *, const int *, int *)
{
Assert (false, ExcNotImplemented());
}
#ifdef DEAL_II_WITH_LAPACK
dpotri_(uplo,n,A,lda,info);
#else
+ (void) uplo;
+ (void) n;
+ (void) A;
+ (void) lda;
+ (void) info;
+
Assert (false, LAPACKSupport::ExcMissing("dpotri"));
#endif
}
#ifdef DEAL_II_WITH_LAPACK
spotri_(uplo,n,A,lda,info);
#else
+ (void) uplo;
+ (void) n;
+ (void) A;
+ (void) lda;
+ (void) info;
+
Assert (false, LAPACKSupport::ExcMissing("spotri"));
#endif
}
/// Template wrapper for lansy
template <typename number>
inline
-number lansy (const char *norm, const char *uplo, const int *n, const number *A, const int *lda, number *work)
+number lansy (const char *, const char *, const int *, const number *, const int *, number *)
{
Assert (false, ExcNotImplemented());
}
#ifdef DEAL_II_WITH_LAPACK
return dlansy_(norm,uplo,n,A,lda,work);
#else
+ (void) norm;
+ (void) uplo;
+ (void) n;
+ (void) A;
+ (void) lda;
+ (void) work;
+
Assert (false, LAPACKSupport::ExcMissing("lansy"));
return 0.;
#endif
#ifdef DEAL_II_WITH_LAPACK
return slansy_(norm,uplo,n,A,lda,work);
#else
+ (void) norm;
+ (void) uplo;
+ (void) n;
+ (void) A;
+ (void) lda;
+ (void) work;
+
Assert (false, LAPACKSupport::ExcMissing("lansy"));
return 0.;
#endif
/// Template wrapper for lange
template <typename number>
inline
-number lange (const char *norm, const int *m, const int *n, const number *A, const int *lda, number *work)
+number lange (const char *, const int *, const int *, const number *, const int *, number *)
{
Assert (false, ExcNotImplemented());
}
#ifdef DEAL_II_WITH_LAPACK
return dlange_(norm,m,n,A,lda,work);
#else
+ (void) norm;
+ (void) m;
+ (void) n;
+ (void) A;
+ (void) lda;
+ (void) work;
+
Assert (false, LAPACKSupport::ExcMissing("lange"));
return 0.;
#endif
#ifdef DEAL_II_WITH_LAPACK
return slange_(norm,m,n,A,lda,work);
#else
+ (void) norm;
+ (void) m;
+ (void) n;
+ (void) A;
+ (void) lda;
+ (void) work;
+
Assert (false, LAPACKSupport::ExcMissing("lange"));
return 0.;
#endif