Hi Tobias,
thanks for your very helpful reply!
I actually did not know the cutoff parameter... It probably would do the trick, the only disadvantage is (according to the reference manual) that it does not return information on the best incumbent solution Gurobi has found already. I actually do need some kind of objective value given back by Gurobi in order to rank and process my solutions X,Y, ... for the following MIPs Z,ZZ,....
Would a callback function return information on the found solution, even if the optimisation was terminated? In that case I could implement a callback function that checks whether the current LP relaxation is better than my previously found solution (1000). If it is, optimisation was run normally. If it could never be better, it could set the MIPGap to e.g. 5%. In this case even the "bad" MIPs would return a (less precise) objective value I could use for setting up my following MIPs Z,ZZ etc., but it would be less time consuming. Is that roughly what a callback can do?
Thanks a lot again, Tobias! Your help is much appreciated.
Anne