finally add a Array class with storage via the introduction of a DenseStorageBase

base class shared by both Matrix and Array
This commit is contained in:
Gael Guennebaud
2009-12-17 13:37:00 +01:00
parent 4e9c227bd5
commit ebb2878829
15 changed files with 1221 additions and 542 deletions

View File

@@ -24,8 +24,8 @@
static int nb_temporaries;
#define EIGEN_DEBUG_MATRIX_CTOR(MTYPE) { \
if(MTYPE::SizeAtCompileTime==Dynamic) \
#define EIGEN_DEBUG_MATRIX_CTOR { \
if(SizeAtCompileTime==Dynamic) \
nb_temporaries++; \
}