Originally posted by: CplexUser1453
Hello
I would like to save a solution of an OPL .mod model to an .mst file to be able to do MIP start later on.
It seems to me that the Cplex.MipStart Method should allow me to do it : IDE and OPL > OPL Interfaces > .NET interface reference manual > ILOG.CPLEX Namespace > Cplex Class > Cplex Methods (suggestion : it would be really nice if I could post a link to the documentation I am talking about - this is not pointing in the right direction
http://pic.dhe.ibm.com/infocenter/cosinfoc/v12r4/index.jsp?topic=%2Filog.odms.studio.help%2FOptimization_Studio%2Ftopics%2FCOS_relnotes_intro.html) it seems to me that I should be able to write the following .mod file :
include "myModel.mod"
main {
thisOplModel.generate();
cplex.solve();
cplex.writeMIPStart('start.mst')
}
However I get an "unknown property 'writeMIPStart'" error. What am I missing?
Thx a lot!
#DecisionOptimization#OPLusingCPLEXOptimizer