Skip to content
Snippets Groups Projects
Verified Commit 9a179a39 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

:bug: Steady state computation with bytecode + Ramsey policy was broken

(cherry picked from commit 1ce40d4d)
parent b7540c40
No related branches found
No related tags found
No related merge requests found
...@@ -25,7 +25,7 @@ function [steady_state, params, check] = dyn_ramsey_static(ys_init, exo_ss, M_, ...@@ -25,7 +25,7 @@ function [steady_state, params, check] = dyn_ramsey_static(ys_init, exo_ss, M_,
% SPECIAL REQUIREMENTS % SPECIAL REQUIREMENTS
% none % none
% Copyright © 2003-2023 Dynare Team % Copyright © 2003-2024 Dynare Team
% %
% This file is part of Dynare. % This file is part of Dynare.
% %
...@@ -137,7 +137,7 @@ end ...@@ -137,7 +137,7 @@ end
% Compute the value of the Lagrange multipliers that minimizes the norm of the % Compute the value of the Lagrange multipliers that minimizes the norm of the
% residuals, given the other endogenous % residuals, given the other endogenous
if options_.bytecode if options_.bytecode
res = bytecode('static', M_, options, xx, exo_ss, M_.params, 'evaluate'); res = bytecode('static', M_, options_, xx, exo_ss, M_.params, 'evaluate');
else else
res = feval([M_.fname '.sparse.static_resid'], xx, exo_ss, M_.params); res = feval([M_.fname '.sparse.static_resid'], xx, exo_ss, M_.params);
end end
...@@ -167,7 +167,7 @@ end ...@@ -167,7 +167,7 @@ end
function result = check_static_model(ys,exo_ss,M_,options_) function result = check_static_model(ys,exo_ss,M_,options_)
result = false; result = false;
if (options_.bytecode) if (options_.bytecode)
res = bytecode('static', M_, options, ys, exo_ss, M_.params, 'evaluate'); res = bytecode('static', M_, options_, ys, exo_ss, M_.params, 'evaluate');
else else
res = feval([M_.fname '.sparse.static_resid'], ys, exo_ss, M_.params); res = feval([M_.fname '.sparse.static_resid'], ys, exo_ss, M_.params);
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment