nAG数値計算ライブラリ
> 最適化アルゴリズムExample集
> リバースコミュニケーション法を用いた密な非線形計画問題の解法
非線形計画-NLP(密、Reverse Communication)
このExampleは、Hock and Schittkowski Problem 71と呼ばれる非線形計画問題をリバースコミュニケーション法を用いて解いています。
目的関数:
タスク | 式 |
---|---|
minimize | \(x_0 x_3 (x_0 + x_1 + x_2) + x_2\) |
- 目的関数は、\(x_0\), \(x_1\), \(x_2\), \(x_3\)の4つの決定変数からなる非線形式で表されています。
決定変数:
変数 | 範囲 |
---|---|
\(x_0\) | \(1 \leq x_0 \leq 5\) |
\(x_1\) | \(1 \leq x_1 \leq 5\) |
\(x_2\) | \(1 \leq x_2 \leq 5\) |
\(x_3\) | \(1 \leq x_3 \leq 5\) |
制約条件:
制約 | 式 |
---|---|
制約1 | \(x_0^2 + x_1^2 + x_2^2 + x_3^2 \leq 40\) |
制約2 | \(x_0 x_1 x_2 x_3 \geq 25\) |
- 制約条件は2つあり、いずれも決定変数の非線形の不等式で表現されています。
- 制約1は、各決定変数の2乗の和が40以下であることを要求しています。
- 制約2は、4つの決定変数の積が25以上であることを要求しています。
上記の定式化に基づき、本コードはnAGライブラリのnlp1_rcommルーチンを用いて、与えられた初期値から最適解を求めています。目的関数と制約条件の勾配は解析的に計算され、最適化アルゴリズムに渡されます。最終的に得られた目的関数値は1.7014017e+01となります。
Exampleの実行コマンド:
python -m naginterfaces.library.examples.opt.nlp1_rcomm_ex
ソースコード表示コマンド:
python -c "import inspect; from naginterfaces.library.examples.opt import nlp1_rcomm_ex; print(''.join(inspect.getsourcelines(nlp1_rcomm_ex)[0]))"
出力結果例:
naginterfaces.library.opt.nlp1_rcomm Python Example Results.
Solve Hock and Schittkowski Problem 71.
Final objective value is 1.7014017e+01
マニュアル:
ソース:
#!/usr/bin/env python3
"``naginterfaces.library.opt.nlp1_rcomm`` Python Example."
# nAG Copyright 2017-2019.
# pylint: disable=invalid-name,too-many-locals
import numpy as np
from naginterfaces.library import opt
def main():
"""
Example for :func:`naginterfaces.library.opt.nlp1_rcomm`.
Dense NLP.
>>> main()
naginterfaces.library.opt.nlp1_rcomm Python Example Results.
Solve Hock and Schittkowski Problem 71.
Final objective value is 1.7014017e+01
"""
print(
'naginterfaces.library.opt.nlp1_rcomm Python Example Results.'
)print('Solve Hock and Schittkowski Problem 71.')
# Initialize the solver:
= opt.nlp1_init('nlp1_rcomm')
comm
# The initial guess:
= np.array([1., 5., 5., 1.])
x # The linear constraints:
= np.array([[1.]*len(x)])
a # There are two nonlinear constraints defined by cb_confun:
= 2
ncnln # The bounds:
= [1., 1., 1., 1., -1.0E+25, -1.0E+25, 25.]
bl = [5., 5., 5., 5., 20., 40., 1.0E+25]
bu
= len(x)
n = np.zeros(n + 1 + ncnln, dtype=int)
istate = np.empty(max(1, ncnln))
c = np.zeros((ncnln, n))
cjac = np.zeros(n + 1 + ncnln)
clamda = np.empty(n)
objgrd = np.zeros((n, n))
r
= 0
irevcm = 0
itera = 0.
objf = np.empty(ncnln, dtype=int)
needc
while True:
= opt.nlp1_rcomm(
irevcm, itera, objf, needc 0], a, bl, bu, itera,
irevcm, a.shape[
istate, c, cjac, clamda, objf, objgrd, r, x,
comm,
)
if irevcm == 0:
break
if irevcm in [1, 3]:
= x[0]*x[3]*(x[0] + x[1] + x[2]) + x[2]
objf
if irevcm in [2, 3]:
= [
objgrd[:] 3]*(2*x[0] + x[1] + x[2]),
x[0]*x[3],
x[0]*x[3] + 1.0,
x[0]*(x[0] + x[1] + x[2]),
x[
]
if irevcm in [4, 6]:
if needc[0] > 0:
0] = (x[0]**2 + x[1]**2 + x[2]**2 + x[3]**2)
c[
if needc[1] > 0:
1] = x[0]*x[1]*x[2]*x[3]
c[
if irevcm in [5, 6]:
if needc[0] > 0:
0, :] = 2*x[:]
cjac[
if needc[1] > 0:
1, :] = [
cjac[1]*x[2]*x[3],
x[0]*x[2]*x[3],
x[0]*x[1]*x[3],
x[0]*x[1]*x[2],
x[
]
print('Final objective value is {:.7e}'.format(objf))
if __name__ == '__main__':
import doctest
import sys
sys.exit(
doctest.testmod(None, verbose=True, report=False,
=doctest.REPORT_NDIFF,
optionflags
).failed )