4

当我在 python 中运行以下简单的 NLOPT 示例时:

import numpy as np
import nlopt 

n = 2
localopt_feval_max = 10
lb = np.array([-1, -1])
ub = np.array([1, 1])


def myfunc(x, grad):
    return -1

opt = nlopt.opt(nlopt.LN_NELDERMEAD, n)

opt.set_lower_bounds(lb)
opt.set_upper_bounds(ub)
opt.set_maxeval(localopt_feval_max)

opt.set_min_objective(myfunc)
opt.set_xtol_rel(1e-8)
x0 = np.array([0,0])

x = opt.optimize(x0)

我收到一个错误:

"ValueError: nlopt invalid argument"

参考这里给出的唯一建议:

http://ab-initio.mit.edu/wiki/index.php/NLopt_Python_Reference

是下限可能大于上限,或者存在未知算法(这里都不是这种情况)。我正在运行以下版本的 Python、NLOPT 和 NumPy

>>> sys.version
'3.4.0 (default, Apr 11 2014, 13:05:11) \n[GCC 4.8.2]'
>>> nlopt.__version__
'2.4.2'
>>> np.__version__
'1.8.2'
4

2 回答 2

4

通过将函数声明更改为

def myfunc(x, grad):
    return -1.0

一切正常。所以NLopt不能处理返回pythoninteger而不是float

我觉得 NLopt 应该能够将整数目标函数值转换为float. 如果不是这样,那么至少TypeError应该提高 a 而不是 a ValueError: nlopt invalid argument

于 2015-02-17T16:26:50.083 回答
1

因为我的目标函数返回类型是 numpy.float128,所以我收到了这个错误,所以我通过将返回类型更改为numpy.float64来修复错误

于 2018-01-23T15:18:36.630 回答