I have this constraint in my model:
(X - Y) @ B >= 0
where B is a boolean vector variable, X and Y are variables vector that represent quantities
I'm working with CVXPY, so I have to keep linear expressions
How could I translate this constraint in a way that is linear?
Could someone help me please ?