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