我要解決的混合整數線性規劃具有以下目標函數:Python的紙漿整數線性規劃與動態約束
J =最大化(F1(x)+ F2(x)的) 受約束:成本(x)< =閾值
其中x是所選變量的集合,f1和f2是兩個評分函數,成本是成本函數。
f2是基於所選變量之間的相似性的函數。我不知道如何在紙漿中制定這個功能。
這是我最小的工作示例中,函數f2是兩種成分之間的相似性,我想補充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)
此代碼基本上只考慮靜態成本(編碼成本變量)。我如何動態添加變量的相似性成本?
相似度數組表示的是什麼 – dassouki
它基本上是一個返回元素之間相似度的矩陣。那就是這個矩陣的「(i,j)」元素是成分「i」和成分「j」之間的相似性。 @dassouki – CentAu