I am trying to solve quadratic programming problem using IBM's Cplex Python API. The problem has non-linear constraints. Does Cplex accept non-linear constraint for quadratic programming? More specifically, given unknowns [x1,x2,x3,x4,x5], I need to put in two constraints
Constraint A (x2+x3) / (1-x1) = z1
Constraint B (x4+x5) / (1-x1) = z2
Where z1 and z2 are known numbers.
Cplex does have instructions on how to enter quadratic constraints, but none that I can find on entering non-linear constraints in general.