Lorenzo Moreschini
- Total activity 46
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 14
Activity overview
Latest activity by Lorenzo Moreschini-
Lorenzo Moreschini commented,
Done, added to the original post.
-
Lorenzo Moreschini created a post,
Different behavior of MIPNODE_OBJBND depending on LazyConstraints param
AnsweredSolving the same model (with the same fingerprint) with LazyConstraint = 0 (the default) I get the optimal solution in 36 seconds, while using LazyConstraint = 1 (but not actually loading any lazy ...
-
Lorenzo Moreschini commented,
Thank you, I will try to experiment with those parameters.
-
Lorenzo Moreschini created a post,
Iteratively apply user cuts before leaving root node
AnsweredI need to solve a MILP model that is essentially a Travelling Salesman Problem with additional constraints.As the core model is a TSP, most of the complexity is related to tightening the initial re...
-
Lorenzo Moreschini commented,
In that way I still have to compute the obj function value, is there any shortcut? (a workaround could be to assign the obj function to a single variable and then read its relaxed value...)
-
Lorenzo Moreschini created a post,
Get relaxed solution value in callback MIPNODE
AnsweredHow do I retrieve the value of the relaxed solution using the Java API when my callback is called in a MIPNODE and CB_MIPNODE_STATUS is OPTIMAL? In the documentation page I see: MIPNODE_OBJBST MI...
-
Lorenzo Moreschini commented,
Found the issue: it seems that Gurobi does not always emit a message in Case B, even if the solution I load is not feasible. I found a bug in the heuristic procedure I use and now Gurobi immediatly...
-
Lorenzo Moreschini commented,
Thank you Jaromił, I still have to try changing the settings you suggested, but there is something not clear to me: suppose that I am setting a MIPStart value for each variable in my the model (I s...
-
Lorenzo Moreschini created a post,
User MIP start in Gurobi logs
AnsweredWhen I set an initial solution before solving a Gurobi model, I see one of the following three different kind of output inside Gurobi logs. Case A Warning: Completing partial solution with 30107 un...
-
Lorenzo Moreschini created a post,
Lazy constraints and cuts in the same model callback
AnsweredLet M be the integer programming model I need to implement using Gurobi and let C be a family of cuts I am willing to add dynamically during the resolution.Also, the model M contains an exponential...