Originally posted by: W0M5_lei_cong
Hi Junglas, thanks for your help! I did what you told but the problem remains.
Actually my problem is a little bit complicated. Maybe I didn't explain well.
First I use a 3D IloNumVarArray X and a 2D IloNumVarArray Y to represent the
decision variables like this:
typedef IloArray<IloNumVarArray> NumVarMatrix2;
typedef IloArray<NumVarMatrix2> NumVarMatrix3;
By calculate the X and Y, I get another 2D IloNumVarArray like NumVarMatrix2 Z[i][j],
then I want to get the Maximum of each Z[i] and minimize their sum. How can I do?
#CPLEXOptimizers#DecisionOptimization