00001 //============================================================================= 00002 /*! nullify all the matrix data */ 00003 inline void _dgematrix::nullify() const 00004 {VERBOSE_REPORT; 00005 m=0; 00006 n=0; 00007 array=NULL; 00008 darray=NULL; 00009 } 00010 00011 //============================================================================= 00012 /*! destroy all the matrix data */ 00013 inline void _dgematrix::destroy() const 00014 {VERBOSE_REPORT; 00015 delete [] array; 00016 delete [] darray; 00017 array=NULL; 00018 darray=NULL; 00019 }