I have set up docplex api in python and I am trying to run an optimization models. Based on IBM documentation, a CPU time limit can be set for the problem using the following command:
mdl.solve(TimeLimit=60)
However, this attribute does not work properly. While it terminates the search process, it does so in a time which is variably much longer than the given value for the attribute i.e. 186 , ... Can anyone tell me how I can overcome this issue?