--- trunk/src/math/DynamicRectMatrix.hpp 2009/08/25 14:54:38 1359 +++ 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);