Maliheh Aramon

Gurobi Staff Gurobi Staff
  • Total activity 712
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 0 users
  • Votes 1
  • Subscriptions 291

Activity overview

Latest activity by Maliheh Aramon
  • Maliheh Aramon commented,

    Hi,  The gurobipy module was restructured a bit for version 12.0. This should do the trick in version 12.0: from gurobipy import GRBd = {getattr(GRB.Status, k): k for k in GRB.Status.__dir__() if "...

  • Maliheh Aramon commented,

    I need to build the large model once and, solved it in each iteration only the variables associated to pair (key, value) of my dictionary. What happens to the variables that are not part of the k...

  • Maliheh Aramon commented,

    Hi,  I am not sure that I fully understand your question. Given your snippet, it is not clear what you changed on the model in each iteration of the "for" loop. Would you like to build and solve a ...

  • Maliheh Aramon commented,

    Hi Benjamin, As outlined in the documentation on multiple objectives, Gurobi provides an API to solve multi-objective optimization problems using three main approaches: 1) blending the objectives, ...

  • Maliheh Aramon commented,

    Hi Yanda,  Thank you for contacting us. You can check the "Performance Tuning for Gurobi's Barrier Algorithm" presentation to learn about different strategies to improve barrier performance.  Param...

  • Maliheh Aramon commented,

    Hi,  To run the NoRel heuristic, you must set either NoRelHeurTime or NoRelHeurWork parameters. You can set the NoRelHeurTime parameter to a large value and the SolutionLimit parameter to 1. This w...

  • Maliheh Aramon commented,

    Hi,  The MIPGap attribute is available when the optimization is terminated because of hitting a termination criterion or proving the optimality. This attribute reports the relative gap between the ...

  • Maliheh Aramon commented,

    You need to add the following constraints where \(M\) is a sufficiently large value covering the domain of the \(Y\) variables. \(Y_i \leq X_i + MZ_i\) \(Y_i \geq X_i - MZ_i\)

  • Maliheh Aramon commented,

    Hi Sesha,  The results look consistent with the constraints implemented. The variable \(X_{11,00}\) equals a non-zero value (\(0.333\)) and its associated \(Y_{11,00}\) variable equals \(76\) such ...

  • Maliheh Aramon commented,

    Hi Claire, Some general recommendations you could consider experimenting with: Use the latest Gurobi version 11.0.2. Leave the Threads parameter at the default value Consider more aggressive preso...