I have a minimization problem with integer variables and would like to transform it to binary variables. The problem is, that my objective is to minimize the overall waiting time, which consists of number of passengers times their waiting times.
My current problem is:
$$\min TWT = \sum_{l,la,h} w_{l,la,h} \,u_{l,la,h} \tag{1}$$
$w$ and $u$ are both integers.
If I consider $w_{l,la,h,t}$ to be binary with a time index (1 if waiting time is $t$, 0 otherwise), I don't know how capture the weight $t$. Multiplying by $t$ does not work in my model.