Originally posted by: -3300-
Hey Alex,
thank you for your help. The quantity limits works fine. But now the model doesn't work right. My model is a transportation problem and there are two requirements are not completely fulfills.
My quantity limits are just for nine from fourteen sources. Therefore I model this like this.
dvar a[1..14][1..13]
subject {
forall (i in 1..9, k in goods)
a[i][k]==0 || a[i][k]>=50 ;
}
Perhaps do you have an other idea, how I can model my problem.
#DecisionOptimization#OPLusingCPLEXOptimizer