嗨,我在 python 中使用 doOPL。
以下是我的代码的一部分。
with create_opl_model(model="phase0.mod",data="prob1.dat") as opl:
# tuple can be a list of tuples, a pandas dataframe...
# Generate the problem and solve it.
start_time = time.time()
opl.mute()
opl.run()
print("obj:",opl.objective_value,", time:",(time.time() - start_time))
运行后,我想检查决策变量 x 的结果
opl.get_table('x')
但是说期望 tupleset x 已通过是行不通的。
我期待着你的帮助。