Originally posted by: NashVio
Dear all,
I'am working on an optimization problem using C++ and have trouble using multiple mipstarts,
I have 10 different mipStarts. Each of them is feasible, and if I use only one of the every thing is fine.
But if I add all mipstarts I receive
"1 of 10 MIP starts provided solutions."
even though all of them are feasible and i expected "10 of 10..."
- I added the starts using cplex.addMIPStart(varsarray, valsarray);
- Using cplex.writeMIPStarts("mipStart", 0, 10); shows me that all starts are in the cplex object.
Where did I go wrong? Why is there a difference if I use them indivual compared to using the alltogether?
Thank you very much in advance!
Tobi
#CPLEXOptimizers#DecisionOptimization