gpt4 book ai didi

具有动态约束的 Python Pulp 整数线性规划

转载 作者:行者123 更新时间:2023-12-01 04:38:54 27 4
gpt4 key购买 nike

我想求解具有以下目标函数的混合整数线性规划:

J = 最大化 (f1(x) + f2(x))受约束:成本(x)<=阈值

其中 x 是选定变量的集合,f1 和 f2 是两个评分函数,cost 是成本函数。

f2 是基于所选变量之间相似性的函数。我不知道如何在 PuLP 中制定这个功能。

这是我的最小工作示例,其中函数 f2 是两种成分之间的相似度,我想将 similarity[i][j] 添加到目标函数 if 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 变量的相似度成本?

最佳答案

我相信你想要做的是添加一个交互项,它本质上是说当两种成分 i 时和j i 都被选择,则存在与两者的存在相关的额外成本和j ,这在similarity中进行了描述。矩阵。我假设(正如你的情况)similarity是一个对称矩阵,因为 i 的排序和j没关系(只有两者都选择或不选择才重要)。

一个简单的表述是添加术语 selected[i, j] * x[i] * x[j]达到目标。这将使问题变得非线性,尽管其结构并不是非常困难,但有一个常见的建模技巧可以保持模型的线性。在这里。

我们定义了一组新变量y_{ij}等于 1仅当两者 ij参与解决方案。请注意,我们可以定义它们,以便 i>jj<i因为我们并不真正关心顺序。我们施加限制:

y_{ij} <= x_i
y_{ij} <= x_j
y_{ij} >= x_i + x_j - 1

这组限制保证 y_{ij}等于 1仅当两者 x_i 时和x_j等于 1 ,这就是我们想要的。

代码的实现:

import numpy as np
import pulp
from itertools import product
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)]

ingredient_pairs = ['var_{}_{}'.format(
ingredients.index(var[0]), ingredients.index(var[1]))
for var in product(ingredients, ingredients)
if ingredients.index(var[0]) > ingredients.index(var[1])]
# Flatten the similarity array
indices = np.triu_indices_from(similarity)
similarity = similarity[indices]

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))
similarity = dict(zip(ingredient_pairs, similarity))
x = pulp.LpVariable.dict(
'x_%s', ingredients, lowBound=0, upBound=1, cat=pulp.LpInteger)
y = pulp.LpVariable.dict(
'y_%s', ingredient_pairs, lowBound=0, upBound=1, cat=pulp.LpInteger)
model += sum([scores[i] * x[i] for i in ingredients]) + sum([
similarity[i] * y[i] for i in ingredient_pairs])
model += sum([costs[i] * x[i] for i in ingredients]) <= threshold
for pair in ingredient_pairs:
indexes = pair.split('_')[1:]
for index in indexes:
# y_{ij} <= x_i and y_{ij} <= x_j Q
model += y[pair] <= x['var_{}'.format(index)]
# y_{ij} >= x_i + x_j - 1
model += y[pair] >= sum(x['var_{}'.format(i)] for i in indexes) - 1
solver = pulp.solvers.PULP_CBC_CMD()
model.solve(solver)
model.writeLP('similarity.lp')
print 'Objective: {}'.format(pulp.value(model.objective))
for v in model.variables():
if v.varValue > 10e-4:
print v.name, v.varValue

我希望这会有所帮助。

<小时/>

关于具有动态约束的 Python Pulp 整数线性规划,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31173983/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com