I have non-linear scheduling model and I want to convert it to a linear model. But I have no idea about how can I do it.
The nonlinear constraint is:
For each $i, i'\in I$ and $j, j' \in J$ and $q, q' \in Q$ and $k \in K$
$$s_{ij} \geq (\sum_{q'=q}^5 o_{i'j'q'} * c_{i'j'} * x_{i'j'k}) * x_{ijk}*o_{ijq}$$
In this constraint:
$s$ is continuous positive variable,
$o$ and $x$ are binary variables
I can do the $x_{ijk}*o_{ijq}$ part using a Big M number but I don't know any about the summation inside the paranthesis. How can I do it? Please help.