GurobiUser
- Total activity 8
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 3
Posts
Recent activity by GurobiUser-
Setting IntegralityFocus=1 accelerates solution?
AnsweredI am solving a series of linear integer programming problems with gurobipy. The solutions I originally got weren't exactly integral, so I set the IntegralityFocus parameter to be 1. Now I get integ...
-
tupledict copy
I am trying to create a shallow copy of a tupledict d. d.copy() returns it as a regular dictionary, whereas I would like the copy to be a tupledict as well. The best way I found to do this is to wr...
-
Input type to tupledict.sum() in gurobipy
AnsweredFor a tupledict x, I am trying to sum all entries which include y as one of their indices: x.sum(y,'*','*',...,'*')+x.sum('*',y,'*',....,'*')+x.sum('*','*',y,...,'*')+...+x.sum('*','*','*',...,y) T...