Skip to content
Snippets Groups Projects
Verified Commit efcb567f authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

Merge branch 'gsa_bug' of git.dynare.org:rattoma/dynare

Ref. !2036
parents 20f8dd78 22795298
Branches
Tags
1 merge request!2036fixed bug in sampling in the neighborhood of a critical point
......@@ -203,7 +203,7 @@ if fload==0
for j=1:np
ub=xparam1(j+nshock)*(1+sign(xparam1(j+nshock))*neighborhood_width);
lb=xparam1(j+nshock)*(1-sign(xparam1(j+nshock))*neighborhood_width);
if bounds.ub(j+nshock)>=xparam1(j) && bounds.lb(j)<=xparam1(j+nshock)
if bounds.ub(j+nshock)>=xparam1(j+nshock) && bounds.lb(j+nshock)<=xparam1(j+nshock)
ub=min([bounds.ub(j+nshock) ub]);
lb=max([bounds.lb(j+nshock) lb]);
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment