我想用以下目标函数求解一个混合整数线性程序:
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)
此代码基本上只考虑静态成本(以成本变量编码)。如何动态添加作为similarity
变量的相似性成本?