Aron Zingler

Conversationalist
Gurobi-versary
First Question
  • Total activity 14
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 0 users
  • Votes 0
  • Subscriptions 5

Activity overview

Latest activity by Aron Zingler
  • Aron Zingler commented,

    I am still a bit unsure that I understand exatly what you are doing.If I understand correctly, you give Gurobi a partial start (for example by using a MST file). You increase the StartNodeLimit par...

  • Aron Zingler commented,

    Thank you Jaromił,> By a "convex-quadratic" variable, we mean a variable that participates only in linear and convex-quadratic constraints.I did not define it properly, but you seem to have gotten ...

  • Aron Zingler commented,

    When you mention that the solution generated by warm starting has a large optimality gap, are you referring to the intermediate output from Gurobi while it is running, or is this based on a test ca...

  • Aron Zingler commented,

    A cutting-plane approach can be quite beneficial in certain scenarios. This method involves iteratively formulating Mixed-Integer Linear Programs (MILPs) and solving them using tools like Gurobi. W...

  • Aron Zingler commented,

    I think you will have to specifiy which kind of optimization problem your are solving with Gurobi.LP,QP, MILP, QCQP or nonconvex MINLP. Also, you will have to specify if you are interested in worst...

  • Aron Zingler created a post,

    How does Gurobi handle 'convex-quadratic' variables in nonconvex optimization?

    Answered

    I am planning to implement an algorithm that solves multiple subproblems of the form \[\begin{align} \underset{\boldsymbol{x},\boldsymbol{y}^i,\boldsymbol{z}^i,t}{\min} &&f(\boldsymbol{x}) & \\ \te...

  • Aron Zingler commented,

    Hi Jaromił, thanks for your suggestion. Indeed, this is very similar to the workaround currently employed. As you pointed out, you could always check for more special cases. Personally, I would arg...

  • Aron Zingler created a post,

    Detect linear problem

    Answered

     I add constraints to my model within the C++ API automatically based on user input. I do not know in advance if the constraint given by the user will be linear or quadratic. At the moment I will j...

  • Aron Zingler created a post,

    Help with Unbounded or Infeasible

    Answered

    I have the following problem with the C++ API.   My understanding is that the following code: #include <iostream> #include <limits> #include "gurobi_c++.h" int main() { // construct model ...