bug in scipy.optimize.slsqp.py
April 21, 2011
5:30 a.m.
Hello, I am not sure whether this is a place to write about it (but I did not manage to file a ticket to truc so here it is). I found a little bug in scipy.optimize.slsqp.py(line 265): for i in range(len(bounds)): if bounds[i][0] > bounds[i][1]: raise ValueError('SLSQP Error: lb > ub in bounds[' + str(i) + '] ' + str(bounds[4])) ------ but should be: for i in range(len(bounds)): if bounds[i][0] > bounds[i][1]: raise ValueError('SLSQP Error: lb > ub in bounds[' + str(i) + '] ' + str(bounds[i])) -- Oleksandr Huziy
5344
Age (days ago)
5344
Last active (days ago)
0 comments
1 participants
participants (1)
-
Oleksandr Huziy