Can someone please explain the computational complexity of MINLP and MILP, though both are NP-Hard. What is the advantage of having an MILP formulation over MINLP formulation for a same optimization problem?
I have an MINLP problem of 32 binary integer variables with some nonlinear constraints. I perform exact linearization for some of the constraints and employ piecewise linear approximation for the constraint exact linearization is not possible. But the MINLP formulation now have additional 32 binary integer variables (because of SOS type 2 variables).
Can you please explain which one I should prefer in terms of computational complexity.