Originally posted by: SystemAdmin
Hi,Everyone!
when i execute my code,there will be "cplex error 5002".
But the code has no problem ,before i add the following variable.
"{
INumVar] Reduce_single = new INumVarnum[; //N*M
for (int i = 0; i < num; i++)
{
Reduce_single[i] = new INumVar[t];
for (int j = 0; j < t; j++)
{
Reduce_single[i][j] = cplex.NumVar(0, Reduce_single_comtract[i][j]);
}
};
}"
Can you help me ??
thank you!! and you could check the code in the attach file.
#CPLEXOptimizers#DecisionOptimization