modelinglinear-programmingmathprog

Modeling a constraint in GMPL


I'm trying to model this constraint in GMPL.

Constraint

As far as I can understand, j:dij < Dk part means " all the 'j's which satisfies the property dij < Dk "

I'm pretty new to it so I couldn't manage to model it correctly. Any suggestions?


Solution

  • Ok, did it this way:

    s.t. c3{i in N, k in K} : z[k] + sum{j in M : d[i,j] < b[k]} y[j] >= 1;
    

    "b" is used in case of "D".