remove one instance of dynamic exception specification

closes issue #1250
time-shift
Michel Juillard 2016-07-16 00:13:47 +02:00
parent dcff4b57a9
commit 5d38280f27
2 changed files with 3 additions and 2 deletions

View File

@ -110,7 +110,7 @@ KordpDynare::evaluateSystem(Vector &out, const Vector &yym, const Vector &yy,
* which performs actual calculation and reorders
***************************************************/
void
KordpDynare::calcDerivativesAtSteady() throw (DynareException)
KordpDynare::calcDerivativesAtSteady()
{
if (g1p == NULL)
{
@ -139,6 +139,7 @@ KordpDynare::calcDerivativesAtSteady() throw (DynareException)
LLxSteady(ySteady, llxSteady);
dynamicModelFile->eval(llxSteady, xx, params, ySteady, out, g1p, g2p, g3p);
}
populateDerivativesContainer(*g1p, 1, JacobianIndices);

View File

@ -232,7 +232,7 @@ public:
void evaluateSystem(Vector &out, const Vector &yy, const Vector &xx) throw (DynareException);
void evaluateSystem(Vector &out, const Vector &yym, const Vector &yy,
const Vector &yyp, const Vector &xx) throw (DynareException);
void calcDerivativesAtSteady() throw (DynareException);
void calcDerivativesAtSteady();
DynamicModelAC *dynamicModelFile;
DynamicModel *
clone() const