CPPLapack
 All Classes Files Functions Variables Friends Pages
_zrovector-misc.hpp
Go to the documentation of this file.
1 //=============================================================================
2 /*! nullify all the vector data */
3 inline void _zrovector::nullify() const
4 {CPPL_VERBOSE_REPORT;
5  l=0;
6  array=NULL;
7 }
8 
9 //=============================================================================
10 /*! destroy all the vector data */
11 inline void _zrovector::destroy() const
12 {CPPL_VERBOSE_REPORT;
13  delete [] array;
14  array=NULL;
15 }
void destroy() const
CPPL_INT l
vector size
Definition: _zrovector.hpp:9
comple * array
1D array to store vector data
Definition: _zrovector.hpp:10
void nullify() const