Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dynare
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dynare
dynare
Commits
5d38280f
Commit
5d38280f
authored
8 years ago
by
MichelJuillard
Browse files
Options
Downloads
Patches
Plain Diff
remove one instance of dynamic exception specification
closes issue #1250
parent
dcff4b57
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
mex/sources/k_order_perturbation/k_ord_dynare.cc
+2
-1
2 additions, 1 deletion
mex/sources/k_order_perturbation/k_ord_dynare.cc
mex/sources/k_order_perturbation/k_ord_dynare.hh
+1
-1
1 addition, 1 deletion
mex/sources/k_order_perturbation/k_ord_dynare.hh
with
3 additions
and
2 deletions
mex/sources/k_order_perturbation/k_ord_dynare.cc
+
2
−
1
View file @
5d38280f
...
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
mex/sources/k_order_perturbation/k_ord_dynare.hh
+
1
−
1
View file @
5d38280f
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment