Skip to content
Snippets Groups Projects
Commit c8f11ba1 authored by MichelJuillard's avatar MichelJuillard
Browse files

Merge pull request #995 from JohannesPfeifer/steady_fail_message

In debugging modus, provide termination values of steady state finding.
parents 62ded1d2 f788271b
No related branches found
No related tags found
No related merge requests found
......@@ -89,6 +89,12 @@ else
if options_.noprint == 0
resid;
end
if options_.debug
fprintf('\nThe steady state computation failed. It terminated with the following values:\n')
for i=1:M_.orig_endo_nbr
fprintf('%s \t\t %g\n',M_.endo_names(i,:),steady_state(i));
end
end
print_info(info,options_.noprint, options_);
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment