how to set a three or four-dimensional variable when calling cplex in C#?
using ILOG.Concert;
using ILOG.CPLEX;
The following is two -dimensional:
INumVar[][] EndTime = new INumVar[NumEMU][];
for (int i = 0; i < NumEMU; i++)
EndTime[i] = cplexMod1.NumVarArray(NumJob, 0, 1, NumVarType.Int);