Hello!
I’ve read the documentation for both JuMP and CPLEX.jl (the readme page on Github) but I just want to be 100% if it is possible to do the following:
- Formulate a MILP (using only constraints supported by the solver, nothing fancy)
- Use only the CPLEX C Callable library (through CPLEX.jl as a wrapper) to interact with the solver.
Could I run into any limitations when trying to use the advanced features in the Callable library?
The reason for doing this is that I love using JuMP for formulating a model, but there are certain “tricks” that I think I can achieve with the C callable library (e.g. getting the cuts generated by CPLEX at the root node cut loop).
Thanks in advance for your comments!