Originally posted by: W0M5_lei_cong
Hi! I am freshman in Cplex, thanks for your time.
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 Maxinum of each Z[i] and minimize their sum. How can I do?
#CPLEXOptimizers#DecisionOptimization