Timothy Baeckelant

  • Gurobi-versary
  • First Comment
  • First Question
  • Total activity 10
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 0 users
  • Votes 0
  • Subscriptions 4

Activity overview

Latest activity by Timothy Baeckelant
  • Timothy Baeckelant created a post,

    Gurobi v11 outperforms Gurobi v12 for some models

    Answered

    Hi everyone, I've recently been very impressed by how fast Gurobi v12 is for non-convex MIQCP problems. Out of curiosity, I wanted to compare its performance with Gurobi v11 on some models. Here is...

  • Timothy Baeckelant commented,

    Hello Marika, thanks for this answer! I first wrote a "matrix-based modeling" but the time to build the model was even worse, so I tried like this. However, just using Model.addVars() makes the gen...

  • Timothy Baeckelant created a post,

    Slow constraints addition in Python vs. C++

    Answered

    Hello, I'm getting troubles with my model. Here is my code :  T = model.addMVar((numnonzero,), vtype=GRB.BINARY) for s1 in range(numnonzero):    for s2 in range(s1+1,numnonzero):        row1 = nonz...

  • Timothy Baeckelant commented,

    Thank's a lot ! Now I have one more question. Does this also works if the model in supposed to be infeasible ? Which parameters could improve the solving time of an infeasible model ?

  • Timothy Baeckelant created a post,

    BestBdStop for feasibility problems

    Answered

    Hello, I am fine-tuning my model for a feasibility problem. I use two different ways : create a feasibility problem (minimize 0) or minimize an objective but I set the solution limit attribute to 1...

  • Timothy Baeckelant created a post,

    Segmentation Fault from libgurobi100.so

    Answered

    Hello, I recently cloned a C++ project that uses the Gurobi solver. I just booted my computer with Ubuntu, so I installed Gurobi and downloaded my academic license. This code is supposed to work co...