メインコンテンツへスキップ

Writing a Constraint using quicksum

回答済み

コメント

2件のコメント

  • 正式なコメント
    Simranjit Kaur
    • Gurobi Staff
    This post is more than three years old. Some information may not be up to date. For current information, please check the Gurobi Documentation or Knowledge Base. If you need more help, please create a new post in the community forum, or try Gurobot, our chatbot interface offering instant, expert-level support.
  • Jaromił Najman
    • 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

投稿コメントは受け付けていません。