Maximizing linear objective subject to quadratic constraints

前端 未结 1 805
灰色年华
灰色年华 2021-01-22 18:31

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 a

相关标签:
1条回答
  • 2021-01-22 19:04

    The problem you posted needs some information on the domain of the variables x1, x2 and x3.

    If they are continuous, there is no way to express your problem as linear program (LP), since the surface of x1*x2 is just non-linear.

    If at least one of the product variables are binary (integer), the product can be linearized (so if you have a mixed integer program) like described in here - since the "borders" of above product are linear.

    Cplex can basically solve some classes of quadratic problems. Judging by your error message, your problem does not belong in there. So for solving this problem, you will probably need to stick to a general purpose NLP solver. A sample list of solvers can be found here, all of which can be triggered by the software AMPL, or can be used standalone. I am no expert here, so I can not give advice which solver should be preferred for your problem.

    Regards, Martin

    0 讨论(0)
提交回复
热议问题