Matheus Jun Ota
- Total activity 9
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 3
Activity overview
Latest activity by Matheus Jun Ota-
Matheus Jun Ota commented,
Hi Eli, The beginning of my code is the following: // integer solutionif (where == GRB_CB_MIPSOL){ solution_value = &CutsCallback::getSolution; nodeCount = getDoubleInfo(GRB_CB_MIPSOL_NODCNT)...
-
Matheus Jun Ota commented,
Hi Eli, Thanks for the fast response! This is the log presented by Gurobi: Optimize a model with 26 rows, 50 columns and 100 nonzerosVariable types: 0 continuous, 50 integer (50 binary)Coefficient ...
-
Matheus Jun Ota created a post,
Early Branching in Branch-and-Cut
Hi, I'm have implemented a branch-and-cut algorithm using Gurobi, but in order to improve its performance, I want to detect when no significant changes happens during the (LP<->separation) loop, an...
-
Matheus Jun Ota commented,
Hi Sonja, Thanks for the reply. I'm using Gurobi 8.1. The MIPGapAbs was exactly what I was looking for! Best, Matheus
-
Matheus Jun Ota created a post,
Integer objective function
AnsweredHi All, I have a maximization model where the objective function is a real variable. But this variable is a sum of binary variables multiplied by integer weights. When solving the formulation with ...
-
Matheus Jun Ota created a post,
Get current BnB node depth
AnsweredHi all, Is there any way of getting the current node depth in the GRBCallback? I know that it is possible to get the node count using GRB_CB_MIPNODE_NODCNT, and that if this count is zero, then we ...