00001 //============================================================================= 00002 /*! nullify all the matrix data */ 00003 inline void _dgsmatrix::nullify() const 00004 {VERBOSE_REPORT; 00005 m=0; 00006 n=0; 00007 data.clear(); 00008 rows.clear(); 00009 cols.clear(); 00010 } 00011 00012 //============================================================================= 00013 /*! destroy all the matrix data */ 00014 inline void _dgsmatrix::destroy() const 00015 {VERBOSE_REPORT; 00016 data.clear(); 00017 rows.clear(); 00018 cols.clear(); 00019 }