Skip to main content

Constraint expression

Answered

Comments

1 comment

  • Riley Clement
    Gurobi Staff Gurobi Staff

    Hi Rayan,

    As a way of debugging I suggest you add a print statement in your code:

    for i in range(I):
        for c in range(C):
          for t in range(T):
            for j in  J3:
    print(i,c,j,t)
               model.addConstr(S[i,c,j,t]<=6)

    which will make it clear if you are actually generating this constraint for S[2,0,3,0].

    The most likely explanation is that you are not.

    - Riley

    0

Please sign in to leave a comment.