From f3806787e81399bec2187dd963e58747f14d4f08 Mon Sep 17 00:00:00 2001 From: Denis Davydov Date: Mon, 4 Sep 2017 22:41:18 +0200 Subject: [PATCH] minor cleanup of LAPACKSupport --- include/deal.II/lac/lapack_support.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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. */ -- 2.39.5