I am using Julia, JuMP to solve a NLMIP problem. I am using Couenne solver through CoinOptServices.jl package
using JuMP
using CoinOptServices
I would like to set a timeout for the solver, something like
mdl = Model( solver=OsilCouenneSolver(time_limit=20) )
and, if possible, an absolute or relative optimality tolerance.
I wasn't able to find a way.
Any help, particularly on the timeout, would be appreciated.
Thank you,
Francesco