//=============================================================================
/*! nullify all the matrix data */
inline void _dgematrix::nullify() const
{
#ifdef CPPL_VERBOSE
std::cerr << "# [MARK] _dgematrix::nullify() const"
<< std::endl;
#endif//CPPL_VERBOSE
M=0;
N=0;
Array=NULL;
Darray=NULL;
}
//=============================================================================
/*! destroy all the matrix data */
inline void _dgematrix::destroy() const
{
#ifdef CPPL_VERBOSE
std::cerr << "# [MARK] _dgematrix::destroy() const" << std::endl;
std::cerr << "# [NOTE] _dgematrix::destroy() " << " An array at " << Array << " is going to be destroyed." << std::endl;
#endif//CPPL_VERBOSE
delete [] Array; Array=NULL;
delete [] Darray; Darray=NULL;
}