Skip to content
Snippets Groups Projects
Commit 651c5e7f authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Fixed bug (wrong index variable).

parent 0d8371c2
No related branches found
No related tags found
No related merge requests found
...@@ -116,8 +116,8 @@ if options_.ep.stochastic.status ...@@ -116,8 +116,8 @@ if options_.ep.stochastic.status
end end
if options_.ep.stochastic.order*M_.exo_nbr>1 if options_.ep.stochastic.order*M_.exo_nbr>1
for i=1:options_.ep.stochastic.order*M_.exo_nbr for i=1:options_.ep.stochastic.order*M_.exo_nbr
rr(k) = {r}; rr(i) = {r};
ww(k) = {w}; ww(i) = {w};
end end
rrr = cartesian_product_of_sets(rr{:}); rrr = cartesian_product_of_sets(rr{:});
www = cartesian_product_of_sets(ww{:}); www = cartesian_product_of_sets(ww{:});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment