Is there any way to solve an linear optimization problem with quadratic integer constraint?
E.g. $\max a^Tx$, $x=\langle x_1,x_2,\cdots,x_n \rangle$
s.t. $x_ix_j<b_{ij}$, $\forall x_i,x_j \in x$
$x_i \in \{0,1\}, \forall x_i \in x$
Since $x$ is binary and the product only can be $0$ or $1$, your model is a bit odd with the strict inequality. If $b_{ij} >1$ then $x_i$ and $x_j$ are arbitrary, and if $b_{ij} \leq 1$ then you must model the fact that one of the terms has to be zero, which you can do by $x_i + x_j \leq 1$.