VERB_code_2.3
_zgbmatrix-misc.hpp
1 //=============================================================================
3 inline void _zgbmatrix::destroy() const
4 {
5 #ifdef CPPL_VERBOSE
6  std::cerr << "# [MARK] _zgbmatrix::destroy() const"
7  << std::endl;
8 #endif//CPPL_VERBOSE
9 
10 #ifdef CPPL_DEBUG
11  std::cerr << "# [NOTE] _zgbmatrix::destroy() const"
12  << " An array at " << Array
13  << " is going to be cleared." << std::endl;
14 #endif//CPPL_DEBUG
15 
16  delete [] Array;
17  delete [] Darray;
18 }
19 
20 
void destroy() const
Definition: _zgbmatrix-misc.hpp:3
std::complex< double > * Array
1D Array to store matrix data
Definition: _zgbmatrix.hpp:11
std::complex< double > ** Darray
array of pointers of column head addresses
Definition: _zgbmatrix.hpp:12