CPPLapack
 All Classes Files Functions Variables Friends Pages
_zhsmatrix-misc.hpp
Go to the documentation of this file.
1 //=============================================================================
2 /*! nullify all the matrix data */
3 inline void _zhsmatrix::nullify() const
4 {CPPL_VERBOSE_REPORT;
5  n=0;
6  data.clear();
7  line.clear();
8 }
9 
10 //=============================================================================
11 /*! destroy all the matrix data */
12 inline void _zhsmatrix::destroy() const
13 {CPPL_VERBOSE_REPORT;
14  data.clear();
15  line.clear();
16 }
std::vector< zcomponent > data
matrix data
Definition: _zhsmatrix.hpp:12
void destroy() const
void nullify() const
CPPL_INT n
matrix column size
Definition: _zhsmatrix.hpp:11
std::vector< std::vector< CPPL_INT > > line
vector of vector to store the entry information of component for each row and column ...
Definition: _zhsmatrix.hpp:13