Skip to content
Snippets Groups Projects
Commit 5d38280f authored by MichelJuillard's avatar MichelJuillard
Browse files

remove one instance of dynamic exception specification

closes issue #1250
parent dcff4b57
No related branches found
No related tags found
No related merge requests found
...@@ -110,7 +110,7 @@ KordpDynare::evaluateSystem(Vector &out, const Vector &yym, const Vector &yy, ...@@ -110,7 +110,7 @@ KordpDynare::evaluateSystem(Vector &out, const Vector &yym, const Vector &yy,
* which performs actual calculation and reorders * which performs actual calculation and reorders
***************************************************/ ***************************************************/
void void
KordpDynare::calcDerivativesAtSteady() throw (DynareException) KordpDynare::calcDerivativesAtSteady()
{ {
if (g1p == NULL) if (g1p == NULL)
{ {
...@@ -139,6 +139,7 @@ KordpDynare::calcDerivativesAtSteady() throw (DynareException) ...@@ -139,6 +139,7 @@ KordpDynare::calcDerivativesAtSteady() throw (DynareException)
LLxSteady(ySteady, llxSteady); LLxSteady(ySteady, llxSteady);
dynamicModelFile->eval(llxSteady, xx, params, ySteady, out, g1p, g2p, g3p); dynamicModelFile->eval(llxSteady, xx, params, ySteady, out, g1p, g2p, g3p);
} }
populateDerivativesContainer(*g1p, 1, JacobianIndices); populateDerivativesContainer(*g1p, 1, JacobianIndices);
......
...@@ -232,7 +232,7 @@ public: ...@@ -232,7 +232,7 @@ public:
void evaluateSystem(Vector &out, const Vector &yy, const Vector &xx) throw (DynareException); void evaluateSystem(Vector &out, const Vector &yy, const Vector &xx) throw (DynareException);
void evaluateSystem(Vector &out, const Vector &yym, const Vector &yy, void evaluateSystem(Vector &out, const Vector &yym, const Vector &yy,
const Vector &yyp, const Vector &xx) throw (DynareException); const Vector &yyp, const Vector &xx) throw (DynareException);
void calcDerivativesAtSteady() throw (DynareException); void calcDerivativesAtSteady();
DynamicModelAC *dynamicModelFile; DynamicModelAC *dynamicModelFile;
DynamicModel * DynamicModel *
clone() const clone() const
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment