# | Line 66 | Line 66 | namespace oopse { | |
---|---|---|
66 | typedef DynamicRectMatrix<Real> SelfType; | |
67 | ||
68 | /** default constructor */ | |
69 | < | DynamicRectMatrix(){} |
69 | > | DynamicRectMatrix(){ |
70 | > | nrow_ = 0; |
71 | > | ncol_ = 0; |
72 | > | data_ = NULL; |
73 | > | } |
74 | > | |
75 | DynamicRectMatrix(int nrow, int ncol) { | |
76 | allocate(nrow, ncol); | |
77 |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |