纸浆优化错误 - LPVariable 对象不支持索引
Pulp Optimization Error - LPVariable Object Does Not Support Indexing
我在尝试添加位于第 31 行的约束时一直遇到错误,model += ([MAHL[i][j] for (i,j) in yearlyhours]) <= 40
我不确定如何正确设置此约束。我想说的是,在 i 和 j 的每个索引处,特定值需要小于 40,并对所有 i、j 对执行此操作。
我是 PULP 的新手,正在尝试建立一个基本模型 运行。输入数据只是一堆随机值,长 365 行,宽 24 列。
from pulp import *
import pandas as pd
import numpy as np
import xlrd
model = pulp.LpProblem("Basic Model", pulp.LpMaximize)
YPER = 365
HE = 24
yearlyhours = [(i,j) for i in range(YPER) for j in range(HE)]
xlsx = pd.ExcelFile('IvA.xlsx')
df1 = pd.read_excel(xlsx, 'Sheet5')
df2 = pd.read_excel(xlsx, 'Sheet3')
df3 = pd.read_excel(xlsx, 'Sheet2')
MAHL = pulp.LpVariable('MAHL', (YPER, HE), cat='Integer')
MALL = pulp.LpVariable('MALL', cat='Integer')
DAHL = pulp.LpVariable('DAHL', cat='Integer')
DALL = pulp.LpVariable('DALL', cat='Integer')
book = xlrd.open_workbook('IvA.xlsx')
sheet10 = book.sheet_by_name('Sheet10')
sheet11 = book.sheet_by_name('Sheet11')
DAPRICE = [[sheet10.cell_value(r, c) for c in range(sheet10.ncols)] for r in range(sheet10.nrows)]
LOAD = [[sheet11.cell_value(r, c) for c in range(sheet11.ncols)] for r in range(sheet11.nrows)]
#model += (MAHL[i][j] for i in range(YPER) for j in range(HE)) <= 40
model += ([MAHL[i][j] for (i,j) in yearlyhours]) <= 40
model += (pulp.lpSum([DAPRICE[i][j] * LOAD[i][j] for i in range(YPER) for j in range(HE)]))
model.solve()
pulp.LpStatus[model.status]
print("Status:", LpStatus[model.status])
obj = value(model.objective)
print(obj)
我尝试了几种解决方案,另一种被注释掉了。
Traceback (most recent call last):
File "bs.py", line 31, in <module>
model += ([MAHL[i][j] for (i,j) in yearlyhours]) <= 40
File "bs.py", line 31, in <listcomp>
model += ([MAHL[i][j] for (i,j) in yearlyhours]) <= 40
TypeError: 'LpVariable' object does not support indexing
您已将 MAHL
定义为 pulp.LpVariable
,它(作为错误状态)不支持索引,因为它对 LP 变量建模。
您可能需要使用 pulp.LpVariable.dicts
来定义它。
示例:
MAHL = pulp.LpVariable.dicts('MAHL', yearlyhours, cat=pulp.LpInteger)
并将其称为
model += pulp.lpSum([MAHL[(i,j)] for (i,j) in yearlyhours]) <= 40
我在尝试添加位于第 31 行的约束时一直遇到错误,model += ([MAHL[i][j] for (i,j) in yearlyhours]) <= 40
我不确定如何正确设置此约束。我想说的是,在 i 和 j 的每个索引处,特定值需要小于 40,并对所有 i、j 对执行此操作。
我是 PULP 的新手,正在尝试建立一个基本模型 运行。输入数据只是一堆随机值,长 365 行,宽 24 列。
from pulp import *
import pandas as pd
import numpy as np
import xlrd
model = pulp.LpProblem("Basic Model", pulp.LpMaximize)
YPER = 365
HE = 24
yearlyhours = [(i,j) for i in range(YPER) for j in range(HE)]
xlsx = pd.ExcelFile('IvA.xlsx')
df1 = pd.read_excel(xlsx, 'Sheet5')
df2 = pd.read_excel(xlsx, 'Sheet3')
df3 = pd.read_excel(xlsx, 'Sheet2')
MAHL = pulp.LpVariable('MAHL', (YPER, HE), cat='Integer')
MALL = pulp.LpVariable('MALL', cat='Integer')
DAHL = pulp.LpVariable('DAHL', cat='Integer')
DALL = pulp.LpVariable('DALL', cat='Integer')
book = xlrd.open_workbook('IvA.xlsx')
sheet10 = book.sheet_by_name('Sheet10')
sheet11 = book.sheet_by_name('Sheet11')
DAPRICE = [[sheet10.cell_value(r, c) for c in range(sheet10.ncols)] for r in range(sheet10.nrows)]
LOAD = [[sheet11.cell_value(r, c) for c in range(sheet11.ncols)] for r in range(sheet11.nrows)]
#model += (MAHL[i][j] for i in range(YPER) for j in range(HE)) <= 40
model += ([MAHL[i][j] for (i,j) in yearlyhours]) <= 40
model += (pulp.lpSum([DAPRICE[i][j] * LOAD[i][j] for i in range(YPER) for j in range(HE)]))
model.solve()
pulp.LpStatus[model.status]
print("Status:", LpStatus[model.status])
obj = value(model.objective)
print(obj)
我尝试了几种解决方案,另一种被注释掉了。
Traceback (most recent call last):
File "bs.py", line 31, in <module>
model += ([MAHL[i][j] for (i,j) in yearlyhours]) <= 40
File "bs.py", line 31, in <listcomp>
model += ([MAHL[i][j] for (i,j) in yearlyhours]) <= 40
TypeError: 'LpVariable' object does not support indexing
您已将 MAHL
定义为 pulp.LpVariable
,它(作为错误状态)不支持索引,因为它对 LP 变量建模。
您可能需要使用 pulp.LpVariable.dicts
来定义它。
示例:
MAHL = pulp.LpVariable.dicts('MAHL', yearlyhours, cat=pulp.LpInteger)
并将其称为
model += pulp.lpSum([MAHL[(i,j)] for (i,j) in yearlyhours]) <= 40