Originally posted by: ALessin
I am trying to display a flow solution using post-processing commands, but I can't figure out how to display the solution arcs in the correct order. For example, the flow solution vector begins as follows:
<from node,to node,Flow[a]>
<0,1,1>
<1,10,1>
<2,11,1>
<10,2,1>
<11,20,1>
<20,30,1> ...,
and my solution is displaying as:
BreachSolution = [ 0 1 10 11 2 20 30 ....
when I would like it to display correctly as:
BreachSolution = [ 0 1 10 2 11 20 30 ....
Do you know how I could implement this using the appropriate post-processing commands? Thank you.
#DecisionOptimization#OPLusingCPLEXOptimizer