Originally posted by: sandeepsinghchauhan
I have Three cities: N,D,M
Five Players: A,B,C,D,E
set of Number of matches with respect to each player::
A can play three matches {1,2,3}
B can play five matches {1,2,3,4,5}
C can play eight matches{1,2,3,4,5,6,7,8}
D can play four matches{1,2,3,4}
E can play six matches{1,2,3,4,5,6}
Now my problem is how to assign
[N][A][3 matches]
[N][B][5matches]
[N][C][8matches]
[N][D][4matches]
[N][E][6matches]
[D][A][3 matches]
[D] [B][5 matches]
....
.... so on
How can i access the above in generic way please help
#CPLEXOptimizers#DecisionOptimization