I'm trying to solve an optimization problem with a linear objective function and mostly linear constraints. However, I do have several constraints of the form
$$\sum_{i=1}^m x_i\phi_i - \left(\sum_{i=1}^m x_i\right) \left(\sum_{j=m+1}^n x_j\right) \leq 0$$
In other words, part of this inequality has the form
$$(x_1 + \cdots + x_m)(x_{m+1} + \cdots + x_{n})$$
Since this does not lead to a positive semidefinite matrix and is therefore not convex, I'm wondering what techniques (if any) are available to efficiently solve this optimization problem.