I have a linear optimization:
$$ \min_{x_i} -\sum_i x_i $$ $$ \mathrm{s.t.} Ax \le b$$
Where $x$ is a variable vector. I would like to introduce into the linear problem an additional constraint that include the $max$ functions, like this:
$$ \max_i (x_i) + \max_i (-x_i)\le c$$
where $c$ is a given constant. Is there a way to incorporate that constrain keep the linear formulation of the problem?
Thanks in advance for any help or references!
I want something like this, but in my case the max function is in the constraint and not in the optimization function.