I want to set a gap value (GAP) such that the optimization process stops when the current gap will be lower than GAP. I have read the cplex-python
documentation and I found that:
Model.parameters.mip.tolerances.absmipgap(GAP)
but I get the next warning:
Model.parameters.mip.tolerances.mipgap(float(0.1))
TypeError: 'NumParameter' object is not callable
any ideas? please help me. Thanks in advance.