-- Bug description --optimsimplex_new does not check the size of the input arrays boundsmin and boundsmax for "randbounds" option.Extra values in the array are ignored, which might lead to bugs.-- Scilab error message ---- How to reproduce the bug --x0 = [1 2]function y = rosenbrock (x) y = 100*(x(2)-x(1)^2)^2+(1-x(1))^2;endfunctionboundsmin = [-5 -5 -5]boundsmax = [5 5 -5]newobj = optimsimplex_new ( "randbounds" , x0 , rosenbrock , boundsmin , boundsmax );optimsimplex_print ( newobj );
Designs
Child items ...
Show closed items
Linked items 0
Link issues together to show that they're related or that one is blocking others.
Learn more.