15#ifndef dealii_lapack_support_h
16#define dealii_lapack_support_h
27#ifdef LAPACK_WITH_64BIT_BLAS_INDICES
85 return "inverse matrix";
87 return "lu decomposition";
89 return "cholesky decomposition";
136 return "upper triangular";
138 return "lower triangular";
152 static const char A =
'A';
156 static const char N =
'N';
160 static const char O =
'O';
164 static const char T =
'T';
168 static const char U =
'U';
172 static const char L =
'L';
176 static const char V =
'V';
192 <<
"The function " << arg1 <<
" returned with an error code "
203 <<
"The function cannot be called while the matrix is in state "
212 <<
"The function cannot be called with a "
222 <<
"When you ran 'cmake' during installation of deal.II, no suitable "
223 <<
"installation of the BLAS or LAPACK library could be found. "
224 <<
"Consequently, the function <" << arg1 <<
"> can not be called. "
225 <<
"Refer to the readme at https://dealii.org/current/readme.html for "
226 <<
"information on how to ensure that deal.II picks up an existing "
227 <<
"BLAS and LAPACK installation at configuration time.");
#define DEAL_II_NAMESPACE_OPEN
#define DEAL_II_NAMESPACE_CLOSE
static ::ExceptionBase & ExcMissing(std::string arg1)
static ::ExceptionBase & ExcErrorCode(std::string arg1, types::blas_int arg2)
static ::ExceptionBase & ExcProperty(Property arg1)
#define DeclException2(Exception2, type1, type2, outsequence)
#define DeclException1(Exception1, type1, outsequence)
static ::ExceptionBase & ExcState(State arg1)
#define DEAL_II_NOT_IMPLEMENTED()
static const types::blas_int zero
@ cholesky
Contents is a Cholesky decomposition.
@ lu
Contents is an LU decomposition.
@ matrix
Contents is actually a matrix.
@ unusable
Contents is something useless.
@ inverse_matrix
Contents is the inverse of a matrix.
@ svd
Matrix contains singular value decomposition,.
@ inverse_svd
Matrix is the inverse of a singular value decomposition.
@ eigenvalues
Eigenvalue vector is filled.
const char * state_name(State s)
@ symmetric
Matrix is symmetric.
@ hessenberg
Matrix is in upper Hessenberg form.
@ diagonal
Matrix is diagonal.
@ upper_triangular
Matrix is upper triangular.
@ lower_triangular
Matrix is lower triangular.
@ general
No special properties.
const char * property_name(const Property s)
static const types::blas_int one