Timothy Baeckelant
- Total activity 10
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 4
Posts
Recent activity by Timothy Baeckelant-
Gurobi v11 outperforms Gurobi v12 for some models
AnsweredHi 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...
-
Slow constraints addition in Python vs. C++
AnsweredHello, 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...
-
BestBdStop for feasibility problems
AnsweredHello, 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...
-
Segmentation Fault from libgurobi100.so
AnsweredHello, 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...