I solve a multiobjective MIP with the docplex module in Python. As the problem is rather large, I would like to set a relative MIP gap tolerance: parameters.mip.tolerances.mipgap (https://www.ibm.com/docs/en/icos/12.9.0?topic=parameters-relative-mip-gap-tolerance).
In the docs for the solve details (https://ibmdecisionoptimization.github.io/docplex-doc/mp/docplex.mp.sdetails.html) it says that the property mip_relative_gap "...returns 1e+20 for multi-objective MIP problems." I can confirm this.
Now, I'm wondering what CPLEX does if I set this parameter anyway, say parameters.mip.tolerances.mipgap=0.2. Is it just that the correct gap is not shown in the solve details? Is the solution I get the one with the gap (if not, what solution do I get?)? Is there any way to get the MIP gap in a multiobjetive problem?