CPPLapack
 All Classes Files Functions Variables Friends
_zrovector-misc.hpp
Go to the documentation of this file.
00001 //=============================================================================
00002 /*! nullify all the vector data */
00003 inline void _zrovector::nullify() const
00004 {VERBOSE_REPORT;
00005   l=0;
00006   array=NULL;
00007 }
00008 
00009 //=============================================================================
00010 /*! destroy all the vector data */
00011 inline void _zrovector::destroy() const
00012 {VERBOSE_REPORT;
00013   delete [] array;
00014   array=NULL;
00015 }
 All Classes Files Functions Variables Friends