like the title suggest, I am trying to constraint a boolean with another boolean, if that makes sense.
x and y are both booleans, where y=1 when Parameter < Variable1
What I am trying to do is the following.
if y = 1, then 0 <= x <= 1. x can be either 0 or 1
if y = 0, then x <= 0. x can only be 0
I hope it makes sense, and I would really appreciate any help