Skip to content
Snippets Groups Projects
Commit 75675d36 authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Code simplification, do not pass endo_simul and exo_simul to bytecode through...

Code simplification, do not pass endo_simul and exo_simul to bytecode through the global structure oo_.
parent 4aedf7e9
No related branches found
No related tags found
No related merge requests found
......@@ -203,10 +203,8 @@ while (t<sample_size)
endo_simul = endo_simul_1;
while 1
if ~increase_periods
if bytecode_flag
oo_.endo_simul = endo_simul_1;
oo_.exo_simul = exo_simul_1;
[flag,tmp] = bytecode('dynamic');
if bytecode_flag && ~options_.ep.stochastic.order
[flag,tmp] = bytecode('dynamic',endo_simul_1,exo_simul_1);
else
flag = 1;
end
......@@ -282,10 +280,8 @@ while (t<sample_size)
exo_simul_1 = [ exo_simul_1 ; zeros(ep.step,exo_nbr)];
end
% Solve the perfect foresight model with an increased number of periods.
if bytecode_flag
oo_.endo_simul = endo_simul_1;
oo_.exo_simul = exo_simul_1;
[flag,tmp] = bytecode('dynamic');
if bytecode_flag && ~options_.ep.stochastic.order
[flag,tmp] = bytecode('dynamic',endo_simul_1,exo_simul_1);
else
flag = 1;
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment