Silke Horn
Gurobi Staff- Total activity 389
- Last activity
- Member since
- Following 0 users
- Followed by 1 user
- Votes 7
- Subscriptions 188
Activity overview
Latest activity by Silke Horn-
Silke Horn created an article,
Recommendations for coefficient statistics
The coefficient statistics are some of the first pieces of information you will encounter in the log. Here's an example: Coefficient statistics: Matrix range [1e-01, 2e+00] Objective range [...
-
Silke Horn created an article,
Should I add distributed workers to my Instant Cloud pool?
In the pool settings, you can set the number of Compute Servers and the Number of distributed workers per server for your pool. Note that on Instant Cloud, when enabled, each compute server has its...
-
Silke Horn commented,
Hi, You are right that GRBQuadExpr.addTerm only accepts variables, not complex expressions. There are two ways around this: You expand the quadratic expression yourself, i.e., \((K+x+y)^2 = K^2 + ...
-
Silke Horn commented,
Yes, I assume the terms with the 0 coefficient at the beginning are there to preserve the variable order. But then Gurobi should repeat all with the non-zero coefficient, not just some. Is this the...
-
Silke Horn commented,
First of all, if a coefficient in the LP file is 0 when it should be 1, then there is something wrong. How did you set the objective? Secondly, there are a lot of variables with coefficient 0 in th...
-
Silke Horn commented,
Yes, you can do that (as long as the model is for non-production use of course). With the size-limited license you can solve models up to 2000 variables, 2000 linear constraints, and 200 variables ...
-
Silke Horn commented,
Yes, the code looks correct. The LinExpr constructor should be the fastest way to build these expressions. However, you will only see a noticeable difference for very large expressions (hundreds of...
-
Silke Horn commented,
I am not sure I understand your question. You could use getConstrByName to access the constraint by its name. However, we usually discourage using this function since it is not very efficient. Stor...
-
Silke Horn commented,
If you have a constraint object, you need to use the getRow method on the model to get the left-hand-side expression. This will then be a LinExpr object. One question: Did you need the names to acc...
-
Silke Horn commented,
Your code already does everything except for the constraint naming. The addConstrs method takes a name argument to define the name pattern. If you add name="my_constr", your constraint names will b...