Does anybody know which simplex-like algorithm CPLEX uses to solve quadratic programs. what is the so called Quadratic Simplex it is using?
Thank you in advance, Mehdi
Does anybody know which simplex-like algorithm CPLEX uses to solve quadratic programs. what is the so called Quadratic Simplex it is using?
Thank you in advance, Mehdi
I'm not sure what CPLEX uses but the Simplex Method has been modified by Philip Wolfe to solve quadratic programming. In a nut shell, this is what it does:
Given a quadratic programming problem: QPP. p'x + 1/2x'Cx with constrains Ax = b
For more detailed information, please take a look at this paper: http://pages.cs.wisc.edu/~brecht/cs838docs/wolfe-qp.pdf
Hope this helps.