evaluate_planner_objective.m: add warning if planner discount is not smaller than 1

mr#2067
Johannes Pfeifer 2022-05-17 18:10:56 +02:00
parent 40871519fc
commit 26db005e61
1 changed files with 4 additions and 0 deletions

View File

@ -86,6 +86,10 @@ nstatic = M_.nstatic;
nspred = M_.nspred;
beta = get_optimal_policy_discount_factor(M_.params, M_.param_names);
if beta>=1
fprintf('evaluate_planner_objective: the planner discount factor is not strictly smaller than 1. Unconditional welfare will not be finite.\n')
end
if options_.ramsey_policy
if oo_.gui.ran_perfect_foresight
T = size(oo_.endo_simul,2);