Option file for CPLEX solver

Solver related questions
Post Reply
mosalari
User
User
Posts: 6
Joined: 7 years ago

Option file for CPLEX solver

Post by mosalari »

Hi all,
I use CPLEX solver to solve the MIP problems, but this solver tends to give the results as below for instance:

MIP Solution: 207.200000 (9469739 iterations, 151607 nodes)
Final Solve: 207.200000 (0 iterations)

Best possible: 151.594951
Absolute gap: 55.605049
Relative gap: 0.268364

I wanna have zero absolute or relative gap while solving the MIP problems so I used the Optionfile to set the Absoulutegap and relative gap values to zero. The solver, however, still gives results with the absolute and relative gaps more than zero. To me, it seems that I need to set more criteria to get the results with zero gaps. Can anyone help me on this?

P,s: To let you know, here is the criteria I set in the option file:

epagap=0
epgap=0
epint=0
solnpoolagap=0
solnpoolgap=0
User avatar
bussieck
Moderator
Moderator
Posts: 1033
Joined: 7 years ago

Re: Option file for CPLEX solver

Post by bussieck »

There are two possibilities: a) GAMS/CPLEX did not process the option file, or b) Cplex terminated on time/iteration/... limit. The log will tell you more. You should find an echo of the options processed and also the reason why Cplex terminated.

-Michael
mosalari
User
User
Posts: 6
Joined: 7 years ago

Re: Option file for CPLEX solver

Post by mosalari »

GAMS read the options file.
here is the report from GAMS:

MIP status (107): time limit exceeded

So, it seems the problem is the time limit. How can I have an unbounded time limit?

bussieck wrote:There are two possibilities: a) GAMS/CPLEX did not process the option file, or b) Cplex terminated on time/iteration/... limit. The log will tell you more. You should find an echo of the options processed and also the reason why Cplex terminated.

-Michael
mosalari
User
User
Posts: 6
Joined: 7 years ago

Re: Option file for CPLEX solver

Post by mosalari »

Thank you. I tried it but it doesn't work. I still have an absolute gap.

here is the report from GAMS:
MIP status (107): time limit exceeded

So, it seems the problem is the time limit. How can I have an unbounded time limit?
yanzhiping wrote:absolute gap is the upper bound for the distance between best integer and optimal solution is “best estimate” - “best integer”.
https://support.gams.com/solver:what_is_optca_optcr

instead of creating a cplex option file, try to do in GAMS,

Code: Select all

Option
* relative termination tolerance for use in solving MIP problems
    optcr=0,
*absolute gap
   optca=0;
Post Reply