Originally posted by: Mondano
I think I have the same problem as above, i.e. getting the error "Array argument expected" when calling
cplex.addMIPStart(thisOplModel.x, xh);
cplex.addMIPStart(thisOplModel.q, qh);
(I suppose I can just ommit effort and name, as I don't think I need to use them)
where thisOplModel.x is a 3-dimensional decision variable x[][][] defined in the model that has previously been generated with thisOplModel.generate()
I have two separate CPLEX-models which calculate xh and qh and I want to give those as a starting solution to an integrated model with x and q. Therefore, I cannot use readBasis (as far as I know).
Can you help me, how to give xh and qh as starting solution to x and q?
#DecisionOptimization#OPLusingCPLEXOptimizer