I am trying to set up a binary variable for my optimization problem in Python by using the IBM CPLEX. In my objective function, I set up a line which turns on and off depending on the market price in t:
mdl.maximize(
mdl.sum( (1-b[t]) * (prod_diff[t] * price_diff[t]) + \
(b[t]) * (vol_t * price[t] + prod_diff[t] * price_spot[t]) for t in time
)
Subject to:
mdl.add_constraint(
if prod_diff[t] <= 0:
b= 0
else:
b= 1
)
Apparently, there is something called logical and conditional constraints; but, unfortunately, I was unable to set it up in Python.
I'm new to this; can anyone put some light on the problem?
In easy python optimization see
if then