I have a programming formulation from a paper and want to give it a tool for solving specific problems. The authors stated it as an linear programming (LP) instance, however I am not sure. Formulation is somewhat like as follows:
max x1+x2+x3...
s.t.
x1.x3+x4.x5 <= 10
x2.x5+x3.x7+x1.x9 <=10
...
I tried to program it through cplexqcp
function (due to quadratic constraints, however constraints do not include any x_i^2
variable). However I receive CPLEX Error 5002: Q in %s is not positive semi-definite error
. Is this an instance of non-linear programming with non-convex constraints? Can I solve it with CPLEX
or use an NLP
tool for it? I am newbie to LP/NLP
staff (do not take any course regarding them), so really welcome help explaining details of the answers of my questions.
Thanks so much.