I'm using some integers variables in cplex with c++, like:
alpha = IloIntVarArray (env, numArcs,0 ,N);
alpha is unidimensional array with range 0 - N...
But my problem is, I'd like to create a x[N][M][K], that would be my integer decisions variables and I don't know any syntax or how to initiate these variables.