I need to access the values of the four-dimensional decion variable after solving my model. Here is the declaration of my decion variable in Java:
this.y = new IloIntVar[this.Ncd][][][];
for(int i=0; i<this.y.length;i++) {
this.y[i]= new IloIntVar[this.Ncd][][];
for(int j=0; j<this.y[i].length;j++) {
this.y[i][j]= new IloIntVar[this.Nbv+1][];
for(int k=1; k<this.y[i][j].length; k++) {
this.y[i][j][k]= new IloIntVar[this.T+1];
this.y[i][j][k]= this.cplex.boolVarArray(this.T+1);
}
}
}
I really need your help to use the simulation results of my model.
I am looking forward to hearing from you.
Zakaria