Skip to content
Snippets Groups Projects
Commit 0f84dadb authored by Johannes Pfeifer's avatar Johannes Pfeifer Committed by Stéphane Adjemian
Browse files

Reset order=1 for all of stoch_simul.m if the Hessian is 0

Prevents various crashes where functions called rely on fields existing at order>1
parent 666e569a
No related branches found
No related tags found
No related merge requests found
...@@ -36,6 +36,11 @@ if options_.order == 1 ...@@ -36,6 +36,11 @@ if options_.order == 1
options_.replic = 1; options_.replic = 1;
end end
if M_.hessian_eq_zero && options_.order~=1
options_.order = 1;
warning('stoch_simul: using order = 1 because Hessian is equal to zero');
end
if isempty(options_.qz_criterium) if isempty(options_.qz_criterium)
options_.qz_criterium = 1+1e-6; options_.qz_criterium = 1+1e-6;
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment