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 //*************************************************************************************************
77 {
78  byDefault = 0,
79  byLU = 1,
80  byLDLT = 2,
81  byLDLH = 3,
82  byLLH = 4
83 };
84 //*************************************************************************************************
85 
86 } // namespace blaze
87 
88 #endif
Flag for the Bunch-Kaufman-based inversion for Hermitian matrices.
Definition: InversionFlag.h:81
Flag for the LU-based matrix inversion.
Definition: InversionFlag.h:79
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:76
Flag for the Bunch-Kaufman-based inversion for symmetric matrices.
Definition: InversionFlag.h:80
Flag for the Cholesky-based inversion for positive-definite matrices.
Definition: InversionFlag.h:82
Flag for the default, optimal inversion algorithm.
Definition: InversionFlag.h:78