diff --git a/matlab/evaluate_planner_objective.m b/matlab/evaluate_planner_objective.m
index fc883900d04399ff79d22ce987a04a71902f69a0..b7c0d6e6a7a6f868392cb85ab75def4a272957bd 100644
--- a/matlab/evaluate_planner_objective.m
+++ b/matlab/evaluate_planner_objective.m
@@ -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);