--- trunk/src/math/DynamicRectMatrix.hpp 2009/05/20 19:35:05 1349 +++ trunk/src/math/DynamicRectMatrix.hpp 2009/09/07 16:31:51 1360 @@ -66,7 +66,12 @@ namespace oopse { typedef DynamicRectMatrix SelfType; /** default constructor */ - DynamicRectMatrix(){} + DynamicRectMatrix(){ + nrow_ = 0; + ncol_ = 0; + data_ = NULL; + } + DynamicRectMatrix(int nrow, int ncol) { allocate(nrow, ncol);