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 ...@@ -89,6 +89,12 @@ else
if options_.noprint == 0 if options_.noprint == 0
resid; resid;
end 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_); print_info(info,options_.noprint, options_);
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