Skip to content
Snippets Groups Projects
Commit bfde0280 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

(cherry picked from commit 0f84dadb)
parent 4b68cc1c
Branches
No related tags found
No related merge requests found
......@@ -36,6 +36,11 @@ if options_.order == 1
options_.replic = 1;
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)
options_.qz_criterium = 1+1e-6;
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment