Skip to main content

TypeError: 'gurobipy.LinExpr' object is not iterable

Answered

Comments

2 comments

  • Jaromił Najman
    Gurobi Staff Gurobi Staff

    You are using two quicksums in line 3. This line should either read

    2*quicksum(quicksum(uvar[jbatch,kaisle] for jbatch in Batch) for kaisle in G)

    or

    2*quicksum(uvar[jbatch,kaisle] for jbatch in Batch for kaisle in G)

    Best regards, 
    Jaromił

    0
  • thks!!!

    0

Please sign in to leave a comment.