Example #1
0
cAparch::~cAparch()
{
	mvArch.Delete() ;
	mvGamma.Delete() ;
	mvGarch.Delete() ;
	MESS_DESTR("cAparch") ;
}
Example #2
0
cRegArchValue::~cRegArchValue()
{
	mYt.Delete();
	ClearMatrix(mXt) ;
	mMt.Delete() ;
	mHt.Delete() ;
	mUt.Delete() ;
	mEpst.Delete() ;
	MESS_DESTR("cRegArchValue") ;
}
Example #3
0
cRegArchParam::~cRegArchParam()
{
	if (mMean != NULL)
	{	mMean->Delete() ;
		delete mMean ;
	}
	if (mVar != NULL)
		delete mVar ;
	if (mResids != NULL)
		delete mResids ;
	MESS_DESTR("cRegArchParam") ;
}
Example #4
0
cHmm::~cHmm()
{       MESS_DESTR("cHmm")

        std::vector<cDMatrix>::iterator it;
        for (it = mTransMatVector.begin(); it < mTransMatVector.end(); it++ )
                it->Delete();

        // Probably more to free here
        mInitProba.Delete() ;

        delete mDistrParam ;
        mDistrParam = (cDistribution *)NULL ;
}
Example #5
0
	/*!
	 * \fn cArch::~cArch()
	 */
	cArch::~cArch()
	{	mvArch.Delete() ;
		MESS_DESTR("cArch") ;
	}
Example #6
0
cConstCondVar::~cConstCondVar()
{	MESS_DESTR("cConstCondVar");
}
Example #7
0
	/*!
	 * \fn cCondMean::~cCondMean()
	 * \param None
	 * \details simple destructor
	 */
	cCondMean::~cCondMean()
	{	Delete() ;
		MESS_DESTR("cCondMean") ;
	}
Example #8
0
void cAr::Delete(void)
{
	mvAr.Delete() ;
	MESS_DESTR("cAR") ;
}
Example #9
0
/*!
 * \fn cAr::~cAr
 * \brief destructor.
 * \param none.
 */
cAr::~cAr()
{
	mvAr.Delete() ;
	MESS_DESTR("cAR") ;
}
Example #10
0
cTarch::~cTarch()
{
	mvArchPos.Delete() ;
  	mvArchNeg.Delete() ;
  	MESS_DESTR("cTarch") ;
}
Example #11
0
	/*!
	 * \fn void cConst::Delete(void)
	 * \\details Delete. Nothing to do.
	 */
	void cConst::Delete(void)
	{	MESS_DESTR("cConst") ;
	}
Example #12
0
	/*!
	 * \fn cConst::~cConst()
	 * \details Nothing to do.
	 */
	cConst::~cConst()
	{	MESS_DESTR("cConst") ;
	}