InversionFlag.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_INVERSIONFLAG_H_
36 #define _BLAZE_MATH_INVERSIONFLAG_H_
37 
38 
39 namespace blaze {
40 
41 //=================================================================================================
42 //
43 // DECOMPOSITION FLAG VALUES
44 //
45 //=================================================================================================
46 
47 //*************************************************************************************************
102 {
103  byLU = 0,
104  byLDLT = 1,
105  byLDLH = 2,
106  byLLH = 3,
107 
108  asGeneral = 4,
111  asLower = 7,
113  asUpper = 9,
114  asUniUpper = 10,
116 };
117 //*************************************************************************************************
118 
119 } // namespace blaze
120 
121 #endif
Flag for the inversion of a Hermitian matrix (same as byLDLH).
Definition: InversionFlag.h:110
Flag for the inversion of a diagonal matrix.
Definition: InversionFlag.h:115
Flag for the inversion of a general matrix (same as byLU).
Definition: InversionFlag.h:108
Flag for the inversion of a upper unitriangular matrix.
Definition: InversionFlag.h:114
Flag for the inversion of a upper triangular matrix.
Definition: InversionFlag.h:113
Flag for the inversion of a symmetric matrix (same as byLDLT).
Definition: InversionFlag.h:109
Flag for the Bunch-Kaufman-based inversion for Hermitian matrices.
Definition: InversionFlag.h:105
Flag for the LU-based matrix inversion.
Definition: InversionFlag.h:103
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
InversionFlag
Inversion flag.The InversionFlag type enumeration represents the different types of matrix inversion ...
Definition: InversionFlag.h:101
Flag for the Bunch-Kaufman-based inversion for symmetric matrices.
Definition: InversionFlag.h:104
Flag for the Cholesky-based inversion for positive-definite matrices.
Definition: InversionFlag.h:106
Flag for the inversion of a lower triangular matrix.
Definition: InversionFlag.h:111
Flag for the inversion of a lower unitriangular matrix.
Definition: InversionFlag.h:112