Originally posted by: SystemAdmin
Hello again,
I didn't notice OPL has its own forum:
http://www.ibm.com/developerworks/forums/forum.jspa?forumID=2053 so I suppose my topic resulted to be OT. I'm sorry.
By the way, browsing the OPL forum I found how to solve the LP relaxation of a MIP problem, that is by using convertAllIntVars() method of IloOplModel class:
dvar ...
minimize ...
subject to {...}
main {
thisOplModel.generate();
thisOplModel.convertAllIntVars();
cplex.solve();
}
Thanks anyway to everyone,
Paolo
#CPLEXOptimizers#DecisionOptimization