Skip to content
Snippets Groups Projects
Commit f788271b authored by Johannes Pfeifer's avatar Johannes Pfeifer
Browse files

In debugging modus, provide termination values of steady state finding.

Closes #3
parent 3fdda541
1 merge request!995In debugging modus, provide termination values of steady state finding.
...@@ -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.
Please register or to comment