aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util/Constants.h
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/src/Core/util/Constants.h')
-rw-r--r--Eigen/src/Core/util/Constants.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/Eigen/src/Core/util/Constants.h b/Eigen/src/Core/util/Constants.h
index 831b82890..0553c40f4 100644
--- a/Eigen/src/Core/util/Constants.h
+++ b/Eigen/src/Core/util/Constants.h
@@ -234,6 +234,20 @@ enum {
IsSparse
};
+enum DecompositionOptions {
+ Pivoting = 0x01, // LDLT,
+ NoPivoting = 0x02, // LDLT,
+ ComputeU = 0x10, // SVD,
+ ComputeR = 0x20, // SVD,
+ EigenvaluesOnly = 0x40, // all eigen solvers
+ ComputeEigenvectors = 0x80, // all eigen solvers
+ EigVecMask = EigenvaluesOnly | ComputeEigenvectors,
+ Ax_lBx = 0x100,
+ ABx_lx = 0x200,
+ BAx_lx = 0x400,
+ GenEigMask = Ax_lBx | ABx_lx | BAx_lx
+};
+
/** \brief Enum for reporting the status of a computation.
*/
enum ComputationInfo {