Hello
You can set any CPLEX parameter from Docplex. the property `Model.parameters` returns a hierarchical parameter structure, from whoch you can get and set values,
just as with the CPLEX Python API.
In your case:
mdl.parameters.emphasis.mip = 2 # any value from 0 to 5or
mdl.parameters.mip.tolerances.mipgap = 0.02to set the MIP gap limit.
Hope this helps
Philippe.
------------------------------
Philippe Couronne
------------------------------