I have a model that I am sure the body of the model won't take like to get build up and once I call JuMp.optimize it takes very long to stop. Although I set 1000 limits.
model = Model(optimizer_with_attributes(
CPLEX.Optimizer,
"CPX_PARAM_TILIM" => 1000,
"CPX_PARAM_EPGAP" => 1e-1)) # relative gap
set_optimizer_attribute(model, CPLEX.PassNames(), true)
It's now more than three hours and still no stopping. What is the possible issue and how to fix? I repeated and checked all things three time to make sure that there is no bug somewhere, and have no other idea to try. Any help would be appreciated!