次の目的関数を使用して、混合整数線形計画法を解きたいと考えています。
J = 最大化 (f1(x) + f2(x)) 制約条件: cost(x) <= しきい値
ここで、x は選択された変数のセット、f1 と f2 は 2 つのスコアリング関数、cost はコスト関数です。
f2 は、選択した変数間の類似性に基づく関数です。この機能をパルプで定式化する方法がわかりません。
これは、関数 f2 が2つの成分間の類似性であり、すでに選択された変数にsimilarity[i][j]
ある場合は目的関数に追加したいj
が、その方法がわからない私の最小限の作業例です。
import numpy as np
import pulp
threshold = 200
model = pulp.LpProblem('selection', pulp.LpMaximize)
similarity = np.array([[1., 0.08333333, 0.1, 0., 0., 0.0625],
[0.08333333, 1., 0.33333333,
0., 0.11111111, 0.07692308],
[0.1, 0.33333333, 1., 0.2, 0., 0.09090909],
[0., 0., 0.2, 1., 0., 0.],
[0., 0.11111111, 0., 0., 1., 0.27272727],
[0.0625, 0.07692308, 0.09090909, 0., 0.27272727, 1.]])
ingredients = ['var_%d' % i for i in range(6)]
scores = np.random.randint(1, 3, size=len(ingredients))
costs = np.random.randint(20, 60, len(ingredients))
scores = dict(zip(ingredients, scores))
costs = dict(zip(ingredients, costs))
x = pulp.LpVariable.dict(
'x_%s', ingredients, lowBound=0, upBound=1, cat=pulp.LpInteger)
model += sum([scores[i] * x[i] for i in ingredients])
model += sum([costs[i] * x[i] for i in ingredients]) <= threshold
solver = pulp.solvers.PULP_CBC_CMD()
model.solve(solver)
このコードは、基本的に静的コストのみを考慮します (costs 変数にエンコードされています)。similarity
変数である類似性コストを動的に追加するにはどうすればよいですか?