|
Reference documentation for deal.II version 9.2.0
|
\(\newcommand{\dealvcentcolon}{\mathrel{\mathop{:}}}\)
\(\newcommand{\dealcoloneq}{\dealvcentcolon\mathrel{\mkern-1.2mu}=}\)
\(\newcommand{\jump}[1]{\left[\!\left[ #1 \right]\!\right]}\)
\(\newcommand{\average}[1]{\left\{\!\left\{ #1 \right\}\!\right\}}\)
Go to the documentation of this file.
16 #ifndef dealii_lapack_support_h
17 #define dealii_lapack_support_h
28 #ifdef LAPACK_WITH_64BIT_BLAS_INDICES
88 return "inverse matrix";
90 return "lu decomposition";
92 return "cholesky decomposition";
139 return "upper triangular";
141 return "lower triangular";
155 static const char A =
'A';
159 static const char N =
'N';
163 static const char T =
'T';
167 static const char U =
'U';
171 static const char L =
'L';
175 static const char V =
'V';
191 <<
"The function " << arg1 <<
" returned with an error code "
202 <<
"The function cannot be called while the matrix is in state "
211 <<
"The function cannot be called with a "
221 <<
"When you ran 'cmake' during installation of deal.II, "
222 <<
"no suitable installation of the BLAS or LAPACK library could "
223 <<
"be found. Consequently, the function <" << arg1
224 <<
"> can not be called. Refer to the doc/readme.html "
225 <<
"file for information on how to ensure that deal.II "
226 <<
"picks up an existing BLAS and LAPACK installation at "
227 <<
"configuration time.");
@ svd
Matrix contains singular value decomposition,.
@ diagonal
Matrix is diagonal.
const char * property_name(const Property s)
@ unusable
Contents is something useless.
@ lower_triangular
Matrix is lower triangular.
@ inverse_svd
Matrix is the inverse of a singular value decomposition.
static ::ExceptionBase & ExcNotImplemented()
static ::ExceptionBase & ExcProperty(Property arg1)
const char * state_name(State s)
static const types::blas_int one
@ cholesky
Contents is a Cholesky decomposition.
@ symmetric
Matrix is symmetric.
@ hessenberg
Matrix is in upper Hessenberg form.
@ eigenvalues
Eigenvalue vector is filled.
#define DEAL_II_NAMESPACE_OPEN
@ matrix
Contents is actually a matrix.
@ general
No special properties.
#define DeclException1(Exception1, type1, outsequence)
static ::ExceptionBase & ExcErrorCode(std::string arg1, types::blas_int arg2)
@ inverse_matrix
Contents is the inverse of a matrix.
#define Assert(cond, exc)
static const types::blas_int zero
@ upper_triangular
Matrix is upper triangular.
static ::ExceptionBase & ExcMissing(std::string arg1)
#define DEAL_II_NAMESPACE_CLOSE
static ::ExceptionBase & ExcState(State arg1)
#define DeclException2(Exception2, type1, type2, outsequence)
@ lu
Contents is an LU decomposition.