CPPLapack
 All Classes Files Functions Variables Friends Pages
_dsymatrix-constructor.hpp
Go to the documentation of this file.
1 //=============================================================================
2 /*! _dsymatrix constructor without arguments */
4  :m(n)
5 {CPPL_VERBOSE_REPORT;
6  n =0;
7  array =NULL;
8  darray =NULL;
9 }
10 
11 //=============================================================================
12 /*! _dsymatrix copy constructor */
14  :m(n)
15 {CPPL_VERBOSE_REPORT;
16  n =mat.n;
17  array =mat.array;
18  darray =mat.darray;
19 
20  mat.nullify();
21 }
22 
23 ///////////////////////////////////////////////////////////////////////////////
24 ///////////////////////////////////////////////////////////////////////////////
25 ///////////////////////////////////////////////////////////////////////////////
26 
27 //=============================================================================
28 /*! dsymatrix destructor */
30 {CPPL_VERBOSE_REPORT;
31  delete[] array;
32  delete[] darray;
33 }
double * array
1D array to store matrix data
Definition: _dsymatrix.hpp:12
double ** darray
array of pointers of column head addresses
Definition: _dsymatrix.hpp:13
(DO NOT USE) Smart-temporary Real Double-precision Symmetric Matrix Class
Definition: _dsymatrix.hpp:3
CPPL_INT n
matrix column size
Definition: _dsymatrix.hpp:11
void nullify() const