Originally posted by: yvrob
Hello everybody,
I am facing a duration problem to solve a heavy MILP on CPLEX, so I am trying to reduce the solving time by using the fact that my cost function is an integer variable.
Indeed, I see that when I solve the problem, the "best bound" is not an integer and for me, that means that CPLEX is trying to solve the problem for a non-integer variable as well.
For example, if my best bound is at 11.26, instead of considering all the branches between 11.26 and 12, I would like to "force" CPLEX to set the best bound to the next integer, 12 (as I know for sure that my cost function is integer, no solution will be under this value). It would drastically reduce the number of branches, and hopefully the solving time.
Is this possible ? If yes how ? And if no, would it be a mean to specify to CPLEX that I am looking for an integer as a cost function ?
Thank you
#CPLEXOptimizers#DecisionOptimization