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
Branches
Tags
No related merge requests found
......@@ -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);
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment