Hi all, This patch fixes a bug in SciPy 0.3.2 when passing user-defined arguments to the LBFGSB minimization routine. File: optimize/lbfgsb.py 179c179 < f[0], g = func_and_grad(x, *args) ---
f[0], g = func_and_grad(x)
This bug is outstanding from version 0.3 (see http://www.scipy.net/pipermail/scipy-user/2004-June/002935.html). Best wishes, Ed
Ed Schofield <schofield@ftw.at> writes:
Hi all,
This patch fixes a bug in SciPy 0.3.2 when passing user-defined arguments to the LBFGSB minimization routine.
File: optimize/lbfgsb.py
179c179 < f[0], g = func_and_grad(x, *args) ---
f[0], g = func_and_grad(x)
This bug is outstanding from version 0.3 (see http://www.scipy.net/pipermail/scipy-user/2004-June/002935.html).
That's been fixed in CVS since the end of November. -- |>|\/|< /--------------------------------------------------------------------------\ |David M. Cooke http://arbutus.physics.mcmaster.ca/dmc/ |cookedm@physics.mcmaster.ca
participants (2)
-
cookedm@physics.mcmaster.ca -
Ed Schofield