Try/catch to avoid crashes linked to errors in diffuselikelihood that are not trapped by cost_flag

git-svn-id: https://www.dynare.org/svn/dynare/trunk@2964 ac1d8469-bf42-47a9-8791-bf33cf982152
time-shift
ratto 2009-09-24 07:45:59 +00:00
parent df921ce829
commit d8cf192c77
1 changed files with 5 additions and 1 deletions

View File

@ -85,7 +85,11 @@ for plt = 1:nbplt,
for i=1:length(z)
xx(kk) = z(i);
if isempty(strmatch('dsge_prior_weight',M_.param_names))
[fval,cost_flag] = DsgeLikelihood(xx,gend,data,data_index,number_of_observations,no_more_missing_observations);
try
[fval,cost_flag] = DsgeLikelihood(xx,gend,data,data_index,number_of_observations,no_more_missing_observations);
catch
cost_flag = 0;
end
if cost_flag
y(i,1) = fval;
else