如何在 cplex 中编写 p 中心问题的 objective 函数?

How can I write a objective function of p center problem in cplex?

我想写一个OPL模型的代码。这个模型是关于 p 中心问题的。这个模型的objective函数和p中值问题一样,只是我们需要最小化最大加权距离,而不是最小化总加权距离之和。您知道如何在 cplex 中编写此 objective 函数吗?

如果您从

开始使用 pmedian

https://www.ibm.com/support/knowledgecenter/SSSA5P_12.6.0/ilog.odms.ide.help/OPL_Studio/oplquickstart/topics/opl_quickstart_pmedian.html

您只需将 objective 中的 « sum » 变为 « max »

minimize 
  max ( c in Customers , w in Warehouses ) 
    Demand[c]*Distance[c][w]*ShipToCustomer[c][w];