Skip to main content

Writing a Constraint using quicksum

Answered

Comments

1 comment

  • Jaromił Najman
    Gurobi Staff Gurobi Staff

    One way would be

    import gurobipy as gp
    from gurobipy import GRB

    T = list(range(0,10))
    I = list(range(0,10))

    m = gp.Model()

    N = m.addVars(I,T)

    constraints = m.addConstrs((gp.quicksum(N[i,t] for t in T) == 1 for i in I), name="constraint")

     

    Here are a few good resources to get you started with nested summations:

    Best regards, 
    Jaromił

    0

Please sign in to leave a comment.