TypeError: 'gurobipy.LinExpr' object is not iterable
AnsweredHi,
I'm trying to code the order batching model but i get this error.
Can someone tell me, what is wrong?
Thks
0
-
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.
Comments
2 comments