
Ronald van der Velden
- Total activity 221
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 104
Comments
Recent activity by Ronald van der Velden-
Hi Mike, One use case could be, when you have a MIP model but want to calculate dual values (see this question). Those are not available for a MIP model, but when you fix all integer variables, the...
-
Official comment Hi Yongtao, You can find suggestions in our article How do I resolve the error "Model is infeasible or unbounded"? ; one possible reason might be that your model is not infeasible but unbounded. Ki...
-
Hi Sudheer, Here's a few more thoughts. Unfortunately we cannot go much further with modeling assistance, but other users of this community forum might be happy to jump in. If the number of loads ...
-
Dear Sudheer, Should this problem be approached as a vehicle routing problem (VRP) where the goal is to optimize the routes and truck assignments for deliveries, or should it be modeled as a logis...
-
Hi Rui, Just to be sure - Unless you're using the solution pool functionality, Gurobi does not necessarily return all optimal solutions. In general, if you feel a solution should be returned (and c...
-
Hi, My first guess would be that there is a problem with build_RMP. I believe you're constructing a completely new model in each iteration, which could be a bit slow and makes it a bit harder to co...
-
Hi Keyu, Thanks for posting here! In your example, all copies of the model live in the same (default) Gurobi environment, which is not thread-safe. Each model should live in its own, dedicated Guro...
-
Hi Julia, If the problem is a minimization problem and all you do between iterations is adding a column, this should not happen indeed, since the optimal solution from the previous iteration is sti...
-
Hi Sompol, Actually I believe the problem is not in your own code, but in Pyomo. It looks like this version of Pyomo calls a Gurobi function that has been removed in version 12. However, I don't se...
-
Hi Shesha, Then it comes down to debugging. Your next step would be to find the (i,j) and (k,l) pair that overlap and then request/print the corresponding variable values including the AUX variable...