With JuMP we can pass parameters to the solver in with_optimizer. What I understood is that the parameter depend on the used Optimizer. If I want a Time Limit with GLPK I’ll use tm_lim while with CPLEX it’ll be CPX_PARAM_TILIM.
With MathProgBase and JuMP 0.18 I think it was a common parameter for every solver :TimeLimit. Is that still the case with MathOptInterface and I just missed it? Is that going to be the case? (and if I can help on that in any way I would be happy to)
Ok, thank you for your answer. If I understand that right each solver interface, like CPLEX.jl, should have implement Silent? I checked CPLEX.jl and it has it in MathProgBase wrapper but not yet in MathOptInterface. Is that right?
Probably. Note that we want to re-write the CPLEX wrapper to simplify it, ensure that all features are implemented, and to remove the dependence on LinQuadOptInterface.
Thank you again for your answer, that clarify it for me. I’ll follow the evolution of MOI and try to help on CPLEX.jl but as you probably understood I’m still new to GitHub.