I’m not sure if Gurobi supports local cuts. The first step would be to check that it is supported via the C API, and as a second step, implement the required changes in the Gurobi.jl wrapper.
Thank you both for the immediate replies. I modified the wrapper and I also discovered that tha C API does not support local cuts. Does that mean that in Gurobi we cannot add for example local cuts for routing problems ( Subtour separation, capacity cuts, etc). Is there a workaround for this?
I am PhD student working on optimization problems in the field of transportation and logistics, and in my current problem I have found Gurobi to be a lot faster than CPLEX. So, I wouldn’t like to go back to using CPLEX. For the time being I perform the separation and adding cuts only at the root node, where the cuts are global, so no problem occurs.