My Project
_dgbmatrix-misc.hpp
1 //=============================================================================
3 inline void _dgbmatrix::destroy() const
4 {
5 #ifdef CPPL_VERBOSE
6  std::cerr << "# [MARK] _dgbmatrix::destroy() const"
7  << std::endl;
8 #endif//CPPL_VERBOSE
9 
10 #ifdef CPPL_DEBUG
11  std::cerr << "# [NOTE] _dgbmatrix::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 }
double ** Darray
array of pointers of column head addresses
Definition: _dgbmatrix.hpp:12
void destroy() const
Definition: _dgbmatrix-misc.hpp:3
double * Array
1D Array to store matrix data
Definition: _dgbmatrix.hpp:11