Hi,
I have an MILP problem and trying to solve it with sage, GLPK solver. As I want to terminate the problem before getting the optimum answer, I am using the p.solver_parameter("timelimit", 60). I have also used
try :
p.solve()
except MIPSolverException:
b= p.get_backend()
print ('best known opjective bound',b.best_known_objective_bound())
However, the solver doesnt stop!!! It keeps runing. I guess the timelimit part doesnt work. I tried to chage it to p.solver_parameter("timelimit_intopt", 60000 ). I am getting the ValueError: This parameter is not available.
Could anyone help me for this issue?
Thakns in advance,
Cheers, Aissan