【发布时间】:2017-04-05 12:27:32
【问题描述】:
我需要您的帮助来解决以下优化问题。 我有一个最大化混合整数线性规划问题。 我想考虑最低和最高固定费用。
我是这样弄的。。
cost = max(minimum fixed cost , cost rate * x)
cost >= minimum fixed cost
cost >= cost rate * x
cost = min(maximum fixed cost , cost rate * x)
cost <= maximum fixed cost
cost <= cost rate * x
但是,这变成了不可行的解决方案。 请您帮我优化这样的问题。
【问题讨论】:
标签: linear-programming constraint-programming minmax maximization mixed-integer-programming