Originally posted by: KarolisK.
Hello all,
I am using column generation to solve my mathematical problem.
The problem that I encounter is that the decision variable in my submodel is three dimensional z[j][k][c] which is used later to add new patterns to a tuple by using following line of script:
masterData.LocPattern.add(masterData.LocPattern.size, 1, subOpl.z.solutionValue);
As it is known a tuple does not support multidimensional arrays. So my question is how can a three dimensional dvar be converted into a flat one dimensional array which could be used in a tuple afterwards?
#DecisionOptimization#OPLusingCPLEXOptimizer