Originally posted by: gizem
Hi,
I wanna have an array of IloCplex objects.
This:
int n=5;
IloCplex[] cplex = new IloCplex[n]();
or this:
IloCplex[] cplex = new IloCplex()[n];
did not work and I couldn't find anything online. Could somebody please help me?
#CPLEXOptimizers#DecisionOptimization