From: Denis Davydov Date: Mon, 4 Sep 2017 20:41:18 +0000 (+0200) Subject: minor cleanup of LAPACKSupport X-Git-Tag: v9.0.0-rc1~1126^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f3806787e81399bec2187dd963e58747f14d4f08;p=dealii.git minor cleanup of LAPACKSupport --- diff --git a/include/deal.II/lac/lapack_support.h b/include/deal.II/lac/lapack_support.h index 6ce31ef87e..53bbb000a2 100644 --- a/include/deal.II/lac/lapack_support.h +++ b/include/deal.II/lac/lapack_support.h @@ -43,6 +43,8 @@ namespace LAPACKSupport inverse_matrix, /// Contents is an LU decomposition. lu, + /// Contents is a Cholesky decomposition. + cholesky, /// Eigenvalue vector is filled eigenvalues, /// Matrix contains singular value decomposition, @@ -90,9 +92,9 @@ namespace LAPACKSupport /// Matrix is symmetric symmetric = 1, /// Matrix is upper triangular - upper_triangle = 2, + upper_triangular = 2, /// Matrix is lower triangular - lower_triangle = 4, + lower_triangular = 4, /// Matrix is diagonal diagonal = 6, /// Matrix is in upper Hessenberg form @@ -115,6 +117,10 @@ namespace LAPACKSupport * Character constant. */ static const char U = 'U'; + /** + * Character constant. + */ + static const char L = 'L'; /** * Character constant. */