aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/SparseLU/SparseLU_Structs.h
diff options
context:
space:
mode:
authorGravatar Desire NUENTSA <desire.nuentsa_wakam@inria.fr>2012-06-07 19:06:22 +0200
committerGravatar Desire NUENTSA <desire.nuentsa_wakam@inria.fr>2012-06-07 19:06:22 +0200
commitf091879d776965588d8fe631b70e902a6bae3e59 (patch)
tree1850e51077221a5381fce68d4a085c00515a3472 /Eigen/src/SparseLU/SparseLU_Structs.h
parent268ba3b52132d14e3005031a140252724f4bf605 (diff)
Memory management
Diffstat (limited to 'Eigen/src/SparseLU/SparseLU_Structs.h')
-rw-r--r--Eigen/src/SparseLU/SparseLU_Structs.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/Eigen/src/SparseLU/SparseLU_Structs.h b/Eigen/src/SparseLU/SparseLU_Structs.h
index e680eaa21..48fde1ada 100644
--- a/Eigen/src/SparseLU/SparseLU_Structs.h
+++ b/Eigen/src/SparseLU/SparseLU_Structs.h
@@ -92,8 +92,9 @@ typedef enum {NATURAL, MMD_ATA, MMD_AT_PLUS_A, COLAMD, MY_PERMC} colperm_t;
typedef enum {DOFACT, SamePattern, Factored} fact_t;
typedef enum {LUSUP, UCOL, LSUB, USUB, LLVL, ULVL} MemType;
-/** Headers for dynamically managed memory
- \tparam IndexVectorType can be int, real scalar or complex scalar*/
+
+/* Obsolete, headers for dynamically managed memory
+ \tparam VectorType can be int, real scalar or complex scalar*/
template <typename VectorType>
struct ExpHeader {
int size; // Length of the memory that has been used */
@@ -118,7 +119,7 @@ struct {
Index n; // Number of columns in the matrix
int num_expansions;
- ExpHeader *expanders; // Array of pointers to 4 types of memory
+ ExpHeader *expanders; // Deprecated... Array of pointers to 4 types of memory
} GlobalLU_t;
}// End namespace Eigen