Originally posted by: viva0521
Alex, thanks a lot! It works now. I really appreciate your valuable comments!
By the way, when I was trying to output my optimal solution, I wrote:
execute DISPLAY {
writeln("\n<from node, to node, , o, d, flow[i][j][o][d]>\n");
for(i,j in Node, o in Ori, d in Dest)
if(flow[i][j][o][d] > 0)
writeln("<",i,",",j,",",o,",",d,",",flow[i][j][o][d],">");
}
It is said for(i,j in Node, o in Ori, d in Dest) missing ")" after Node, I am wondering what is wrong here? Thanks again!
#DecisionOptimization#OPLusingCPLEXOptimizer