use*_*276 4 python modeling linear-programming cplex
我正在尝试用大量变量和约束来解决线性程序.我需要动态生成约束矩阵并在python中构建lp.我可以在Cplex for Python上找到的唯一一个教程是来自IBM的官方教程,这个教程还不太详细.所以我的问题是:首先,一般问题是,是否有更好的教程或有充分记录的内容?第二,一个更具体的问题,在官方教程中,有一个例子显示填充lp的不同方法,问题陈述是:
Maximize
x1 + 2x2 + 3x3
subject to
–x1 + x2 + x3 <= 20
x1 – 3x2 + x3 <= 30
with these bounds
0 <= x1 <= 40
0 <= x2 <= infinity
0 <= x3 <= infinity
Run Code Online (Sandbox Code Playgroud)
并按行填充如下:
def populatebyrow(prob):
prob.objective.set_sense(prob.objective.sense.maximize)
# since lower bounds are all 0.0 (the default), lb is omitted here
prob.variables.add(obj = my_obj, ub = my_ub, names = my_colnames)
# can query variables like the following:
# lbs is a list of all the lower bounds
lbs = prob.variables.get_lower_bounds()
# ub1 is just the first lower bound
ub1 = prob.variables.get_upper_bounds(0)
# names is ["x1", "x3"]
names = prob.variables.get_names([0, 2])
rows = [[[0,"x2","x3"],[-1.0, 1.0,1.0]],
[["x1",1,2],[ 1.0,-3.0,1.0]]]
prob.linear_constraints.add(lin_expr = rows, senses = my_sense,
rhs = my_rhs, names = my_rownames)
# because there are two arguments, they are taken to specify a range
# thus, cols is the entire constraint matrix as a list of column vectors
cols = prob.variables.get_cols("x1", "x3")
Run Code Online (Sandbox Code Playgroud)
那么,变量是什么rows?我可以得到系数的第二部分,但第一部分[0,"x2","x3"]是什么意思?和类似的东西在另一种方法填充(按列).
提前致谢!
所以我已经找到了上面的代码,只是在它帮助其他人的情况下发布它:变量'row'的第一部分,[0,"x2","x3"],只是指定要分配的变量名称值,[ - 1.0,1.0,1.0],列在第二部分中.有两种方法可以指定变量名,一种是通过索引,在这种情况下是0,另一种是直接名称,"x2",这些名称以前是使用variables.add()添加到模型中的.
| 归档时间: |
|
| 查看次数: |
4597 次 |
| 最近记录: |