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