From b3849322d44a8f635e88f4af74458a84cbbe62a7 Mon Sep 17 00:00:00 2001
From: Johannes Pfeifer <jpfeifer@gmx.de>
Date: Tue, 25 Feb 2020 12:53:30 +0100
Subject: [PATCH] discretionary_policy_1.m: move setting of dr before return
 statement

Prevents aborting with a cryptic crash
---
 matlab/discretionary_policy/discretionary_policy_1.m | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/matlab/discretionary_policy/discretionary_policy_1.m b/matlab/discretionary_policy/discretionary_policy_1.m
index 04c8865974..314f442725 100644
--- a/matlab/discretionary_policy/discretionary_policy_1.m
+++ b/matlab/discretionary_policy/discretionary_policy_1.m
@@ -34,6 +34,8 @@ persistent Hold
 
 info = 0;
 
+dr=oo_.dr; %initialize output argument
+
 beta = get_optimal_policy_discount_factor(M_.params, M_.param_names);
 
 %call steady_state_file if present to update parameters
@@ -106,7 +108,6 @@ else
     [H,G,info]=discretionary_policy_engine(A.lag,A.contemp,A.lead,B,W,M_.instr_id,beta,options_.dp.maxit,options_.discretionary_tol,options_.qz_criterium);
 end
 
-
 if info
     return
 else
@@ -115,7 +116,6 @@ else
 end
 
 %write back solution to dr
-dr=oo_.dr;
 dr.ys =zeros(M_.endo_nbr,1);
 dr=set_state_space(dr,M_,options_);
 T=H(dr.order_var,dr.order_var);
-- 
GitLab