Jonasz Staszek
-
Community Moderator
- Total activity 302
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 13
- Subscriptions 124
Comments
Recent activity by Jonasz Staszek-
Hi Lisa, I think you'll find the information you need here, under the Solution Pool header. Best regardsJonasz
-
If you know upfront that there will be 15 solutions, you can add these two lines before the optimize call: space.setParam("PoolSolutions", 15)space.setParam("PoolSearchMode", 2) Further info can be...
-
Hi Niklas, the thing you want to achieve can be done, although it won't be easy. First of all, rounding can be achieved, although it will require scaling and additional variables. Further, I am afr...
-
Hi Muhammed, I'm not sure I understand your challenge. If you like, you can detail it our and we'll try to help you. You should also check our Python's build-in random package. It provides numerous...
-
You need to define your arcs somewhat like this: Arcs = []for t in range(1, T+1): if t-1 >= 1 and t+3 <= T: Arcs += [(('G', t-1), ('RM', t)), (('RM', t), ('MP', t)), ...
-
I still have a difficult time understanding the constraint you are trying to implement. Could you try to express it in mathematical terms (e.g. the way you would write down a mathematical model on ...
-
Hi Anne, the code you posted, or at least its screenshot, won't work since you did not define \(t\) properly. (For future reference, it is much easier to help if you post the actual code and not a ...
-
I would not expect RegEx patterns to be the required input here, but rather the patterns of the type that you were typing in. Perhaps someone from Gurobi support team can confirm this? Additionally...
-
Hi Kim, I don't believe that encoding your model in C rather than Python would change the solver behavior itself. Is the runtime long due to the optimization taking so much time? If yes, we'd need ...
-
Hi Fei, I am not sure I understand your question. Could you show us the mathematical model you are trying to code (or at least the part your question relates to)? Best regardsJonasz