Hi, I want to optimize following three multi objective functions using Cplex.

maximize sum(i in route, j in stat) x[i][j]

minimize sum(i in route, j in stat) dis[i][j]*x[i][j]

minimize sum(j in stat) (cc[j]+ sum(i in route) x[i][j]*CV[j]/10)

It seems that Cplex cannot handle multi-objective optimization by default. However, in documentation, it says that it can handle the same problem combining above functions in to a single fitness function. Can anyone help me with constructing the combined function in Cplex.

Similar questions and discussions