答案 0 :(得分:1)
有几种方法可以做到这一点。与您的公式最接近的方式是使用python的“列表理解”功能。参见下文,其应输出:
Status: Optimal
Population Served is = 100.0
x = [1. 0.]
带有虚拟数据的简单示例:
import numpy as np
import pandas as pd
from pulp import *
# Some dummy data, let's have 3 demand nodes and 2 possible sites
I = [0,1,2]
J = [0,1]
S = 100
d = [[50, 150], [80, 110], [160, 10]]
a = [80, 20, 30]
P = 1
# Compute the sets Ni
# NB: this will be a list in which each item is a list of nodes
# within the threshold distance of the i'th node
N = [[j for j in J if d[i][j] < S] for i in I]
# Formulate optimisation
prob = LpProblem("MCLP", LpMaximize)
x = LpVariable.dicts("x", J, 0)
y = LpVariable.dicts("y", I, 0)
# Objective
prob += lpSum([a[i]*y[i] for i in I])
# Constraints
for i in I:
prob += lpSum([x[j] for j in N[i]]) >= y[i]
prob += lpSum([x[j] for j in J]) == P
# Solve problem
prob.solve()
x_soln = np.array([x[j].varValue for j in J])
# And print some output
print (("Status:"), LpStatus[prob.status])
print ("Population Served is = ", value(prob.objective))
print ("x = ", x_soln)